From e553f8b4c5446083a4281914af71af22bb9e5ec9 Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Wed, 12 May 2021 18:27:55 +0900 Subject: [PATCH] feat(trivy): go mod update trivy v0.17.2 (#1235) * feat(trivy): go mod update trivy v0.17.2 * wg.Wait * fix reporting * fix test case * add gemfile.lock of redmine to integration test * fix(test): add Pipfile.lock * add poetry.lock to integration test * add composer.lock to integration test * add integration test case --- GNUmakefile | 122 +- detector/detector.go | 8 +- go.mod | 11 +- go.sum | 816 +- integration/data/amazon_2.json | 6534 -------------- integration/data/centos_7.json | 5634 ------------ integration/data/debian_10.json | 5631 ------------ integration/data/lockfile/Cargo.lock | 4231 +++++++++ integration/data/lockfile/Gemfile.lock | 311 + integration/data/lockfile/Pipfile.lock | 650 ++ integration/data/lockfile/composer.lock | 6229 ++++++++++++++ integration/data/lockfile/package-lock.json | 2440 ++++++ integration/data/lockfile/poetry.lock | 1091 +++ integration/data/lockfile/yarn.lock | 6144 +++++++++++++ integration/data/oracle.json | 3031 ------- integration/data/rails.json | 131 - integration/data/rhel_71.json | 5158 ----------- integration/data/rhel_8.json | 6926 --------------- integration/data/ubuntu_1804.json | 8609 ------------------- integration/data/ubuntu_2004.json | 8559 ------------------ integration/int-config.toml | 30 +- integration/int-redis-config.toml | 28 + models/library.go | 3 +- models/scanresults.go | 7 +- scanner/base.go | 56 +- scanner/library.go | 1 + server/server.go | 4 +- 27 files changed, 22061 insertions(+), 50334 deletions(-) delete mode 100755 integration/data/amazon_2.json delete mode 100755 integration/data/centos_7.json delete mode 100755 integration/data/debian_10.json create mode 100644 integration/data/lockfile/Cargo.lock create mode 100644 integration/data/lockfile/Gemfile.lock create mode 100644 integration/data/lockfile/Pipfile.lock create mode 100644 integration/data/lockfile/composer.lock create mode 100644 integration/data/lockfile/package-lock.json create mode 100644 integration/data/lockfile/poetry.lock create mode 100644 integration/data/lockfile/yarn.lock delete mode 100644 integration/data/oracle.json delete mode 100644 integration/data/rails.json delete mode 100755 integration/data/rhel_71.json delete mode 100755 integration/data/rhel_8.json delete mode 100755 integration/data/ubuntu_1804.json delete mode 100755 integration/data/ubuntu_2004.json diff --git a/GNUmakefile b/GNUmakefile index dc5f97ec..57b38e81 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -84,10 +84,12 @@ build-future-vuls: pretest fmt # integration-test BASE_DIR := '${PWD}/integration/results' +# $(shell mkdir -p ${BASE_DIR}) NOW=$(shell date --iso-8601=seconds) NOW_JSON_DIR := '${BASE_DIR}/$(NOW)' ONE_SEC_AFTER=$(shell date -d '+1 second' --iso-8601=seconds) ONE_SEC_AFTER_JSON_DIR := '${BASE_DIR}/$(ONE_SEC_AFTER)' +LIBS := 'gemfile' 'pipfile' 'poetry' 'composer' 'packagelock' 'yarn' 'cargo' diff: # git clone git@github.com:vulsio/vulsctl.git @@ -100,18 +102,26 @@ diff: # make int # (ex. test 10 times: for i in `seq 10`; do make int ARGS=-quiet ; done) ifneq ($(shell ls -U1 ${BASE_DIR} | wc -l), 0) - mv ${BASE_DIR}/* /tmp + mv ${BASE_DIR} /tmp/${NOW} endif mkdir -p ${NOW_JSON_DIR} - cp integration/data/*.json ${NOW_JSON_DIR} - ./vuls.old report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-config.toml $(ARGS) + sleep 1 + ./vuls.old scan -config=./integration/int-config.toml --results-dir=${BASE_DIR} ${LIBS} + cp ${BASE_DIR}/current/*.json ${NOW_JSON_DIR} + cp integration/data/results/*.json ${NOW_JSON_DIR} + ./vuls.old report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-config.toml ${NOW} + mkdir -p ${ONE_SEC_AFTER_JSON_DIR} - cp integration/data/*.json ${ONE_SEC_AFTER_JSON_DIR} - ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-config.toml $(ARGS) - find ${NOW_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; - find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; - diff -c ${NOW_JSON_DIR} ${ONE_SEC_AFTER_JSON_DIR} + sleep 1 + ./vuls.new scan -config=./integration/int-config.toml --results-dir=${BASE_DIR} ${LIBS} + cp ${BASE_DIR}/current/*.json ${ONE_SEC_AFTER_JSON_DIR} + cp integration/data/results/*.json ${ONE_SEC_AFTER_JSON_DIR} + ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-config.toml ${ONE_SEC_AFTER} + + $(call sed-d) + - diff -c ${NOW_JSON_DIR} ${ONE_SEC_AFTER_JSON_DIR} echo "old: ${NOW_JSON_DIR} , new: ${ONE_SEC_AFTER_JSON_DIR}" + $(call count-cve) diff-redis: # docker network create redis-nw @@ -125,47 +135,50 @@ diff-redis: # ln -s oldvuls vuls.old # make int-redis ifneq ($(shell ls -U1 ${BASE_DIR} | wc -l), 0) - mv ${BASE_DIR}/* /tmp + mv ${BASE_DIR} /tmp/${NOW} endif mkdir -p ${NOW_JSON_DIR} - cp integration/data/*.json ${NOW_JSON_DIR} - ./vuls.old report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-redis-config.toml + sleep 1 + ./vuls.old scan -config=./integration/int-config.toml --results-dir=${BASE_DIR} ${LIBS} + cp -f ${BASE_DIR}/current/*.json ${NOW_JSON_DIR} + cp integration/data/results/*.json ${NOW_JSON_DIR} + ./vuls.old report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-redis-config.toml ${NOW} + mkdir -p ${ONE_SEC_AFTER_JSON_DIR} - cp integration/data/*.json ${ONE_SEC_AFTER_JSON_DIR} - ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-redis-config.toml - find ${NOW_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; - find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; - diff -c ${NOW_JSON_DIR} ${ONE_SEC_AFTER_JSON_DIR} + sleep 1 + ./vuls.new scan -config=./integration/int-config.toml --results-dir=${BASE_DIR} ${LIBS} + cp -f ${BASE_DIR}/current/*.json ${ONE_SEC_AFTER_JSON_DIR} + cp integration/data/results/*.json ${ONE_SEC_AFTER_JSON_DIR} + ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-redis-config.toml ${ONE_SEC_AFTER} + + $(call sed-d) + - diff -c ${NOW_JSON_DIR} ${ONE_SEC_AFTER_JSON_DIR} echo "old: ${NOW_JSON_DIR} , new: ${ONE_SEC_AFTER_JSON_DIR}" + $(call count-cve) diff-rdb-redis: ifneq ($(shell ls -U1 ${BASE_DIR} | wc -l), 0) - mv ${BASE_DIR}/* /tmp + mv ${BASE_DIR} /tmp/${NOW} endif mkdir -p ${NOW_JSON_DIR} - cp integration/data/*.json ${NOW_JSON_DIR} - ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-config.toml - mkdir -p ${ONE_SEC_AFTER_JSON_DIR} - cp integration/data/*.json ${ONE_SEC_AFTER_JSON_DIR} - ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-redis-config.toml - # remove reportedAt line - find ${NOW_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; - find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; - # remove "Type": line - find ${NOW_JSON_DIR} -type f -exec sed -i -e '/"Type":/d' {} \; - find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/"Type":/d' {} \; - # remove "SQLite3Path": line - find ${NOW_JSON_DIR} -type f -exec sed -i -e '/"SQLite3Path":/d' {} \; - find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/"SQLite3Path":/d' {} \; - diff -c ${NOW_JSON_DIR} ${ONE_SEC_AFTER_JSON_DIR} - echo "old: ${NOW_JSON_DIR} , new: ${ONE_SEC_AFTER_JSON_DIR}" - for jsonfile in ${NOW_JSON_DIR}/*.json ; do \ - echo $$jsonfile; cat $$jsonfile | jq ".scannedCves | length" ; \ - done - for jsonfile in ${ONE_SEC_AFTER_JSON_DIR}/*.json ; do \ - echo $$jsonfile; cat $$jsonfile | jq ".scannedCves | length" ; \ - done + sleep 1 + # new vs new + ./vuls.new scan -config=./integration/int-config.toml --results-dir=${BASE_DIR} ${LIBS} + cp -f ${BASE_DIR}/current/*.json ${NOW_JSON_DIR} + cp integration/data/results/*.json ${NOW_JSON_DIR} + ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-config.toml ${NOW} + mkdir -p ${ONE_SEC_AFTER_JSON_DIR} + sleep 1 + ./vuls.new scan -config=./integration/int-config.toml --results-dir=${BASE_DIR} ${LIBS} + cp -f ${BASE_DIR}/current/*.json ${ONE_SEC_AFTER_JSON_DIR} + cp integration/data/results/*.json ${ONE_SEC_AFTER_JSON_DIR} + ./vuls.new report --format-json --refresh-cve --results-dir=${BASE_DIR} -config=./integration/int-redis-config.toml ${ONE_SEC_AFTER} + + $(call sed-d) + - diff -c ${NOW_JSON_DIR} ${ONE_SEC_AFTER_JSON_DIR} + echo "old: ${NOW_JSON_DIR} , new: ${ONE_SEC_AFTER_JSON_DIR}" + $(call count-cve) head= $(shell git rev-parse HEAD) prev= $(shell git rev-parse HEAD^) @@ -199,5 +212,32 @@ build-integration: # $ ln -s ./vuls.${head} ./vuls.old # or # $ ln -s ./vuls.${prev} ./vuls.old - # $ make int - # $ make int-redis + # then + # $ make diff + # $ make diff-redis + # $ make diff-rdb-redis + + +define sed-d + find ${NOW_JSON_DIR} -type f -exec sed -i -e '/scannedAt/d' {} \; + find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/scannedAt/d' {} \; + find ${NOW_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; + find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/reportedAt/d' {} \; + find ${NOW_JSON_DIR} -type f -exec sed -i -e '/"Type":/d' {} \; + find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/"Type":/d' {} \; + find ${NOW_JSON_DIR} -type f -exec sed -i -e '/"SQLite3Path":/d' {} \; + find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/"SQLite3Path":/d' {} \; + find ${NOW_JSON_DIR} -type f -exec sed -i -e '/reportedRevision/d' {} \; + find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/reportedRevision/d' {} \; + find ${NOW_JSON_DIR} -type f -exec sed -i -e '/scannedRevision/d' {} \; + find ${ONE_SEC_AFTER_JSON_DIR} -type f -exec sed -i -e '/scannedRevision/d' {} \; +endef + +define count-cve + for jsonfile in ${NOW_JSON_DIR}/*.json ; do \ + echo $$jsonfile; cat $$jsonfile | jq ".scannedCves | length" ; \ + done + for jsonfile in ${ONE_SEC_AFTER_JSON_DIR}/*.json ; do \ + echo $$jsonfile; cat $$jsonfile | jq ".scannedCves | length" ; \ + done +endef \ No newline at end of file diff --git a/detector/detector.go b/detector/detector.go index dc413089..43465f14 100644 --- a/detector/detector.go +++ b/detector/detector.go @@ -78,12 +78,10 @@ func Detect(rs []models.ScanResult, dir string) ([]models.ScanResult, error) { return nil, xerrors.Errorf("Failed to detect WordPress Cves: %w", err) } - logging.Log.Infof("Fill CVE detailed with gost") if err := gost.FillCVEsWithRedHat(&r, config.Conf.Gost); err != nil { return nil, xerrors.Errorf("Failed to fill with gost: %w", err) } - logging.Log.Infof("Fill CVE detailed with go-cve-dictionary") if err := FillCvesWithNvdJvn(&r, config.Conf.CveDict, config.Conf.LogOpts); err != nil { return nil, xerrors.Errorf("Failed to fill with CVE: %w", err) } @@ -92,13 +90,13 @@ func Detect(rs []models.ScanResult, dir string) ([]models.ScanResult, error) { if err != nil { return nil, xerrors.Errorf("Failed to fill with exploit: %w", err) } - logging.Log.Infof("%s: %d exploits are detected", r.FormatServerName(), nExploitCve) + logging.Log.Infof("%s: %d PoC are detected", r.FormatServerName(), nExploitCve) nMetasploitCve, err := FillWithMetasploit(&r, config.Conf.Metasploit) if err != nil { return nil, xerrors.Errorf("Failed to fill with metasploit: %w", err) } - logging.Log.Infof("%s: %d modules are detected", r.FormatServerName(), nMetasploitCve) + logging.Log.Infof("%s: %d exploits are detected", r.FormatServerName(), nMetasploitCve) FillCweDict(&r) @@ -244,7 +242,7 @@ func DetectWordPressCves(r *models.ScanResult, wpCnf config.WpScanConf) error { if len(r.WordPressPackages) == 0 { return nil } - logging.Log.Infof("Detect WordPress CVE. pkgs: %d ", len(r.WordPressPackages)) + logging.Log.Infof("%s: Detect WordPress CVE. pkgs: %d ", r.ServerInfo(), (r.WordPressPackages)) n, err := detectWordPressCves(r, wpCnf) if err != nil { return xerrors.Errorf("Failed to detect WordPress CVE: %w", err) diff --git a/go.mod b/go.mod index 5ea718b9..c2cd45da 100644 --- a/go.mod +++ b/go.mod @@ -5,9 +5,9 @@ go 1.16 require ( github.com/Azure/azure-sdk-for-go v50.2.0+incompatible github.com/BurntSushi/toml v0.3.1 - github.com/aquasecurity/fanal v0.0.0-20210119051230-28c249da7cfd - github.com/aquasecurity/trivy v0.16.0 - github.com/aquasecurity/trivy-db v0.0.0-20210121143430-2a5c54036a86 + github.com/aquasecurity/fanal v0.0.0-20210501093021-8aaac3e8dea7 + github.com/aquasecurity/trivy v0.17.2 + github.com/aquasecurity/trivy-db v0.0.0-20210429114658-ae22941a55d0 github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d github.com/aws/aws-sdk-go v1.36.31 github.com/boltdb/bolt v1.3.1 @@ -44,17 +44,16 @@ require ( github.com/parnurzeal/gorequest v0.2.16 github.com/pelletier/go-toml v1.8.1 // indirect github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5 - github.com/sirupsen/logrus v1.7.0 + github.com/sirupsen/logrus v1.8.0 github.com/spf13/afero v1.6.0 - github.com/spf13/cast v1.3.1 // indirect github.com/spf13/cobra v1.1.3 - github.com/spf13/jwalterweatherman v1.1.0 // indirect github.com/takuzoo3868/go-msfdb v0.1.5 github.com/vulsio/go-exploitdb v0.1.7 golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 // indirect golang.org/x/oauth2 v0.0.0-20210125201302-af13f521f196 + golang.org/x/sync v0.0.0-20210220032951-036812b2e83c golang.org/x/sys v0.0.0-20210426230700-d19ff857e887 // indirect golang.org/x/tools v0.1.0 // indirect golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 diff --git a/go.sum b/go.sum index 7a664a78..d5158c23 100644 --- a/go.sum +++ b/go.sum @@ -1,11 +1,19 @@ +bazil.org/fuse v0.0.0-20160811212531-371fbbdaa898/go.mod h1:Xbm+BRKSBEpa4q4hTSxohYNQpsxXPbPry4JJWOB3LB8= +bazil.org/fuse v0.0.0-20180421153158-65cc252bf669/go.mod h1:Xbm+BRKSBEpa4q4hTSxohYNQpsxXPbPry4JJWOB3LB8= +cloud.google.com/go v0.25.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.31.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.37.2/go.mod h1:H8IAquKe2L30IxoupDgqTaQvKSwF/c8prYHynGIWQbA= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= +cloud.google.com/go v0.39.0/go.mod h1:rVLT6fkc8chs9sfPtFc1SBH6em7n+ZoXaG+87tDISts= cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= +cloud.google.com/go v0.51.0/go.mod h1:hWtGJ6gnXH+KgDv+V0zFGDvpi07n3z8ZNj3T1RW0Gcw= cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= @@ -31,19 +39,50 @@ cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0Zeo cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= +code.gitea.io/sdk/gitea v0.12.0/go.mod h1:z3uwDV/b9Ls47NGukYM9XhnHtqPh/J+t40lsUrR6JDY= +contrib.go.opencensus.io/exporter/aws v0.0.0-20181029163544-2befc13012d0/go.mod h1:uu1P0UCM/6RbsMrgPa98ll8ZcHM858i/AD06a9aLRCA= +contrib.go.opencensus.io/exporter/ocagent v0.5.0/go.mod h1:ImxhfLRpxoYiSq891pBrLVhN+qmP8BTVvdH2YLs7Gl0= +contrib.go.opencensus.io/exporter/stackdriver v0.12.1/go.mod h1:iwB6wGarfphGGe/e5CWqyUk/cLzKnWsOKPVW3no6OTw= +contrib.go.opencensus.io/integrations/ocsql v0.1.4/go.mod h1:8DsSdjz3F+APR+0z0WkU1aRorQCFfRxvqjUUPMbF3fE= +contrib.go.opencensus.io/resource v0.1.1/go.mod h1:F361eGI91LCmW1I/Saf+rX0+OFcigGlFvXwEGEnkRLA= +cuelang.org/go v0.0.15/go.mod h1:gehQASsTv+lFZknWIG0hANGVSBiHD7HyKWmAdEZL3No= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= +git.apache.org/thrift.git v0.0.0-20180902110319-2566ecd5d999/go.mod h1:fPE2ZNJGynbRyZ4dJvy6G277gSllfV2HJqblrnkyeyg= +git.apache.org/thrift.git v0.12.0/go.mod h1:fPE2ZNJGynbRyZ4dJvy6G277gSllfV2HJqblrnkyeyg= +github.com/AkihiroSuda/containerd-fuse-overlayfs v1.0.0/go.mod h1:0mMDvQFeLbbn1Wy8P2j3hwFhqBq+FKn8OZPno8WLmp8= +github.com/Azure/azure-amqp-common-go/v2 v2.1.0/go.mod h1:R8rea+gJRuJR6QxTir/XuEd+YuKoUiazDC/N96FiDEU= +github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= +github.com/Azure/azure-pipeline-go v0.2.2/go.mod h1:4rQ/NZncSvGqNkkOsNpOU1tgoNuIlp9AfUH5G1tvCHc= +github.com/Azure/azure-sdk-for-go v16.2.1+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= +github.com/Azure/azure-sdk-for-go v19.1.1+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= +github.com/Azure/azure-sdk-for-go v29.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= +github.com/Azure/azure-sdk-for-go v30.1.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= github.com/Azure/azure-sdk-for-go v35.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= github.com/Azure/azure-sdk-for-go v38.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= +github.com/Azure/azure-sdk-for-go v42.3.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= github.com/Azure/azure-sdk-for-go v50.2.0+incompatible h1:w9EF1btRfLLWbNEp6XvkMjeA6nQ3e1GZ2KNDqB/SjOQ= github.com/Azure/azure-sdk-for-go v50.2.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= +github.com/Azure/azure-service-bus-go v0.9.1/go.mod h1:yzBx6/BUGfjfeqbRZny9AQIbIe3AcV9WZbAdpkoXOa0= +github.com/Azure/azure-storage-blob-go v0.8.0/go.mod h1:lPI3aLPpuLTeUwh1sViKXFxwl2B6teiRqI0deQUvsw0= github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= +github.com/Azure/go-autorest v10.8.1+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= +github.com/Azure/go-autorest v10.15.5+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= +github.com/Azure/go-autorest v12.0.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= +github.com/Azure/go-autorest v14.1.1+incompatible h1:m2F62e1Zk5DV3HENGdH/wEuzvJZIynHG4fHF7oiQwgE= +github.com/Azure/go-autorest v14.1.1+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= -github.com/Azure/go-autorest/autorest v0.9.3 h1:OZEIaBbMdUE/Js+BQKlpO81XlISgipr6yDJ+PSwsgi4= github.com/Azure/go-autorest/autorest v0.9.3/go.mod h1:GsRuLYvwzLjjjRoWEIyMUaYq8GNUx2nRB378IPt/1p0= +github.com/Azure/go-autorest/autorest v0.9.6/go.mod h1:/FALq9T/kS7b5J5qsQ+RSTUdAmGFqi0vUdVNNx8q630= +github.com/Azure/go-autorest/autorest v0.10.2 h1:NuSF3gXetiHyUbVdneJMEVyPUYAe5wh+aN08JYAf1tI= +github.com/Azure/go-autorest/autorest v0.10.2/go.mod h1:/FALq9T/kS7b5J5qsQ+RSTUdAmGFqi0vUdVNNx8q630= github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod h1:8Z9fGy2MpX0PvDjB1pEgQTmVqjGhiHBW7RJJEciWzS0= github.com/Azure/go-autorest/autorest/adal v0.8.0/go.mod h1:Z6vX6WXXuyieHAXwMj0S6HY6e6wcHn37qQMBQlvY3lc= -github.com/Azure/go-autorest/autorest/adal v0.8.1 h1:pZdL8o72rK+avFWl+p9nE8RWi1JInZrWJYlnpfXJwHk= github.com/Azure/go-autorest/autorest/adal v0.8.1/go.mod h1:ZjhuQClTqx435SRJ2iMlOxPYt3d2C/T/7TiQCVZSn3Q= +github.com/Azure/go-autorest/autorest/adal v0.8.2/go.mod h1:ZjhuQClTqx435SRJ2iMlOxPYt3d2C/T/7TiQCVZSn3Q= +github.com/Azure/go-autorest/autorest/adal v0.8.3 h1:O1AGG9Xig71FxdX9HO5pGNyZ7TbSyHaVg+5eJO/jSGw= +github.com/Azure/go-autorest/autorest/adal v0.8.3/go.mod h1:ZjhuQClTqx435SRJ2iMlOxPYt3d2C/T/7TiQCVZSn3Q= +github.com/Azure/go-autorest/autorest/azure/auth v0.4.2/go.mod h1:90gmfKdlmKgfjUpnCEpOJzsUEjrWDSLwHIG73tSXddM= +github.com/Azure/go-autorest/autorest/azure/cli v0.3.1/go.mod h1:ZG5p860J94/0kI9mNJVoIoLgXcirM2gF5i2kWloofxw= github.com/Azure/go-autorest/autorest/date v0.1.0/go.mod h1:plvfp3oPSKwf2DNjlBjWF/7vwR+cUD/ELuzDCXwHUVA= github.com/Azure/go-autorest/autorest/date v0.2.0 h1:yW+Zlqf26583pE43KhfnhFcdmSWlm5Ew6bxipnr/tbM= github.com/Azure/go-autorest/autorest/date v0.2.0/go.mod h1:vcORJHLJEh643/Ioh9+vPmf1Ij9AEBM5FuBIXLmIy0g= @@ -55,6 +94,7 @@ github.com/Azure/go-autorest/autorest/to v0.2.0/go.mod h1:GunWKJp1AEqgMaGLV+iocm github.com/Azure/go-autorest/autorest/to v0.3.0 h1:zebkZaadz7+wIQYgC7GXaz3Wb28yKYfVkkBKwc38VF8= github.com/Azure/go-autorest/autorest/to v0.3.0/go.mod h1:MgwOyqaIuKdG4TL/2ywSsIWKAfJfgHDo8ObuUk3t5sA= github.com/Azure/go-autorest/autorest/validation v0.1.0/go.mod h1:Ha3z/SqBeaalWQvokg3NZAlQTalVMtOIAs1aGK7G6u8= +github.com/Azure/go-autorest/autorest/validation v0.2.0/go.mod h1:3EEqHnBxQGHXRYq3HT1WyXAvT7LLY3tl70hw6tQIbjI= github.com/Azure/go-autorest/logger v0.1.0 h1:ruG4BSDXONFRrZZJ2GUXDiUyVpayPmb1GnWeHDdaNKY= github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc= github.com/Azure/go-autorest/tracing v0.5.0 h1:TRn4WjSnkcSy5AEG3pnbtFSwNtwzjr4VYyQflFE619k= @@ -62,37 +102,81 @@ github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbt github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/Djarvur/go-err113 v0.0.0-20200410182137-af658d038157/go.mod h1:4UJr5HIiMZrwgkSPdsjy2uOQExX/WEILpIrO9UPGuXs= +github.com/Djarvur/go-err113 v0.1.0/go.mod h1:4UJr5HIiMZrwgkSPdsjy2uOQExX/WEILpIrO9UPGuXs= +github.com/GoogleCloudPlatform/cloudsql-proxy v0.0.0-20191009163259-e802c2cb94ae/go.mod h1:mjwGPas4yKduTyubHvD1Atl9r1rUq8DfVy+gkVvZ+oo= github.com/GoogleCloudPlatform/docker-credential-gcr v1.5.0/go.mod h1:BB1eHdMLYEFuFdBlRMb0N7YGVdM5s6Pt0njxgvfbGGs= github.com/GoogleCloudPlatform/k8s-cloud-provider v0.0.0-20190822182118-27a4ced34534/go.mod h1:iroGtC8B3tQiqtds1l+mgk/BBOrxbqjH+eUfFQYRc14= -github.com/Microsoft/go-winio v0.4.11/go.mod h1:VhR8bwka0BXejwEJY73c50VrPtXAaKcyvVC4A4RozmA= +github.com/KeisukeYamashita/go-vcl v0.4.0/go.mod h1:af2qGlXbsHDQN5abN7hyGNKtGhcFSaDdbLl4sfud+AU= +github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= +github.com/Masterminds/goutils v1.1.0 h1:zukEsf/1JZwCMgHiK3GZftabmxiCw4apj3a28RPBiVg= +github.com/Masterminds/goutils v1.1.0/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU= +github.com/Masterminds/semver v1.5.0 h1:H65muMkzWKEuNDnfl9d70GUjFniHKHRbFPGBuZ3QEww= +github.com/Masterminds/semver v1.5.0/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y= +github.com/Masterminds/semver/v3 v3.0.3/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= +github.com/Masterminds/semver/v3 v3.1.0/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= +github.com/Masterminds/sprig v2.22.0+incompatible h1:z4yfnGrZ7netVz+0EDJ0Wi+5VZCSYp4Z0m2dk6cEM60= +github.com/Masterminds/sprig v2.22.0+incompatible/go.mod h1:y6hNFY5UBTIWBxnzTeuNhlNS5hqE0NB0E6fgfo2Br3o= github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA= github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5/go.mod h1:tTuCMEN+UleMWgg9dVx4Hu52b1bJo+59jBh3ajtinzw= -github.com/Microsoft/hcsshim v0.8.6/go.mod h1:Op3hHsoHPAvb6lceZHDtd9OkTew38wNoXnJs8iY7rUg= +github.com/Microsoft/go-winio v0.4.15-0.20200908182639-5b44b70ab3ab/go.mod h1:tTuCMEN+UleMWgg9dVx4Hu52b1bJo+59jBh3ajtinzw= +github.com/Microsoft/go-winio v0.4.15/go.mod h1:tTuCMEN+UleMWgg9dVx4Hu52b1bJo+59jBh3ajtinzw= +github.com/Microsoft/go-winio v0.4.16-0.20201130162521-d1ffc52c7331/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0= +github.com/Microsoft/go-winio v0.4.16/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0= +github.com/Microsoft/hcsshim v0.8.7/go.mod h1:OHd7sQqRFrYd3RmSgbgji+ctCwkbq2wbEYNSzOYtcBQ= +github.com/Microsoft/hcsshim v0.8.9/go.mod h1:5692vkUqntj1idxauYlpoINNKeqCiG6Sg38RRsjT5y8= +github.com/Microsoft/hcsshim v0.8.10/go.mod h1:g5uw8EV2mAlzqe94tfNBNdr89fnbD/n3HV0OhsddkmM= +github.com/Microsoft/hcsshim v0.8.14/go.mod h1:NtVKoYxQuTLx6gEq0L96c9Ju4JbRJ4nY2ow3VK6a9Lg= +github.com/Microsoft/hcsshim/test v0.0.0-20200826032352-301c83a30e7c/go.mod h1:30A5igQ91GEmhYJF8TaRP79pMBOYynRsyOByfVV0dU4= github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/OneOfOne/xxhash v1.2.7/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= +github.com/OneOfOne/xxhash v1.2.8/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= +github.com/OpenPeeDeeP/depguard v1.0.1/go.mod h1:xsIw86fROiiwelg+jB2uM9PiKihMMmUx/1V+TNhjQvM= github.com/PuerkitoBio/goquery v1.5.1/go.mod h1:GsLWisAFVj4WgDibEWF4pvYnkVQBpKBKeU+7zCJoLcc= github.com/PuerkitoBio/goquery v1.6.1/go.mod h1:GsLWisAFVj4WgDibEWF4pvYnkVQBpKBKeU+7zCJoLcc= github.com/PuerkitoBio/purell v1.0.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= +github.com/Shopify/logrus-bugsnag v0.0.0-20171204204709-577dee27f20d/go.mod h1:HI8ITrYtUY+O+ZhtlqUnD8+KwNPOyugEhfP9fdUIaEQ= +github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= +github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= +github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= github.com/VividCortex/ewma v1.1.1 h1:MnEK4VOv6n0RSY4vtRe3h11qjxL3+t0B8yOL8iMXdcM= github.com/VividCortex/ewma v1.1.1/go.mod h1:2Tkkvm3sRDVXaiyucHiACn4cqf7DpdyLvmxzcbUokwA= +github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= +github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c= +github.com/agext/levenshtein v1.2.1/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558= +github.com/agnivade/levenshtein v1.0.1/go.mod h1:CURSv5d9Uaml+FovSIICkLbAUZ9S4RqaHDIsdSBg7lM= github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7/go.mod h1:6zEj6s6u/ghQa61ZWa/C2Aw3RkjiTBOix7dkqa1VLIs= +github.com/alecthomas/kingpin v2.2.6+incompatible/go.mod h1:59OFYbFVLKQKq+mqrL6Rw5bR0c3ACQaawgXx0QYndlE= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a/go.mod h1:SGnFV6hVsYE877CKEZ6tDNTjaSXYUk6QqoIK6PrAtcc= github.com/alicebob/miniredis/v2 v2.14.1/go.mod h1:uS970Sw5Gs9/iK3yBg0l9Uj9s25wXxSpQUE9EaJ/Blg= +github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo29Kk6CurOXKm700vrz8f0KW0JNfpkRJY/8= github.com/andybalholm/cascadia v1.1.0/go.mod h1:GsXiBklL0woXo1j/WYWtSYYC4ouU9PqHO0sqidkEA4Y= github.com/andybalholm/cascadia v1.2.0/go.mod h1:YCyR8vOZT9aZ1CHEd8ap0gMVm2aFgxBp0T0eFw1RUQY= github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c= +github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= +github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= +github.com/apex/log v1.1.4/go.mod h1:AlpoD9aScyQfJDVHmLMEcx4oU6LqzkWp4Mg9GdAcEvQ= +github.com/apex/log v1.3.0/go.mod h1:jd8Vpsr46WAe3EZSQ/IUMs2qQD/GOycT5rPWCO1yGcs= +github.com/apex/logs v0.0.4/go.mod h1:XzxuLZ5myVHDy9SAmYpamKKRNApGj54PfYLcFrXqDwo= +github.com/aphistic/golf v0.0.0-20180712155816-02c07f170c5a/go.mod h1:3NqKYiepwy8kCu4PNA+aP7WUV72eXWJeP9/r3/K9aLE= +github.com/aphistic/sweet v0.2.0/go.mod h1:fWDlIh/isSE9n6EPsRmC0det+whmX6dJid3stzu0Xys= +github.com/apparentlymart/go-dump v0.0.0-20180507223929-23540a00eaa3/go.mod h1:oL81AME2rN47vu18xqj1S1jPIPuN7afo62yKTNn3XMM= +github.com/apparentlymart/go-textseg v1.0.0/go.mod h1:z96Txxhf3xSFMPmb5X/1W05FF/Nj9VFpLOpjS5yuumk= +github.com/apparentlymart/go-textseg/v12 v12.0.0/go.mod h1:S/4uRK2UtaQttw1GenVJEynmyUenKwP++x/+DdGV/Ec= github.com/aquasecurity/bolt-fixtures v0.0.0-20200903104109-d34e7f983986 h1:2a30xLN2sUZcMXl50hg+PJCIDdJgIvIbVcKqLJ/ZrtM= github.com/aquasecurity/bolt-fixtures v0.0.0-20200903104109-d34e7f983986/go.mod h1:NT+jyeCzXk6vXR5MTkdn4z64TgGfE5HMLC8qfj5unl8= -github.com/aquasecurity/fanal v0.0.0-20210119051230-28c249da7cfd h1:meqa2AA+7K1r/nfNB19K2AP/v8+nemuWeQoTSqZ2R9s= -github.com/aquasecurity/fanal v0.0.0-20210119051230-28c249da7cfd/go.mod h1:kur6SaohYhsjQLzijAdtn+X8rkTtwxawE51WyVCXLKk= -github.com/aquasecurity/go-dep-parser v0.0.0-20201028043324-889d4a92b8e0 h1:cLH3SebzhbJ+jU1GIad8A1N8p7m7OjHhtY6JePISiVc= -github.com/aquasecurity/go-dep-parser v0.0.0-20201028043324-889d4a92b8e0/go.mod h1:X42mTIRhgPalSm81Om2kD+3ydeunbC8TZtZj1bvgRo8= +github.com/aquasecurity/fanal v0.0.0-20210501093021-8aaac3e8dea7 h1:bY5D5GVthqQCvnNllG2NVXYpOQJJRi7KFhLdVrskaDg= +github.com/aquasecurity/fanal v0.0.0-20210501093021-8aaac3e8dea7/go.mod h1:cPTOJcf8bdP24oXhBsPVVczcjkICcApAwAOsn6CpHTI= +github.com/aquasecurity/go-dep-parser v0.0.0-20210427143403-3c97ccc53976 h1:ypl/IDxujzEymmwtzGJqQyboI2oZr1se+OoYaGqgBzQ= +github.com/aquasecurity/go-dep-parser v0.0.0-20210427143403-3c97ccc53976/go.mod h1:Cv/FOCXy6gwvDbz/KX48+y//SmbnKroFwW5hquXn5G4= github.com/aquasecurity/go-gem-version v0.0.0-20201115065557-8eed6fe000ce h1:QgBRgJvtEOBtUXilDb1MLi1p1MWoyFDXAu5DEUl5nwM= github.com/aquasecurity/go-gem-version v0.0.0-20201115065557-8eed6fe000ce/go.mod h1:HXgVzOPvXhVGLJs4ZKO817idqr/xhwsTcj17CLYY74s= github.com/aquasecurity/go-npm-version v0.0.0-20201110091526-0b796d180798 h1:eveqE9ivrt30CJ7dOajOfBavhZ4zPqHcZe/4tKp0alc= @@ -103,11 +187,10 @@ github.com/aquasecurity/go-version v0.0.0-20201107203531-5e48ac5d022a/go.mod h1: github.com/aquasecurity/go-version v0.0.0-20210121072130-637058cfe492 h1:rcEG5HI490FF0a7zuvxOxen52ddygCfNVjP0XOCMl+M= github.com/aquasecurity/go-version v0.0.0-20210121072130-637058cfe492/go.mod h1:9Beu8XsUNNfzml7WBf3QmyPToP1wm1Gj/Vc5UJKqTzU= github.com/aquasecurity/testdocker v0.0.0-20210106133225-0b17fe083674/go.mod h1:psfu0MVaiTDLpNxCoNsTeILSKY2EICBwv345f3M+Ffs= -github.com/aquasecurity/trivy v0.16.0 h1:lyzqYGQ2TYxcjFwKBw6aU3PwHLvc0+6VTech+0/LnqQ= -github.com/aquasecurity/trivy v0.16.0/go.mod h1:SLXDW/zKJWE7XhMEGGfkFGABNvz6b8BAbNjuXztJlj0= -github.com/aquasecurity/trivy-db v0.0.0-20210105160501-c5bf4e153277/go.mod h1:N7CWA/vjVw78GWAdCJGhFQVqNGEA4e47a6eIWm+C/Bc= -github.com/aquasecurity/trivy-db v0.0.0-20210121143430-2a5c54036a86 h1:KSJyJg4GnwPjhdxYlnewiqEX3OV901ivbl+XCN1ix+o= -github.com/aquasecurity/trivy-db v0.0.0-20210121143430-2a5c54036a86/go.mod h1:N7CWA/vjVw78GWAdCJGhFQVqNGEA4e47a6eIWm+C/Bc= +github.com/aquasecurity/trivy v0.17.2 h1:22bRTDdRU88YxQcspuShW1cUb5q7jonQBNNsP9FVy18= +github.com/aquasecurity/trivy v0.17.2/go.mod h1:ykez0D6bg3UrihEea72jxQFydYo53OMf/9MlwH0iWmc= +github.com/aquasecurity/trivy-db v0.0.0-20210429114658-ae22941a55d0 h1:XSnx/roCF/yxA7f1wmjWdY0uYYvy4gDsFU0cOu5jF6M= +github.com/aquasecurity/trivy-db v0.0.0-20210429114658-ae22941a55d0/go.mod h1:N7CWA/vjVw78GWAdCJGhFQVqNGEA4e47a6eIWm+C/Bc= github.com/aquasecurity/vuln-list-update v0.0.0-20191016075347-3d158c2bf9a2/go.mod h1:6NhOP0CjZJL27bZZcaHECtzWdwDDm2g6yCY0QgXEGQQ= github.com/araddon/dateparse v0.0.0-20190426192744-0d74ffceef83/go.mod h1:SLqhdZcd+dF3TEVL2RMoob5bBP5R1P1qkox+HtCBgGI= github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= @@ -115,32 +198,71 @@ github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5 github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= +github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6lCRdSC2Tm3DSWRPvIPr6xNKyeHdqDQSQT+A= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d h1:Byv0BzEl3/e6D5CLfI0j/7hiIEtvGVFPCZ7Ei2oq8iQ= github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= +github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= +github.com/aws/aws-sdk-go v1.15.11/go.mod h1:mFuSZ37Z9YOHbQEwBWztmVzqXrEkub65tZoCYDt7FT0= +github.com/aws/aws-sdk-go v1.15.27/go.mod h1:mFuSZ37Z9YOHbQEwBWztmVzqXrEkub65tZoCYDt7FT0= +github.com/aws/aws-sdk-go v1.15.78/go.mod h1:E3/ieXAlvM0XWO57iftYVDLLvQ824smPP3ATZkfNZeM= +github.com/aws/aws-sdk-go v1.15.90/go.mod h1:es1KtYUFs7le0xQ3rOihkuoVD90z7D0fR2Qm4S00/gU= github.com/aws/aws-sdk-go v1.16.26/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go v1.19.18/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go v1.19.45/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go v1.20.6/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go v1.25.11/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/aws/aws-sdk-go v1.27.1/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go v1.31.6/go.mod h1:5zCpMtNQVjRREroY7sYe8lOMRSxkhG6MZveU8YkpAk0= github.com/aws/aws-sdk-go v1.36.31 h1:BMVngapDGAfLBVEVzaSIw3fmJdWx7jOvhLCXgRXbXQI= github.com/aws/aws-sdk-go v1.36.31/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= +github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= +github.com/aybabtme/rgbterm v0.0.0-20170906152045-cc83f3b3ce59/go.mod h1:q/89r3U2H7sSsE2t6Kca0lfwTK8JdoNGS/yzM/4iH5I= +github.com/basgys/goxml2json v1.1.0/go.mod h1:wH7a5Np/Q4QoECFIU8zTQlZwZkrilY0itPfecMw41Dw= +github.com/beorn7/perks v0.0.0-20160804104726-4c0e84591b9a/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d/go.mod h1:6QX/PXZ00z/TKoufEY6K/a0k6AhaJrQKdFe6OfVXsa4= github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= +github.com/bitly/go-simplejson v0.5.0/go.mod h1:cXHtHw4XUPsvGaxgjIAn8PhEWG9NfngEKAMDJEczWVA= github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= +github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb/go.mod h1:PkYb9DJNAwrSvRx5DYA+gUcOIgTGVMNkfSCbZM8cWpI= +github.com/blang/semver v3.1.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= github.com/blang/semver v3.5.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= +github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4= github.com/boltdb/bolt v1.3.1 h1:JQmyP4ZBrce+ZQu0dY660FMfatumYDLun9hBCUVIkF4= github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps= +github.com/bombsimon/wsl/v2 v2.0.0/go.mod h1:mf25kr/SqFEPhhcxW1+7pxzGlW+hIl/hYTKY95VwV8U= +github.com/bombsimon/wsl/v2 v2.2.0/go.mod h1:Azh8c3XGEJl9LyX0/sFC+CKMc7Ssgua0g+6abzXN4Pg= +github.com/bombsimon/wsl/v3 v3.0.0/go.mod h1:st10JtZYLE4D5sC7b8xV4zTKZwAQjCH/Hy2Pm1FNZIc= +github.com/bombsimon/wsl/v3 v3.1.0/go.mod h1:st10JtZYLE4D5sC7b8xV4zTKZwAQjCH/Hy2Pm1FNZIc= +github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod h1:HYsPBTaaSFSlLx/70C2HPIMNZpVV8+vt/A+FMnYP11g= github.com/briandowns/spinner v1.12.0 h1:72O0PzqGJb6G3KgrcIOtL/JAGGZ5ptOMCn9cUHmqsmw= github.com/briandowns/spinner v1.12.0/go.mod h1:QOuQk7x+EaDASo80FEXwlwiA+j/PPIcX3FScO+3/ZPQ= +github.com/bshuster-repo/logrus-logstash-hook v0.4.1/go.mod h1:zsTqEiSzDgAa/8GZR7E1qaXrhYNDKBYy5/dWPTIflbk= +github.com/bugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd/go.mod h1:2oa8nejYd4cQ/b0hMIopN0lCRxU0bueqREvZLWFrtK8= +github.com/bugsnag/osext v0.0.0-20130617224835-0dd3f918b21b/go.mod h1:obH5gd0BsqsP2LwDJ9aOkm/6J86V6lyAXCoQWGw3K50= +github.com/bugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0/go.mod h1:D/8v3kj0zr8ZAKg1AQ6crr+5VwKN5eIywRkfhyM/+dE= +github.com/caarlos0/ctrlc v1.0.0/go.mod h1:CdXpj4rmq0q/1Eb44M9zi2nKB0QraNKuRGYGrrHhcQw= github.com/caarlos0/env/v6 v6.0.0 h1:NZt6FAoB8ieKO5lEwRdwCzYxWFx7ZYF2R7UcoyaWtyc= github.com/caarlos0/env/v6 v6.0.0/go.mod h1:+wdyOmtjoZIW2GJOc2OYa5NoOFuWD/bIpWqm30NgtRk= +github.com/campoy/unique v0.0.0-20180121183637-88950e537e7e/go.mod h1:9IOqJGCPMSc6E5ydlp5NIonxObaeu/Iub/X03EKPVYo= +github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= +github.com/cavaliercoder/go-cpio v0.0.0-20180626203310-925f9528c45e/go.mod h1:oDpT4efm8tSYHXV5tHSdRvBet/b/QzxZ+XyyPehvm3A= github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4= github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= +github.com/census-instrumentation/opencensus-proto v0.2.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/checkpoint-restore/go-criu/v4 v4.1.0/go.mod h1:xUQBLp4RLc5zJtWY++yjOoMoB5lihDt7fai+75m+rGw= +github.com/cheggaaa/pb v1.0.27 h1:wIkZHkNfC7R6GI5w7l/PdAdzXzlrbcI3p8OAlnkTsnc= +github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= github.com/cheggaaa/pb/v3 v3.0.3/go.mod h1:Pp35CDuiEpHa/ZLGCtBbM6CBwMstv1bJlG884V+73Yc= github.com/cheggaaa/pb/v3 v3.0.5/go.mod h1:X1L61/+36nz9bjIsrDU52qHKOQukUQe2Ge+YvGuquCw= github.com/cheggaaa/pb/v3 v3.0.7 h1:58wduqwoqpsklsCZ7NZ5dsrCqPWv2t0+p85FcBds6XY= @@ -148,12 +270,50 @@ github.com/cheggaaa/pb/v3 v3.0.7/go.mod h1:X1L61/+36nz9bjIsrDU52qHKOQukUQe2Ge+Yv github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= +github.com/cilium/ebpf v0.0.0-20200110133405-4032b1d8aae3/go.mod h1:MA5e5Lr8slmEg9bt0VpxxWqJlO4iwu3FBdHUzV7wQVg= +github.com/cilium/ebpf v0.0.0-20200702112145-1c8d4c9ef775/go.mod h1:7cR51M8ViRLIdUjrmSXlK9pkrsDlLHbO8jiB8X8JnOc= +github.com/cilium/ebpf v0.2.0/go.mod h1:To2CFviqOWL/M0gIMsvSMlqe7em/l1ALkX1PyjrX2Qs= +github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= +github.com/cockroachdb/apd/v2 v2.0.1/go.mod h1:DDxRlzC2lo3/vSlmSoS7JkqbbrARPuFOGr0B9pvN3Gw= github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= +github.com/codahale/hdrhistogram v0.0.0-20160425231609-f8ad88b59a58/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= +github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= +github.com/containerd/cgroups v0.0.0-20190919134610-bf292b21730f/go.mod h1:OApqhQ4XNSNC13gXIwDjhOQxjWa/NxkwZXJ1EvqT0ko= +github.com/containerd/cgroups v0.0.0-20200531161412-0dbf7f05ba59/go.mod h1:pA0z1pT8KYB3TCXK/ocprsh7MAkoW8bZVzPdih9snmM= +github.com/containerd/cgroups v0.0.0-20200710171044-318312a37340/go.mod h1:s5q4SojHctfxANBDvMeIaIovkq29IP48TKAxnhYRxvo= +github.com/containerd/cgroups v0.0.0-20210114181951-8a68de567b68/go.mod h1:ZJeTFisyysqgcCdecO57Dj79RfL0LNeGiFUqLYQRYLE= +github.com/containerd/console v0.0.0-20180822173158-c12b1e7919c1/go.mod h1:Tj/on1eG8kiEhd0+fhSDzsPAFESxzBBvdyEgyryXffw= +github.com/containerd/console v0.0.0-20191206165004-02ecf6a7291e/go.mod h1:8Pf4gM6VEbTNRIT26AyyU7hxdQU3MvAvxVI0sc00XBE= +github.com/containerd/console v1.0.0/go.mod h1:8Pf4gM6VEbTNRIT26AyyU7hxdQU3MvAvxVI0sc00XBE= +github.com/containerd/console v1.0.1/go.mod h1:XUsP6YE/mKtz6bxc+I8UiKKTP04qjQL4qcS3XoQ5xkw= +github.com/containerd/containerd v1.3.0-beta.2.0.20190828155532-0293cbd26c69/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= github.com/containerd/containerd v1.3.0/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= +github.com/containerd/containerd v1.3.2/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= github.com/containerd/containerd v1.3.3/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= +github.com/containerd/containerd v1.4.0/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= +github.com/containerd/containerd v1.4.1-0.20201117152358-0edc412565dc/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= +github.com/containerd/containerd v1.4.1/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= +github.com/containerd/containerd v1.4.3/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= +github.com/containerd/continuity v0.0.0-20200107194136-26c1120b8d41/go.mod h1:Dq467ZllaHgAtVp4p1xUQWBrFXR9s/wyoTpG8zOJGkY= +github.com/containerd/continuity v0.0.0-20200710164510-efbc4488d8fe/go.mod h1:cECdGN1O8G9bgKTlLhuPJimka6Xb/Gg7vYzCTNVxhvo= +github.com/containerd/continuity v0.0.0-20210208174643-50096c924a4e/go.mod h1:EXlVlkqNba9rJe3j7w3Xa924itAMLgZH4UD/Q4PExuQ= +github.com/containerd/fifo v0.0.0-20190226154929-a9fb20d87448/go.mod h1:ODA38xgv3Kuk8dQz2ZQXpnv/UZZUHUCL7pnLehbXgQI= +github.com/containerd/fifo v0.0.0-20200410184934-f15a3290365b/go.mod h1:jPQ2IAeZRCYxpS/Cm1495vGFww6ecHmMk1YJH2Q5ln0= +github.com/containerd/go-cni v1.0.1/go.mod h1:+vUpYxKvAF72G9i1WoDOiPGRtQpqsNW/ZHtSlv++smU= +github.com/containerd/go-runc v0.0.0-20180907222934-5a6d9f37cfa3/go.mod h1:IV7qH3hrUgRmyYrtgEeGWJfWbgcHL9CSRruz2Vqcph0= +github.com/containerd/go-runc v0.0.0-20200220073739-7016d3ce2328/go.mod h1:PpyHrqVs8FTi9vpyHwPwiNEGaACDxT/N/pLcvMSRA9g= +github.com/containerd/go-runc v0.0.0-20201020171139-16b287bc67d0/go.mod h1:cNU0ZbCgCQVZK4lgG3P+9tn9/PaJNmoDXPpoJhDR+Ok= +github.com/containerd/stargz-snapshotter v0.0.0-20201027054423-3a04e4c2c116/go.mod h1:o59b3PCKVAf9jjiKtCc/9hLAd+5p/rfhBfm6aBcTEr4= +github.com/containerd/ttrpc v0.0.0-20190828154514-0e0f228740de/go.mod h1:PvCDdDGpgqzQIzDW1TphrGLssLDZp2GuS+X5DkEJB8o= +github.com/containerd/ttrpc v1.0.1/go.mod h1:UAxOpgT9ziI0gJrmKvgcZivgxOp8iFPSk8httJEt98Y= +github.com/containerd/typeurl v0.0.0-20180627222232-a93fcdb778cd/go.mod h1:Cm3kwCdlkCfMSHURc+r6fwoGH6/F1hH3S4sg0rLFWPc= +github.com/containerd/typeurl v1.0.1/go.mod h1:TB1hUtrpaiO88KEK56ijojHS1+NeF0izUACaJW2mdXg= +github.com/containernetworking/cni v0.8.0/go.mod h1:LGwApLUm2FpoOfxTDEeq8T9ipbpZ61X79hmU3w8FmsY= github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= @@ -162,7 +322,10 @@ github.com/coreos/go-oidc v2.1.0+incompatible/go.mod h1:CgnwVTmzoESiwO9qyAFEMiHo github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd/v22 v22.0.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk= +github.com/coreos/go-systemd/v22 v22.1.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= @@ -171,6 +334,7 @@ github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:ma github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/cyphar/filepath-securejoin v0.2.2/go.mod h1:FpkQEhXnPnOthhzymB7CGsFk2G9VLXONKD9G7QGMM+4= github.com/d4l3k/messagediff v1.2.2-0.20190829033028-7e0a312ae40b h1:02XNVBBC2x90C1IKnZ0iyrIxL1pdIRsusn0lqSEIOD0= github.com/d4l3k/messagediff v1.2.2-0.20190829033028-7e0a312ae40b/go.mod h1:Oozbb1TVXFac9FtSIxHBMnBCq2qeH/2KkEQxENCrlLo= github.com/davecgh/go-spew v0.0.0-20151105211317-5215b55f46b2/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -178,64 +342,99 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/deckarep/golang-set v1.7.1/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= +github.com/deislabs/oras v0.8.1/go.mod h1:Mx0rMSbBNaNfY9hjpccEnxkOqJL6KGjtxNHPLC4G4As= github.com/denisenkom/go-mssqldb v0.0.0-20191124224453-732737034ffd h1:83Wprp6ROGeiHFAP8WJdI2RoxALQYgdllERc3N5N2DM= github.com/denisenkom/go-mssqldb v0.0.0-20191124224453-732737034ffd/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= +github.com/denverdino/aliyungo v0.0.0-20190125010748-a747050bb1ba/go.mod h1:dV8lFg6daOBZbT6/BDGIz6Y3WFGn8juu6G+CQ6LHtl0= +github.com/devigned/tab v0.1.1/go.mod h1:XG9mPq0dFghrYvoBF3xdRrJzSTX1b7IQrvaL9mzjeJY= +github.com/dgrijalva/jwt-go v0.0.0-20170104182250-a601269ab70c/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f h1:lO4WD4F/rVNCu3HqELle0jiPLLBs70cWOduZpkS1E78= github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cuUVRXasLTGF7a8hSLbxyZXjz+1KgoB3wDUb6vlszIc= github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= +github.com/dimchansky/utfbom v1.1.0/go.mod h1:rO41eb7gLfo8SF1jd9F8HplJm1Fewwi4mQvIirEdv+8= github.com/dnaeon/go-vcr v1.0.1 h1:r8L/HqC0Hje5AXMu1ooW8oyQyOFv4GxqpL0nRP7SLLY= github.com/dnaeon/go-vcr v1.0.1/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E= +github.com/docker/cli v0.0.0-20190925022749-754388324470/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= +github.com/docker/cli v0.0.0-20200130152716-5d0cf8839492/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= +github.com/docker/cli v20.10.0-beta1.0.20201029214301-1d20b15adc38+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= +github.com/docker/distribution v0.0.0-20190905152932-14b96e55d84c/go.mod h1:0+TTO4EOBfRPhZXAeF1Vu+W3hHZ8eLp8PgKVZlcvtFY= +github.com/docker/distribution v0.0.0-20191216044856-a8371794149d/go.mod h1:0+TTO4EOBfRPhZXAeF1Vu+W3hHZ8eLp8PgKVZlcvtFY= +github.com/docker/distribution v2.6.0-rc.1.0.20180327202408-83389a148052+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= +github.com/docker/docker v0.0.0-20200511152416-a93e9eb0e95c/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/docker v0.7.3-0.20190327010347-be7ac8be2ae0/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docker/docker v0.7.3-0.20190506211059-b20a14b54661/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v1.4.2-0.20180531152204-71cd53e4a197/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v1.4.2-0.20200203170920-46ec8731fbce/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v17.12.0-ce-rc1.0.20200730172259-9f28837c1d93+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v20.10.0-beta1.0.20201110211921-af34b94a78a1+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v20.10.3+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/docker-credential-helpers v0.6.3/go.mod h1:WRaJzqw3CTB9bk10avuGsjVBZsD05qeibJ1/TYlvc0Y= github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= +github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c/go.mod h1:Uw6UezgYA44ePAFQYUehOuCzmy5zmg/+nl2ZfMWGkpA= +github.com/docker/go-metrics v0.0.0-20180209012529-399ea8c73916/go.mod h1:/u0gXw0Gay3ceNrsHubL3BtdOL2fHf93USgMTe0W5dI= github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= +github.com/docker/libnetwork v0.8.0-dev.2.0.20200917202933-d0951081b35f/go.mod h1:93m0aTqz6z+g32wla4l4WxTrdtvBRmVzYRkYvasA5Z8= +github.com/docker/libtrust v0.0.0-20150114040149-fa567046d9b1/go.mod h1:cyGadeNEkKy96OOhEzfZl+yxihPEzKnqJwvfuSUqbZE= github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= +github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= +github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= +github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= +github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/elazarl/goproxy v0.0.0-20170405201442-c4fc26588b6e/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= +github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= github.com/elazarl/goproxy v0.0.0-20190421051319-9d40249d3c2f/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= github.com/elazarl/goproxy v0.0.0-20200809112317-0581fc3aee2d/go.mod h1:Ro8st/ElPeALwNFlcTpWmkr6IoMFfkjXAvTHpevnDsM= github.com/elazarl/goproxy v0.0.0-20210110162100-a92cc753f88e h1:/cwV7t2xezilMljIftb7WlFtzGANRCnoOhPjtl2ifcs= github.com/elazarl/goproxy v0.0.0-20210110162100-a92cc753f88e/go.mod h1:Ro8st/ElPeALwNFlcTpWmkr6IoMFfkjXAvTHpevnDsM= github.com/elazarl/goproxy/ext v0.0.0-20190421051319-9d40249d3c2f/go.mod h1:gNh8nYJoAm43RfaxurUnxr+N1PwuFV3ZMl/efxlIlY8= github.com/elazarl/goproxy/ext v0.0.0-20190711103511-473e67f1d7d2/go.mod h1:gNh8nYJoAm43RfaxurUnxr+N1PwuFV3ZMl/efxlIlY8= -github.com/elazarl/goproxy/ext v0.0.0-20200809112317-0581fc3aee2d/go.mod h1:gNh8nYJoAm43RfaxurUnxr+N1PwuFV3ZMl/efxlIlY8= github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21 h1:OJyUGMJTzHTd1XQp98QTaHernxMYzRaOasRir9hUlFQ= github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21/go.mod h1:iL2twTeMvZnrg54ZoPDNfJaJaqy0xIQFuBdrLsmspwQ= github.com/emersion/go-smtp v0.14.0 h1:RYW203p+EcPjL8Z/ZpT9lZ6iOc8MG1MQzEx1UKEkXlA= github.com/emersion/go-smtp v0.14.0/go.mod h1:qm27SGYgoIPRot6ubfQ/GpiPy/g3PaZAVRxiO/sDUgQ= github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= github.com/emicklei/go-restful v2.9.5+incompatible/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= +github.com/emicklei/proto v1.6.15/go.mod h1:rn1FgRS/FANiZdD2djyH7TMA9jdRDcYQ9IEN9yvjX0A= github.com/emirpasic/gods v1.12.0/go.mod h1:YfzfFFoVP/catgzJb4IKIqXjX78Ha8FMSDh3ymbK86o= +github.com/envoyproxy/go-control-plane v0.6.9/go.mod h1:SBwIajubJHhxtWwsL9s8ss4safvEdbitLhGGK48rN6g= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 h1:Yzb9+7DPaBjB8zlTR87/ElzFsnQfuHnVUVqpZZIcV5Y= github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5/go.mod h1:a2zkGnVExMxdzMo3M0Hi/3sEU+cWnZpSni0O6/Yb/P0= github.com/evanphx/json-patch v4.2.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= +github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= github.com/fatih/color v1.10.0 h1:s36xzo75JdqLaaWoiEHk767eHiwo0598uUxyfiPkDsg= github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM= github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc= +github.com/fortytw2/leaktest v1.2.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= +github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= +github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= +github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= +github.com/garyburd/redigo v0.0.0-20150301180006-535138d7bcd7/go.mod h1:NR3MbYisc3/PwhQ00EMzDiPmrwpPxAn5GI05/YaO1SY= github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/ghodss/yaml v0.0.0-20180820084758-c7ce16629ff4/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= -github.com/gin-gonic/gin v1.5.0/go.mod h1:Nd6IXA8m5kNZdNEHMBd93KT+mdY3+bewLgRvmCsR2Do= +github.com/gliderlabs/ssh v0.1.1/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= github.com/gliderlabs/ssh v0.2.2/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= +github.com/go-akka/configuration v0.0.0-20200606091224-a002c0330665/go.mod h1:19bUnum2ZAeftfwwLZ/wRe7idyfoW2MfmXO464Hrfbw= +github.com/go-critic/go-critic v0.4.1/go.mod h1:7/14rZGnZbY6E38VEGk2kVhoq6itzc1E68facVDK23g= +github.com/go-critic/go-critic v0.4.3/go.mod h1:j4O3D4RoIwRqlZw5jJpx0BNfXWWbpcJoKu5cYSe4YmQ= github.com/go-git/gcfg v1.5.0/go.mod h1:5m20vg6GwYabIxaOonVkTdrILxQMpEShl1xiMF4ua+E= github.com/go-git/go-billy/v5 v5.0.0/go.mod h1:pmpqyWchKfYfrkb/UVH4otLvyi/5gJlGI4Hb3ZqZ3W0= github.com/go-git/go-git-fixtures/v4 v4.0.1/go.mod h1:m+ICp2rF3jDhFgEZ/8yziagdT1C+ZpZcrJjappBCDSw= @@ -243,10 +442,18 @@ github.com/go-git/go-git/v5 v5.0.0/go.mod h1:oYD8y9kWsGINPFJoLdaScGCN6dlKg23blmC github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= +github.com/go-ini/ini v1.25.4/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8= +github.com/go-ini/ini v1.62.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o= +github.com/go-lintpack/lintpack v0.5.2/go.mod h1:NwZuYi2nUHho8XEIZ6SIxihrnPoqBTDqfpXvXAN0sXM= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= +github.com/go-logr/logr v0.2.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= +github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= github.com/go-openapi/jsonpointer v0.19.2/go.mod h1:3akKfEdA7DF1sugOqz1dVQHBcuDBPKZGEoHC/NkiQRg= github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= @@ -258,13 +465,8 @@ github.com/go-openapi/spec v0.19.3/go.mod h1:FpwSN1ksY1eteniUU7X0N/BgJ7a4WvBFVA8 github.com/go-openapi/swag v0.0.0-20160704191624-1d0bd113de87/go.mod h1:DXUve3Dpr1UfpPtxFw+EFuQ41HhCWZfha5jSVRG7C7I= github.com/go-openapi/swag v0.19.2/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-playground/locales v0.12.1/go.mod h1:IUMDtCfWo/w/mtMfIE/IG2K+Ey3ygWanZIBtBW0W2TM= -github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q= github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= -github.com/go-playground/universal-translator v0.16.0/go.mod h1:1AnU7NaIRDWWzGEKwgtJRd2xk99HeFyHw3yid4rvQIY= -github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no= github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA= -github.com/go-redis/redis v6.15.7+incompatible/go.mod h1:NAIEuMOZ/fxfXJIrKDQDz8wamY7mA7PouImQ2Jvg6kA= github.com/go-redis/redis v6.15.9+incompatible h1:K0pv1D7EQUjfyoMql+r/jZqCLizCGKFlFgcHWWmHQjg= github.com/go-redis/redis v6.15.9+incompatible/go.mod h1:NAIEuMOZ/fxfXJIrKDQDz8wamY7mA7PouImQ2Jvg6kA= github.com/go-redis/redis/v8 v8.4.0/go.mod h1:A1tbYoHSa1fXwN+//ljcCYYJeLmVrwL9hbQN45Jdy0M= @@ -273,23 +475,48 @@ github.com/go-redis/redis/v8 v8.4.11/go.mod h1:d5yY/TlkQyYBSBHnXUmnf1OrHbyQere5J github.com/go-redis/redis/v8 v8.8.0 h1:fDZP58UN/1RD3DjtTXP/fFZ04TFohSYhjZDkcDe2dnw= github.com/go-redis/redis/v8 v8.8.0/go.mod h1:F7resOH5Kdug49Otu24RjHWwgK7u9AmtqWMnCV1iP5Y= github.com/go-restruct/restruct v0.0.0-20191227155143-5734170a48a1/go.mod h1:KqrpKpn4M8OLznErihXTGLlsXFGeLxHUrLRRI/1YjGk= +github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE= github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-test/deep v1.0.3/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA= +github.com/go-toolsmith/astcast v1.0.0/go.mod h1:mt2OdQTeAQcY4DQgPSArJjHCcOwlX+Wl/kwN+LbLGQ4= +github.com/go-toolsmith/astcopy v1.0.0/go.mod h1:vrgyG+5Bxrnz4MZWPF+pI4R8h3qKRjjyvV/DSez4WVQ= +github.com/go-toolsmith/astequal v0.0.0-20180903214952-dcb477bfacd6/go.mod h1:H+xSiq0+LtiDC11+h1G32h7Of5O3CYFJ99GVbS5lDKY= +github.com/go-toolsmith/astequal v1.0.0/go.mod h1:H+xSiq0+LtiDC11+h1G32h7Of5O3CYFJ99GVbS5lDKY= +github.com/go-toolsmith/astfmt v0.0.0-20180903215011-8f8ee99c3086/go.mod h1:mP93XdblcopXwlyN4X4uodxXQhldPGZbcEJIimQHrkg= +github.com/go-toolsmith/astfmt v1.0.0/go.mod h1:cnWmsOAuq4jJY6Ct5YWlVLmcmLMn1JUPuQIHCY7CJDw= +github.com/go-toolsmith/astinfo v0.0.0-20180906194353-9809ff7efb21/go.mod h1:dDStQCHtmZpYOmjRP/8gHHnCCch3Zz3oEgCdZVdtweU= +github.com/go-toolsmith/astp v0.0.0-20180903215135-0af7e3c24f30/go.mod h1:SV2ur98SGypH1UjcPpCatrV5hPazG6+IfNHbkDXBRrk= +github.com/go-toolsmith/astp v1.0.0/go.mod h1:RSyrtpVlfTFGDYRbrjyWP1pYu//tSFcvdYrA8meBmLI= +github.com/go-toolsmith/pkgload v0.0.0-20181119091011-e9e65178eee8/go.mod h1:WoMrjiy4zvdS+Bg6z9jZH82QXwkcgCBX6nOfnmdaHks= +github.com/go-toolsmith/pkgload v1.0.0/go.mod h1:5eFArkbO80v7Z0kdngIxsRXRMTaX4Ilcwuh3clNrQJc= +github.com/go-toolsmith/strparse v1.0.0/go.mod h1:YI2nUKP9YGZnL/L1/DLFBfixrcjslWct4wyljWhSRy8= +github.com/go-toolsmith/typep v1.0.0/go.mod h1:JSQCQMUPdRlMZFswiq3TGpNp1GMktqkR2Ns5AIQkATU= +github.com/go-toolsmith/typep v1.0.2/go.mod h1:JSQCQMUPdRlMZFswiq3TGpNp1GMktqkR2Ns5AIQkATU= +github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b/go.mod h1:aUCEOzzezBEjDBbFBoSiya/gduyIiWYRP6CnSFIV8AM= github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= github.com/gocarina/gocsv v0.0.0-20201208093247-67c824bc04d4/go.mod h1:5YoVOkjYAQumqlV356Hj3xeYh4BdZuLE0/nRkf2NKkI= github.com/goccy/go-yaml v1.8.1/go.mod h1:wS4gNoLalDSJxo/SpngzPQ2BN4uuZVLCmbM4S3vd4+Y= github.com/goccy/go-yaml v1.8.2 h1:gDYrSN12XK/wQTFjxWIgcIqjNCV/Zb5V09M7cq+dbCs= github.com/goccy/go-yaml v1.8.2/go.mod h1:wS4gNoLalDSJxo/SpngzPQ2BN4uuZVLCmbM4S3vd4+Y= +github.com/godbus/dbus v0.0.0-20190422162347-ade71ed3457e/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= +github.com/godbus/dbus/v5 v5.0.3/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= +github.com/godoctor/godoctor v0.0.0-20181123222458-69df17f3a6f6/go.mod h1:+tyhT8jBF8E0XvdlSXOSL7Iko7DlNiongHq3q+wcsPs= +github.com/gofrs/flock v0.0.0-20190320160742-5135e617513b/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= +github.com/gofrs/flock v0.7.3/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= +github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= +github.com/gogo/googleapis v1.2.0/go.mod h1:Njal3psf3qN6dwBtQfUmBZh2ybovJ0tlu3o/AC7HYjU= +github.com/gogo/googleapis v1.3.2/go.mod h1:5YRNX2z1oM5gXdAkurHa942MDgEJyk02w4OecKY87+c= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/gogo/protobuf v1.2.2-0.20190723190241-65acae22fc9d/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.3.0/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY= github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= @@ -298,6 +525,7 @@ github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4er github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:tluoj9z5200jBnyusfRPU2LqT6J+DAorxEvtC7LHB+E= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= @@ -306,7 +534,7 @@ github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= github.com/golang/protobuf v0.0.0-20161109072736-4bd1920723d7/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v0.0.0-20181025225059-d3de96c4c28e/go.mod h1:Qd/q+1AKNOZr9uGQzbzCmRO6sUih6GTPZv6a1/R87v0= +github.com/golang/protobuf v1.1.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -319,10 +547,33 @@ github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrU github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= -github.com/golang/protobuf v1.4.2 h1:+Z5KGCizgyZCbGh1KZqA0fcLLkwbsjIzS4aV2v7wJX0= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.4.3 h1:JjCZWpVbqXDqFVmTfYWEVTMIYrL/NPdPSCHPJ0T/raM= +github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2/go.mod h1:k9Qvh+8juN+UKMCS/3jFtGICgW8O96FVaZsaxdzDkR4= +github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a/go.mod h1:ryS0uhF+x9jgbj/N71xsEqODy9BN81/GonCZiOzirOk= +github.com/golangci/errcheck v0.0.0-20181223084120-ef45e06d44b6/go.mod h1:DbHgvLiFKX1Sh2T1w8Q/h4NAI8MHIpzCdnBUDTXU3I0= +github.com/golangci/go-misc v0.0.0-20180628070357-927a3d87b613/go.mod h1:SyvUF2NxV+sN8upjjeVYr5W7tyxaT1JVtvhKhOn2ii8= +github.com/golangci/goconst v0.0.0-20180610141641-041c5f2b40f3/go.mod h1:JXrF4TWy4tXYn62/9x8Wm/K/dm06p8tCKwFRDPZG/1o= +github.com/golangci/gocyclo v0.0.0-20180528134321-2becd97e67ee/go.mod h1:ozx7R9SIwqmqf5pRP90DhR2Oay2UIjGuKheCBCNwAYU= +github.com/golangci/gocyclo v0.0.0-20180528144436-0a533e8fa43d/go.mod h1:ozx7R9SIwqmqf5pRP90DhR2Oay2UIjGuKheCBCNwAYU= +github.com/golangci/gofmt v0.0.0-20190930125516-244bba706f1a/go.mod h1:9qCChq59u/eW8im404Q2WWTrnBUQKjpNYKMbU4M7EFU= +github.com/golangci/golangci-lint v1.23.7/go.mod h1:g/38bxfhp4rI7zeWSxcdIeHTQGS58TCak8FYcyCmavQ= +github.com/golangci/golangci-lint v1.27.0/go.mod h1:+eZALfxIuthdrHPtfM7w/R3POJLjHDfJJw8XZl9xOng= +github.com/golangci/ineffassign v0.0.0-20190609212857-42439a7714cc/go.mod h1:e5tpTHCfVze+7EpLEozzMB3eafxo2KT5veNg1k6byQU= +github.com/golangci/lint-1 v0.0.0-20191013205115-297bf364a8e0/go.mod h1:66R6K6P6VWk9I95jvqGxkqJxVWGFy9XlDwLwVz1RCFg= +github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca/go.mod h1:tvlJhZqDe4LMs4ZHD0oMUlt9G2LWuDGoisJTBzLMV9o= +github.com/golangci/misspell v0.0.0-20180809174111-950f5d19e770/go.mod h1:dEbvlSfYbMQDtrpRMQU675gSDLDNa8sCPPChZ7PhiVA= +github.com/golangci/misspell v0.3.5/go.mod h1:dEbvlSfYbMQDtrpRMQU675gSDLDNa8sCPPChZ7PhiVA= +github.com/golangci/prealloc v0.0.0-20180630174525-215b22d4de21/go.mod h1:tf5+bzsHdTM0bsB7+8mt0GUMvjCgwLpTapNZHU8AajI= +github.com/golangci/revgrep v0.0.0-20180526074752-d9c87f5ffaf0/go.mod h1:qOQCunEYvmd/TLamH+7LlVccLvUH5kZNhbCgTHoBbp4= +github.com/golangci/revgrep v0.0.0-20180812185044-276a5c0a1039/go.mod h1:qOQCunEYvmd/TLamH+7LlVccLvUH5kZNhbCgTHoBbp4= +github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4/go.mod h1:Izgrg8RkN3rCIMLGE9CyYmU9pY2Jer6DgANEnZ/L/cQ= +github.com/google/btree v0.0.0-20180124185431-e89373fe6b4a/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/crfs v0.0.0-20191108021818-71d77da419c9/go.mod h1:etGhoOqfwPkooV6aqoX3eBGQOJblqdoc9XvWOeuxpPw= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -330,18 +581,29 @@ github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-containerregistry v0.0.0-20191010200024-a3d713f9b7f8/go.mod h1:KyKXa9ciM8+lgMXwOVsXi7UxGrsf9mM61Mzs+xKUrKE= github.com/google/go-containerregistry v0.0.0-20200331213917-3d03ed9b1ca2/go.mod h1:pD1UFYs7MCAx+ZLShBdttcaOSbyc8F9Na/9IZLNwJeA= +github.com/google/go-containerregistry v0.1.2/go.mod h1:GPivBPgdAyd2SU+vf6EpsgOtWDuPqjW0hJZt4rNdTZ4= +github.com/google/go-github v17.0.0+incompatible h1:N0LgJ1j65A7kfXrZnUDaYCs/Sf4rEjNlfyDHW9dolSY= +github.com/google/go-github v17.0.0+incompatible/go.mod h1:zLgOLi98H3fifZn+44m+umXrS52loVEgC2AApnigrVQ= github.com/google/go-github/v28 v28.1.1 h1:kORf5ekX5qwXO2mGzXXOjMe/g6ap8ahVe0sBEulhSxo= github.com/google/go-github/v28 v28.1.1/go.mod h1:bsqJWQX05omyWVmc00nEUql9mhQyv38lDZ8kPZcQVoM= +github.com/google/go-jsonnet v0.17.0/go.mod h1:sOcuej3UW1vpPTZOr8L7RQimqai1a57bt5j22LzGZCw= github.com/google/go-querystring v1.0.0 h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk= github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= +github.com/google/go-replayers/grpcreplay v0.1.0/go.mod h1:8Ig2Idjpr6gifRd6pNVggX6TC1Zw6Jx74AKp7QNH2QE= +github.com/google/go-replayers/httpreplay v0.1.0/go.mod h1:YKZViNhiGgqdBlUbI2MwGpq4pXxNmhJLPHQ7cv2b5no= github.com/google/gofuzz v0.0.0-20161122191042-44d81051d367/go.mod h1:HP5RmnzzSNb993RKQDq4+1A4ia9nllfqcQFTQJedwGI= +github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf/go.mod h1:HP5RmnzzSNb993RKQDq4+1A4ia9nllfqcQFTQJedwGI= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/martian v2.1.1-0.20190517191504-25dcb96d9e51+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= @@ -351,56 +613,98 @@ github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/rpmpack v0.0.0-20191226140753-aa36bfddb3a0/go.mod h1:RaTPr0KUf2K7fnZYLNDrr8rxAamWs3iNywJLtQ2AzBg= +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= github.com/google/subcommands v1.0.1/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk= github.com/google/subcommands v1.2.0 h1:vWQspBTo2nEqTUFita5/KeEWlUL8kQObDFbub/EN9oE= github.com/google/subcommands v1.2.0/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/wire v0.3.0 h1:imGQZGEVEHpje5056+K+cgdO72p0LQv2xIIFXNGUf60= +github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.1.4/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.2.0 h1:qJYtXnJRWmpe7m/3XlyhrsLrEURqHRM2kxzoxXqyUDs= +github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/wire v0.3.0/go.mod h1:i1DMg/Lu8Sz5yYl25iOdmc5CT5qusaa+zmRWs16741s= +github.com/google/wire v0.4.0 h1:kXcsA/rIGzJImVqPdhfnr6q0xsS9gU0515q1EPpJ9fE= +github.com/google/wire v0.4.0/go.mod h1:ngWDr9Qvq3yZA10YrxfyGELY/AFWGVpy9c1LTRi1EoU= +github.com/googleapis/gax-go v2.0.0+incompatible/go.mod h1:SFVmujtThgffbyetf+mdk2eWhX2bMyUtNHzFKcPA9HY= +github.com/googleapis/gax-go v2.0.2+incompatible/go.mod h1:SFVmujtThgffbyetf+mdk2eWhX2bMyUtNHzFKcPA9HY= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= github.com/googleapis/gnostic v0.2.2/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= +github.com/googleapis/gnostic v0.4.1/go.mod h1:LRhVm6pbyptWbWbuZ38d1eyptfvIytN3ir6b65WBswg= +github.com/gookit/color v1.2.4/go.mod h1:AhIE+pS6D4Ql0SQWbBeXPHw7gY0/sjHoA4s/n1KB7xg= github.com/gophercloud/gophercloud v0.1.0/go.mod h1:vxM41WHh5uqHVBMZHzuwNOHh8XEoIEcSTewFxm1c5g8= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 h1:l5lAOZEym3oK3SQ2HBHWsJUfbNBiTXJDeW2QDxw9AQ0= github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/goreleaser/goreleaser v0.136.0/go.mod h1:wiKrPUeSNh6Wu8nUHxZydSOVQ/OZvOaO7DTtFqie904= +github.com/goreleaser/nfpm v1.2.1/go.mod h1:TtWrABZozuLOttX2uDlYyECfQX7x5XYkVxhjYcR6G9w= +github.com/goreleaser/nfpm v1.3.0/go.mod h1:w0p7Kc9TAUgWMyrub63ex3M2Mgw88M4GZXoTq5UCb40= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= -github.com/gorilla/mux v0.0.0-20181024020800-521ea7b17d02/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= +github.com/gorilla/handlers v0.0.0-20150720190736-60c7bfde3e33/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= +github.com/gorilla/mux v1.7.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.7.4/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= +github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.2.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc= github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/gostaticanalysis/analysisutil v0.0.0-20190318220348-4088753ea4d3/go.mod h1:eEOZF4jCKGi+aprrirO9e7WKB3beBRtWgqGunKl6pKE= +github.com/gostaticanalysis/analysisutil v0.0.3/go.mod h1:eEOZF4jCKGi+aprrirO9e7WKB3beBRtWgqGunKl6pKE= github.com/gosuri/uitable v0.0.4 h1:IG2xLKRvErL3uhY6e1BylFzG+aJiwQviDDTfOKeKTpY= github.com/gosuri/uitable v0.0.4/go.mod h1:tKR86bXuXPZazfOTG1FIzvjIdXzd0mo4Vtn16vt0PJo= +github.com/gotestyourself/gotestyourself v2.2.0+incompatible/go.mod h1:zZKM6oeNM8k+FRljX1mnzVYeS8wiGgQyvST1/GafPbY= github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= github.com/grokify/html-strip-tags-go v0.0.1 h1:0fThFwLbW7P/kOiTBs03FsJSV9RM2M/Q/MOnCQxKMo0= github.com/grokify/html-strip-tags-go v0.0.1/go.mod h1:2Su6romC5/1VXOQMaWL2yb618ARB8iVo6/DR99A6d78= github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= +github.com/grpc-ecosystem/go-grpc-middleware v1.2.0/go.mod h1:mJzapYve32yjrKlk9GbyCZHuPgZsrbyIbyKhSzOpg6s= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= +github.com/grpc-ecosystem/grpc-gateway v1.5.0/go.mod h1:RSKVYQBd5MCa4OVpNdGskqpgL2+G+NZTnrVHpWWfpdw= +github.com/grpc-ecosystem/grpc-gateway v1.6.2/go.mod h1:RSKVYQBd5MCa4OVpNdGskqpgL2+G+NZTnrVHpWWfpdw= +github.com/grpc-ecosystem/grpc-gateway v1.8.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/grpc-ecosystem/grpc-gateway v1.9.2/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645/go.mod h1:6iZfnjpejD4L/4DwD7NryNaJyCQdzwWwH2MWhCA90Kw= +github.com/hanwen/go-fuse v1.0.0/go.mod h1:unqXarDXqzAk0rt98O2tVndEPIpUgLD9+rwFisZH3Ok= +github.com/hanwen/go-fuse/v2 v2.0.3/go.mod h1:0EQM6aH2ctVpvZ6a+onrQ/vaykxh2GH7hy3e13vzTUY= github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= +github.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE= github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= +github.com/hashicorp/consul/sdk v0.3.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= +github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-getter v1.5.2/go.mod h1:orNH3BTYLu/fIxGIdLjLoAJHWMDQ/UKQr5O4m3iBuoo= +github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= +github.com/hashicorp/go-multierror v0.0.0-20161216184304-ed905158d874/go.mod h1:JMRHfdO9jKNzS/+BTlxCjKNQHg/jZAft8U7LloJvN7I= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= github.com/hashicorp/go-multierror v1.1.0/go.mod h1:spPvp8C1qA32ftKqdAHm4hHTbPw+vmowP0z+KUhOZdA= +github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= +github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= +github.com/hashicorp/go-retryablehttp v0.6.4/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY= +github.com/hashicorp/go-retryablehttp v0.6.6/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY= +github.com/hashicorp/go-retryablehttp v0.6.8/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY= github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU= +github.com/hashicorp/go-safetemp v1.0.0/go.mod h1:oaerMy3BhqiTbVye6QuFhFtIceqFoDHxNAB65b+Rj1I= github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-uuid v1.0.2 h1:cfejS+Tpcp13yd5nYHWDI6qVCny6wyX2Mt5SGur2IGE= github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= +github.com/hashicorp/go-version v1.1.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/go-version v1.2.1/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/go-version v1.3.0 h1:McDWVJIU/y+u1BRV06dPaLfLCaT7fUTJLp5r04x7iNw= @@ -411,26 +715,40 @@ github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ github.com/hashicorp/golang-lru v0.5.3/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= +github.com/hashicorp/hcl/v2 v2.6.0/go.mod h1:bQTN5mpo+jewjJgh8jr0JUguIi7qPHUF6yIfAEN3jqY= github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/hashicorp/uuid v0.0.0-20160311170451-ebb0a03e909c/go.mod h1:fHzc09UnyJyqyW+bFuq864eh+wC7dj65aXmXLRe5to0= github.com/howeyc/gopass v0.0.0-20190910152052-7cb4b85ec19c h1:aY2hhxLhjEAbfXOx2nRJxCXezC6CO2V/yN+OCr1srtk= github.com/howeyc/gopass v0.0.0-20190910152052-7cb4b85ec19c/go.mod h1:lADxMC39cJJqL93Duh1xhAs4I2Zs8mKS89XWXFGp9cs= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/htcat/htcat v1.0.2 h1:zro95dGwkKDeZOgq9ei+9szd5qurGxBGfHY8hRehA7k= github.com/htcat/htcat v1.0.2/go.mod h1:i8ViQbjSi2+lJzM6Lx20FIxHENCz6mzJglK3HH06W3s= +github.com/huandu/xstrings v1.3.2 h1:L18LIDzqlW6xN2rEkpdV8+oL/IXWJ1APd+vsdYy4Wdw= +github.com/huandu/xstrings v1.3.2/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= +github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= +github.com/imdario/mergo v0.3.8/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= +github.com/imdario/mergo v0.3.9 h1:UauaLniWCFHWd+Jp9oCEkTBj8VO/9DKg3PV3VCNMDIg= +github.com/imdario/mergo v0.3.9/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= github.com/inconshreveable/log15 v0.0.0-20200109203555-b30bc20e4fd1/go.mod h1:cOaXtrgN4ScfRrD9Bre7U1thNq5RtJ8ZoP4iXVGRj6o= github.com/inconshreveable/log15 v0.0.0-20201112154412-8562bdadbbac h1:n1DqxAo4oWPMvH1+v+DLYlMCecgumhhgnxAPdqDIFHI= github.com/inconshreveable/log15 v0.0.0-20201112154412-8562bdadbbac/go.mod h1:cOaXtrgN4ScfRrD9Bre7U1thNq5RtJ8ZoP4iXVGRj6o= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= +github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= +github.com/ishidawataru/sctp v0.0.0-20191218070446-00ab2ac2db07/go.mod h1:co9pwDoBCm1kGxawmb4sPq0cSIOOWNPT4KnHotMP1Zg= +github.com/jaguilar/vt100 v0.0.0-20150826170717-2703a27b14ea/go.mod h1:QMdK4dGB3YhEW2BmA1wgGpPYI3HZy/5gD705PXKUVSg= +github.com/jarcoal/httpmock v1.0.5/go.mod h1:ATjnClrvW/3tijVmpL/va5Z3aAyGvqU3gCT8nX0Txik= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= +github.com/jellevandenhooff/dkim v0.0.0-20150330215556-f50fe3d243e1/go.mod h1:E0B/fFc00Y+Rasa88328GlI/XbtyysCtTHZS8h7IrBU= github.com/jesseduffield/gocui v0.3.0 h1:l7wH8MKR2p+ozuZdtdhQiX7szILbv50vkMk1tg2+xow= github.com/jesseduffield/gocui v0.3.0/go.mod h1:2RtZznzYKt8RLRwvFiSkXjU0Ei8WwHdubgnlaYH47dw= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= +github.com/jingyugao/rowserrcheck v0.0.0-20191204022205-72ab7603b68a/go.mod h1:xRskid8CManxVta/ALEhJha/pweKBaVG6fWgc0yH25s= github.com/jinzhu/gorm v1.9.12/go.mod h1:vhTjlKSJUTWNtcbQtrMBFCxy7eXTzeCAzfL5fBZT/Qs= github.com/jinzhu/gorm v1.9.16 h1:+IyIjPEABKRpsu/F8OvDPy9fyQlgsg2luMV2ZIH5i5o= github.com/jinzhu/gorm v1.9.16/go.mod h1:G3LB3wezTOWM2ITLzPxEXgSkOXAntiLHS7UdBefADcs= @@ -438,22 +756,34 @@ github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= github.com/jinzhu/now v1.0.1 h1:HjfetcXq097iXP0uoPCdnM4Efp5/9MsM0/M+XOTeR3M= github.com/jinzhu/now v1.0.1/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= +github.com/jirfag/go-printf-func-name v0.0.0-20191110105641-45db9963cdd3/go.mod h1:HEWGJkRDzjJY2sqdDwxccsGicWEf9BQOZsq2tV+xzM0= +github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af/go.mod h1:HEWGJkRDzjJY2sqdDwxccsGicWEf9BQOZsq2tV+xzM0= +github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/jmespath/go-jmespath v0.0.0-20160803190731-bd40a432e4c7/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/jmespath/go-jmespath v0.3.0/go.mod h1:9QtRXoHjLGCJ5IBSaohpXITPlowMeeYCZ7fLUTSywik= github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= +github.com/jmoiron/sqlx v1.2.1-0.20190826204134-d7d95172beb5/go.mod h1:1FEQNm3xlJgrMD+FBdI9+xvCksHtbpVBBw5dYhBSsks= github.com/joefitzgerald/rainbow-reporter v0.1.0/go.mod h1:481CNgqmVHQZzdIbN52CupLJyoVwB10FQ/IQlF1pdL8= +github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= +github.com/jpillora/backoff v0.0.0-20180909062703-3050d21c67d7/go.mod h1:2iMrUgbbvHEiQClaW2NsSzMyGHqN+rDFqY705q49KG0= +github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= github.com/json-iterator/go v0.0.0-20180612202835-f2b4162afba3/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v0.0.0-20180701071628-ab8a2e0c74be/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= @@ -461,7 +791,13 @@ github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3t github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= +github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/klauspost/compress v1.4.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= +github.com/klauspost/compress v1.4.1/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= +github.com/klauspost/compress v1.11.2/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= +github.com/klauspost/cpuid v0.0.0-20180405133222-e7e905edc00e/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= +github.com/klauspost/cpuid v1.2.0/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= github.com/knqyf263/go-apk-version v0.0.0-20200609155635-041fdbb8563f h1:GvCU5GXhHq+7LeOzx/haG7HSIZokl3/0GkoUFzsRJjg= github.com/knqyf263/go-apk-version v0.0.0-20200609155635-041fdbb8563f/go.mod h1:q59u9px8b7UTj0nIjEjvmTWekazka6xIt6Uogz5Dm+8= github.com/knqyf263/go-cpe v0.0.0-20201213041631-54f6ab28673f h1:vZP1dTKPOR7zSAbgqNbnTnYX77+gj3eu0QK+UmANZqE= @@ -473,9 +809,11 @@ github.com/knqyf263/go-rpm-version v0.0.0-20170716094938-74609b86c936/go.mod h1: github.com/knqyf263/go-rpmdb v0.0.0-20201215100354-a9e3110d8ee1/go.mod h1:RDPNeIkU5NWXtt0OMEoILyxwUC/DyXeRtK295wpqSi0= github.com/knqyf263/gost v0.1.10 h1:9SWMPRsZh+0kKqQb/o20f5PNMESpJi3/8CdzrikaA4o= github.com/knqyf263/gost v0.1.10/go.mod h1:Vs6YmVm5GdkVUc9uu8VEGaOdhMKk+0lf7rZALLJlUSA= +github.com/knqyf263/nested v0.0.1 h1:Sv26CegUMhjt19zqbBKntjwESdxe5hxVPSk0+AKjdUc= github.com/knqyf263/nested v0.0.1/go.mod h1:zwhsIhMkBg90DTOJQvxPkKIypEHPYkgWHs4gybdlUmk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kotakanbe/go-cve-dictionary v0.5.12 h1:pJZsty83I/kSO5cmU24xWqeBYOrtiTSQ0c6T/6GVOhA= github.com/kotakanbe/go-cve-dictionary v0.5.12/go.mod h1:E/CipfNDV31W39MH9QtgkA12JFBMe/3CELxXVvPRphQ= github.com/kotakanbe/go-pingscanner v0.1.0 h1:VG4/9l0i8WeToXclj7bIGoAZAu7a07Z3qmQiIfU0gT0= @@ -487,7 +825,9 @@ github.com/kotakanbe/logrus-prefixed-formatter v0.0.0-20180123152602-928f7356cb9 github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/pty v1.1.3/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= @@ -500,13 +840,21 @@ github.com/labstack/echo v3.3.10+incompatible/go.mod h1:0INS7j/VjnFxD4E2wkz67b8c github.com/labstack/echo/v4 v4.1.17/go.mod h1:Tn2yRQL/UclUalpb5rPdXDevbkJ+lp/2svdyFBg6CHQ= github.com/labstack/gommon v0.3.0 h1:JEeO0bvc78PKdyHxloTKiF8BD5iGrH8T6MSeGvSgob0= github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= -github.com/leodido/go-urn v1.1.0/go.mod h1:+cyI34gQWZcE1eQU7NVgKkkzdXDQHr1dBMtdAPozLkw= -github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= +github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.9.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/lib/pq v1.10.1 h1:6VXZrLU0jHBYyAqrSPa+MgPfnSvTPuMgK+k0o5kVFWo= github.com/lib/pq v1.10.1/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= +github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= +github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= +github.com/logrusorgru/aurora v0.0.0-20181002194514-a7b3b318ed4e/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4= +github.com/logrusorgru/aurora v2.0.3+incompatible/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4= +github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= +github.com/magefile/mage v1.10.0/go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A= +github.com/magefile/mage v1.11.0 h1:C/55Ywp9BpgVVclD3lRnSYCwXTYxmSppIgLeDYlNuls= +github.com/magefile/mage v1.11.0/go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/magiconair/properties v1.8.4 h1:8KGKTcQQGm0Kv7vEbKFErAoAOFyyacLStRtQSeYtvkY= @@ -515,13 +863,22 @@ github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.7.0/go.mod h1:KAzv3t3aY1NaHWoQz1+4F1ccyAH66Jk7yos7ldAVICs= +github.com/maratori/testpackage v1.0.1/go.mod h1:ddKdw+XG0Phzhx8BFDTKgpWP4i7MpApTE5fXSKAqwDU= +github.com/marstr/guid v1.1.0/go.mod h1:74gB1z2wpxxInTG6yaqA7KrtM0NZ+RbrcqDvYHefzho= +github.com/masahiro331/go-mvn-version v0.0.0-20210429150710-d3157d602a08 h1:AevUBW4cc99rAF8q8vmddIP8qd/0J5s/UyltGbp66dg= +github.com/masahiro331/go-mvn-version v0.0.0-20210429150710-d3157d602a08/go.mod h1:JOkBRrE1HvgTyjk6diFtNGgr8XJMtIfiBzkL5krqzVk= +github.com/matoous/godox v0.0.0-20190911065817-5d6d842e92eb/go.mod h1:1BELzlh859Sh1c6+90blK8lbYy0kwQf1bYlBhBysy1s= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ= github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= +github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8= github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= +github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= +github.com/mattn/go-ieproxy v0.0.1/go.mod h1:pYabZ6IHcRpFh7vIaLfK7rdcWgFEb3SFJ6/gNWuh88E= github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= @@ -532,7 +889,6 @@ github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOA github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-jsonpointer v0.0.0-20180225143300-37667080efed/go.mod h1:SDJ4hurDYyQ9/7nc+eCYtXqdufgK4Cq9TJlwPklqEYA= -github.com/mattn/go-runewidth v0.0.0-20181025052659-b20a3daf6a39/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= @@ -541,27 +897,50 @@ github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk= github.com/mattn/go-runewidth v0.0.12 h1:Y41i/hVW3Pgwr8gV+J23B9YEY0zxjptBuCWEaxmAOow= github.com/mattn/go-runewidth v0.0.12/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk= +github.com/mattn/go-shellwords v1.0.10/go.mod h1:EZzvwXDESEeg03EKmM+RmDnNOPKG4lLtQsUlTZDWQ8Y= +github.com/mattn/go-sqlite3 v1.9.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= github.com/mattn/go-sqlite3 v1.14.0/go.mod h1:JIl7NbARA7phWnGvh0LKTyg7S9BA+6gx71ShQilpsus= github.com/mattn/go-sqlite3 v1.14.6/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= github.com/mattn/go-sqlite3 v2.0.1+incompatible/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= github.com/mattn/go-sqlite3 v2.0.3+incompatible h1:gXHsfypPkaMZrKbD5209QV9jbUTJKjyR5WD3HYQSd+U= github.com/mattn/go-sqlite3 v2.0.3+incompatible/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= +github.com/mattn/go-zglob v0.0.1/go.mod h1:9fxibJccNxU2cnpIKLRRFA7zX7qhkJIQWBb449FYHOo= +github.com/mattn/goveralls v0.0.2/go.mod h1:8d1ZMHsd7fW6IRPKQh46F2WRpyib5/X4FOpevwGNQEw= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/maxbrunsfeld/counterfeiter/v6 v6.2.2/go.mod h1:eD9eIE7cdwcMi9rYluz88Jz2VyhSmden33/aXg4oVIY= +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b/go.mod h1:01TrycV0kFyexm33Z7vhZRXopbI8J3TDReVlkTgMUxE= github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d h1:5PJl274Y63IEHC+7izoQE9x6ikvDFZS2mDVS3drnohI= github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d/go.mod h1:01TrycV0kFyexm33Z7vhZRXopbI8J3TDReVlkTgMUxE= github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= +github.com/mitchellh/copystructure v1.1.1 h1:Bp6x9R1Wn16SIz3OfeDr0b7RnCG2OB66Y7PQyC/cvq4= +github.com/mitchellh/copystructure v1.1.1/go.mod h1:EBArHfARyrSWO/+Wyr9zwEkc6XMFB9XyNgFNmRkZZU4= github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/go-ps v0.0.0-20190716172923-621e5597135b/go.mod h1:r1VsdOzOPt1ZSrGZWFoNhsAedKnEd6r9Np1+5blZCWk= github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= +github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= +github.com/mitchellh/hashstructure v1.0.0/go.mod h1:QjSHrPWS+BGUVBYkbTZWEnOh3G1DutKwClXU/ABz6AQ= github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/mitchellh/mapstructure v1.3.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/osext v0.0.0-20151018003038-5e2d6d41470f/go.mod h1:OkQIRizQZAeMln+1tSwduZz7+Af5oFlKirV/MSYes2A= +github.com/mitchellh/reflectwalk v1.0.1 h1:FVzMWA5RllMAKIdUSC8mdWo3XtwoecrH79BY70sEEpE= +github.com/mitchellh/reflectwalk v1.0.1/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= +github.com/moby/buildkit v0.8.1/go.mod h1:/kyU1hKy/aYCuP39GZA9MaKioovHku57N6cqlKZIaiQ= +github.com/moby/locker v1.0.1/go.mod h1:S7SDdo5zpBK84bzzVlKr2V0hz+7x9hWbYC/kq7oQppc= +github.com/moby/sys/mount v0.1.0/go.mod h1:FVQFLDRWwyBjDTBNQXDlWnSFREqOo3OKX9aqhmeoo74= +github.com/moby/sys/mount v0.1.1/go.mod h1:FVQFLDRWwyBjDTBNQXDlWnSFREqOo3OKX9aqhmeoo74= +github.com/moby/sys/mount v0.2.0/go.mod h1:aAivFE2LB3W4bACsUXChRHQ0qKWsetY4Y9V7sxOougM= +github.com/moby/sys/mountinfo v0.1.0/go.mod h1:w2t2Avltqx8vE7gX5l+QiBKxODu2TX0+Syr3h52Tw4o= +github.com/moby/sys/mountinfo v0.1.3/go.mod h1:w2t2Avltqx8vE7gX5l+QiBKxODu2TX0+Syr3h52Tw4o= +github.com/moby/sys/mountinfo v0.4.0/go.mod h1:rEr8tzG/lsIZHBtN/JjGG+LMYx9eXgW2JI+6q0qou+A= +github.com/moby/term v0.0.0-20200915141129-7f0af18e79f2/go.mod h1:TjQg8pa4iejrUrjiz0MCtMV38jdMNW4doKSiBrEvCQQ= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v0.0.0-20180320133207-05fbef0ca5da/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= @@ -569,10 +948,25 @@ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lN github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= +github.com/mozilla/tls-observatory v0.0.0-20190404164649-a3c1b6cfecfd/go.mod h1:SrKMQvPiws7F7iqYp8/TX+IhxCYhzr6N/1yb8cwHsGk= +github.com/mozilla/tls-observatory v0.0.0-20200317151703-4fa42e1c2dee/go.mod h1:SrKMQvPiws7F7iqYp8/TX+IhxCYhzr6N/1yb8cwHsGk= +github.com/mpvl/unique v0.0.0-20150818121801-cbe035fff7de/go.mod h1:kJun4WP5gFuHZgRjZUWWuH1DTxCtxbHDOIJsudS8jzY= +github.com/mrunalp/fileutils v0.0.0-20200520151820-abd8a0e76976/go.mod h1:x8F1gnqOkIEiO4rqoeEEEqQbo7HjGMTvyoq3gej4iT0= github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= +github.com/nakabonne/nestif v0.3.0/go.mod h1:dI314BppzXjJ4HsCnbo7XzrJHPszZsjnk5wEBSYHI2c= +github.com/nats-io/jwt v0.3.0/go.mod h1:fRYCDE99xlTsqUzISS1Bi75UBJ6ljOJQOAAu5VglpSg= +github.com/nats-io/jwt v0.3.2/go.mod h1:/euKqTS1ZD+zzjYrY7pseZrTtWQSjujC7xjPc8wL6eU= +github.com/nats-io/nats-server/v2 v2.1.2/go.mod h1:Afk+wRZqkMQs/p45uXdrVLuab3gwv3Z8C4HTBu8GD/k= +github.com/nats-io/nats.go v1.9.1/go.mod h1:ZjDU1L/7fJ09jvUSRVBR2e7+RnLiiIQyqyzEE/Zbp4w= +github.com/nats-io/nkeys v0.1.0/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= +github.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= +github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d/go.mod h1:o96djdrsSGy3AWPyBgZMAGfxZNfgntdJG+11KU4QvbU= +github.com/ncw/swift v1.0.47/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/nlopes/slack v0.6.0 h1:jt0jxVQGhssx1Ib7naAOZEZcGdtIhTzkP0nopK0AsRA= @@ -581,71 +975,140 @@ github.com/nsf/termbox-go v0.0.0-20200418040025-38ba6e5628f1 h1:lh3PyZvY+B9nFliS github.com/nsf/termbox-go v0.0.0-20200418040025-38ba6e5628f1/go.mod h1:IuKpRQcYE1Tfu+oAQqaLisqDeXgjyyltCfsaoYN18NQ= github.com/nxadm/tail v1.4.4 h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= +github.com/oklog/oklog v0.3.2/go.mod h1:FCV+B7mhrz4o+ueLpx+KqkyXRGMWOYEvfiXtdGtbWGs= +github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/olekukonko/tablewriter v0.0.2-0.20190607075207-195002e6e56a/go.mod h1:rSAaSIOAGT9odnlyGlUfAJaoc5w2fSBUmeGDbRWPxyQ= github.com/olekukonko/tablewriter v0.0.4/go.mod h1:zq6QwlOf5SlnkVbMSr5EoBv3636FWnp+qbPhuoO21uA= github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec= github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.11.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.12.0/go.mod h1:oUhWkIvk5aDxtKvDDuw8gItl8pKl42LzjC9KZE0HfGg= github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= github.com/onsi/ginkgo v1.14.2/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= github.com/onsi/ginkgo v1.15.0 h1:1V1NfVQR87RtWAgp1lv9JZJ5Jap+XFGKPi00andXGi4= github.com/onsi/ginkgo v1.15.0/go.mod h1:hF8qUzuuC8DJGygJH3726JnCZX4MYbRB8yFfISqnKUg= github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= +github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= +github.com/onsi/gomega v1.8.1/go.mod h1:Ho0h+IUsWyvy1OpqCwxlQ/21gkhVunqlU8fDGcoTdcA= +github.com/onsi/gomega v1.9.0/go.mod h1:Ho0h+IUsWyvy1OpqCwxlQ/21gkhVunqlU8fDGcoTdcA= github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= github.com/onsi/gomega v1.10.3/go.mod h1:V9xEwhxec5O8UDM77eCW8vLymOMltsqPVYWrpDsH8xc= github.com/onsi/gomega v1.10.4/go.mod h1:g/HbgYopi++010VEqkFgJHKC09uJiW9UkXvMUuKHUCQ= github.com/onsi/gomega v1.10.5 h1:7n6FEkpFmfCoo2t+YYqXH0evK+a9ICQz0xcAy9dYcaQ= github.com/onsi/gomega v1.10.5/go.mod h1:gza4q3jKQJijlu05nKWRCW/GavJumGt8aNRxWg7mt48= -github.com/open-policy-agent/opa v0.21.1/go.mod h1:cZaTfhxsj7QdIiUI0U9aBtOLLTqVNe+XE60+9kZKLHw= +github.com/op/go-logging v0.0.0-20160315200505-970db520ece7/go.mod h1:HzydrMdWErDVzsI23lYNej1Htcns9BCg93Dk0bBINWk= +github.com/open-policy-agent/conftest v0.23.0/go.mod h1:NA6+vKd93pb04H9jiV3WRGJKLj/pzYdQg7XCdoPPUDI= +github.com/open-policy-agent/opa v0.25.2/go.mod h1:iGThTRECCfKQKICueOZkXUi0opN7BR3qiAnIrNHCmlI= +github.com/opencontainers/go-digest v0.0.0-20170106003457-a6d0ee40d420/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= +github.com/opencontainers/go-digest v0.0.0-20180430190053-c9281466c8b2/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= +github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= +github.com/opencontainers/image-spec v1.0.0/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= github.com/opencontainers/image-spec v1.0.2-0.20190823105129-775207bd45b6/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= +github.com/opencontainers/runc v0.0.0-20190115041553-12f6a991201f/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= github.com/opencontainers/runc v0.1.1/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= +github.com/opencontainers/runc v1.0.0-rc10/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= +github.com/opencontainers/runc v1.0.0-rc92/go.mod h1:X1zlU4p7wOlX4+WRCz+hvlRv8phdL7UqbYD+vQwNMmE= +github.com/opencontainers/runtime-spec v0.1.2-0.20190507144316-5b71a03e2700/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= +github.com/opencontainers/runtime-spec v1.0.1/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= +github.com/opencontainers/runtime-spec v1.0.2/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= +github.com/opencontainers/runtime-spec v1.0.3-0.20200728170252-4d89ac9fbff6/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= +github.com/opencontainers/runtime-tools v0.0.0-20181011054405-1d69bd0f9c39/go.mod h1:r3f7wjNzSs2extwzU3Y+6pKfobzPh+kKFJ3ofN+3nfs= +github.com/opencontainers/selinux v1.6.0/go.mod h1:VVGKuOLlE7v4PJyT6h7mNWvq1rzqiriPsEqVhc+svHE= +github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492/go.mod h1:Ngi6UdF0k5OKD5t5wlmGhe/EDKPoUM3BXZSSfIuJbis= +github.com/opentracing-contrib/go-stdlib v1.0.0/go.mod h1:qtI1ogk+2JhVPIXVc6q+NHziSmy2W5GbdQZFUHADCBU= +github.com/opentracing/basictracer-go v1.0.0/go.mod h1:QfBfYuafItcjQuMwinw9GhYKwFXS9KnPs5lxoYwgW74= +github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc= +github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5/go.mod h1:/wsWhb9smxSfWAKL3wpBW7V8scJMt8N8gnaMCS9E/cA= +github.com/openzipkin/zipkin-go v0.1.1/go.mod h1:NtoC/o8u3JlF1lSlyPNswIbeQH9bJTmOf0Erfk+hxe8= +github.com/openzipkin/zipkin-go v0.1.3/go.mod h1:NtoC/o8u3JlF1lSlyPNswIbeQH9bJTmOf0Erfk+hxe8= +github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= +github.com/openzipkin/zipkin-go v0.2.1/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= +github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= +github.com/pact-foundation/pact-go v1.0.4/go.mod h1:uExwJY4kCzNPcHRj+hCR/HBbOOIwwtUjcrb0b5/5kLM= github.com/parnurzeal/gorequest v0.2.16 h1:T/5x+/4BT+nj+3eSknXmCTnEVGSzFzPGdpqmUVVZXHQ= github.com/parnurzeal/gorequest v0.2.16/go.mod h1:3Kh2QUMJoqw3icWAecsyzkpY7UzRfDhbRdTjtNwNiUE= github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= +github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= github.com/pelletier/go-buffruneio v0.2.0/go.mod h1:JkE26KsDizTr40EUHkXVtNPvgGtbSNq5BcowyYOWdKo= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= +github.com/pelletier/go-toml v1.8.0/go.mod h1:D6yutnOGMveHEPV7VQOuvI/gXY61bv+9bAOTRnLElKs= github.com/pelletier/go-toml v1.8.1 h1:1Nf83orprkJyknT6h7zbuEGUEjcyVlCxSUGTENmNCRM= github.com/pelletier/go-toml v1.8.1/go.mod h1:T2/BmBdy8dvIRq1a/8aqjN41wvWlN4lrapLU/GW4pbc= +github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= github.com/peterh/liner v0.0.0-20170211195444-bf27d3ba8e1d/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= -github.com/pkg/errors v0.0.0-20181023235946-059132a15dd0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d/go.mod h1:3OzsM7FXDQlpCiw2j81fOmAwQLnZnLGXVKUzeKQXIAw= +github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2/go.mod h1:iIss55rKnNBTvrwdmkUpLnDpZoAHvWaiq5+iMmen4AE= +github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= +github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.8.1-0.20171018195549-f15c970de5b7/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= +github.com/pkg/profile v1.5.0/go.mod h1:qBsxPvzyUincmltOk6iyRVxHYg4adc0OFOv72ZdLa18= github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021/go.mod h1:prYjPmNq4d1NPVmpShWobRqXY3q7Vp+80DqgxxUrUIA= -github.com/prometheus/client_golang v0.0.0-20181025174421-f30f42803563/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v0.0.0-20180209125602-c332b6f63c06/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v0.8.0/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_golang v1.3.0/go.mod h1:hJaj2vgQTGQmVCsAACORcieXFeDPbaTKGT+JTgUa3og= +github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= +github.com/prometheus/client_model v0.0.0-20171117100541-99fa1f4be8e5/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.0.0-20181020173914-7e9e6cabbd39/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= +github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.0.0-20180110214958-89604d197083/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= +github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= +github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= +github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= +github.com/prometheus/common v0.14.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s= +github.com/prometheus/procfs v0.0.0-20180125133057-cb4147076ac7/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.0-20180725123919-05ee40e3a273/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.0.0-20190522114515-bc1a522cf7b1/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.0.5/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= +github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= +github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= +github.com/prometheus/procfs v0.2.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= +github.com/quasilyte/go-consistent v0.0.0-20190521200055-c6f3937de18c/go.mod h1:5STLWrekHfjyYwxBRVRXNOSewLJ3PWfDJd1VyTS21fI= +github.com/quasilyte/go-ruleguard v0.1.2-0.20200318202121-b00d7a75d3d8/go.mod h1:CGFX09Ci3pq9QZdj86B+VGIdNj4VyCo2iPOGS9esB/k= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/remyoudompheng/bigfft v0.0.0-20170806203942-52369c62f446/go.mod h1:uYEyJGbgTkfkS4+E/PavXkNJcbFIpEtjt2B0KDQ5+9M= github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5 h1:mZHayPoR0lNmnHyvtYjDeq0zlVHn9K/ZXoy17ylucdo= github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5/go.mod h1:GEXHk5HgEKCvEIIrSpFI3ozzG5xOKA2DVlEX/gGnewM= @@ -653,36 +1116,63 @@ github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJ github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= +github.com/rogpeppe/fastuuid v1.1.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-charset v0.0.0-20180617210344-2471d30d28b4/go.mod h1:qgYeAmZ5ZIpBWTGllZSQnw97Dj+woV0toclVaRGI8pc= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/rogpeppe/go-internal v1.5.2/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= +github.com/rogpeppe/testscript v1.1.0/go.mod h1:lzMlnW8LS56mcdJoQYkrlzqOoTFCOemzt5LusJ93bDM= +github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ= github.com/rubiojr/go-vhd v0.0.0-20160810183302-0bfd3b39853c/go.mod h1:DM5xW0nvfNNm2uytzsvhI3OnX8uzaRAg8UX/CnDqbto= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/ryancurrah/gomodguard v1.0.4/go.mod h1:9T/Cfuxs5StfsocWr4WzDL36HqnX0fVb9d5fSEaLhoE= +github.com/ryancurrah/gomodguard v1.1.0/go.mod h1:4O8tr7hBODaGE6VIhfJDHcwzh5GUccKSJBU0UMXJFVM= github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= +github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E= github.com/saracen/walker v0.0.0-20191201085201-324a081bae7e/go.mod h1:G0Z6yVPru183i2MuRJx1DcR4dgIZtLcTdaaE/pC1BJU= +github.com/sassoftware/go-rpmutils v0.0.0-20190420191620-a8f1baeba37b/go.mod h1:am+Fp8Bt506lA3Rk3QCmSqmYmLMnPDhdDUcosQCAx+I= github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww= github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= github.com/sclevine/spec v1.2.0/go.mod h1:W4J29eT/Kzv7/b9IWLB055Z+qvVC9vt0Arko24q7p+U= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= +github.com/seccomp/libseccomp-golang v0.9.1/go.mod h1:GbW5+tmTXfcxTToHLXlScSlAvWlF4P2Ca7zGrPiEpWo= +github.com/securego/gosec v0.0.0-20200103095621-79fbf3af8d83/go.mod h1:vvbZ2Ae7AzSq3/kywjUDxSNq2SJ27RxCz2un0H3ePqE= +github.com/securego/gosec v0.0.0-20200401082031-e946c8c39989/go.mod h1:i9l/TNj+yDFh9SZXUTvspXTjbFXgZGP/UvhU1S65A4A= +github.com/securego/gosec/v2 v2.3.0/go.mod h1:UzeVyUXbxukhLeHKV3VVqo7HdoQR9MrRfFmZYotn8ME= github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= +github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002/go.mod h1:/yeG0My1xr/u+HZrFQ1tOQQQQrOawfyMUH13ai5brBc= +github.com/shirou/gopsutil v0.0.0-20190901111213-e4ec7b275ada/go.mod h1:WWnYX4lzhCH5h/3YBfyVA3VbLYjlMZZAQcW9ojMexNc= +github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4/go.mod h1:qsXQc7+bwAM3Q1u/4XEfrquwF8Lw7D7y5cD8CuHnfIc= +github.com/shteou/go-ignore v0.3.0/go.mod h1:+MO315cnlHh5qKX1xSa41OlWzOuAecXCNwcKUcbL+f0= +github.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e/go.mod h1:TDJrrUr11Vxrven61rcy3hJMUqaf/CLWYhHNPmT14Lk= +github.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041/go.mod h1:N5mDOmsrJOB+vfqUK+7DmDyjhSLIIBnXo9lvZJj3MWQ= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/simplereach/timeutils v1.2.0/go.mod h1:VVbQDfN/FHRZa1LSqcwo4kNZ62OOyqLLGQKYB3pB0Q8= +github.com/sirupsen/logrus v1.0.4-0.20170822132746-89742aefa4b2/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.5.0/go.mod h1:+F7Ogzej0PZc/94MaYx/nvG9jOFMD2osvC3s+Squfpo= -github.com/sirupsen/logrus v1.7.0 h1:ShrD1U9pZB12TX0cVy0DtePoCH97K8EtX+mg7ZARUtM= +github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= +github.com/sirupsen/logrus v1.8.0 h1:nfhvjKcUMhBMVqbKHJlk5RPrrfYr/NMo3692g0dwfWU= +github.com/sirupsen/logrus v1.8.0/go.mod h1:4GuYW9TZmE769R5STWrRakJc4UqQ3+QQ95fyz7ENv1A= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/assertions v1.0.0/go.mod h1:kHHU4qYBaI3q23Pp3VPrmWhuIUrLW/7eUrw0BU5VaoM= github.com/smartystreets/assertions v1.2.0 h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs= github.com/smartystreets/assertions v1.2.0/go.mod h1:tcbTF8ujkAEcZ8TElKY+i30BzYlVhC/LOxJk7iOWnoo= +github.com/smartystreets/go-aws-auth v0.0.0-20180515143844-0c1422d1fdb9/go.mod h1:SnhjPscd9TpLiy1LpzGSKh3bXCfxxXuqd9xmQJy3slM= github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= +github.com/smartystreets/gunit v1.0.0/go.mod h1:qwPWnhz6pn0NnRBP++URONOVyNkPyr4SauJk4cUOwJs= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= +github.com/sony/gobreaker v0.4.1/go.mod h1:ZKptC7FHNvhBz7dN2LGjPVBz2sZJmc0/PkyDJOjmxWY= github.com/sosedoff/gitkit v0.2.0/go.mod h1:A+o6ZazfVJwetlcHz3ah6th66XcBdsyzLo+aBt/AsK4= +github.com/sourcegraph/go-diff v0.5.1/go.mod h1:j2dHj3m8aZgQO8lMTcTnBcXkRRRqi34cd2MNlA9u1mE= +github.com/sourcegraph/go-diff v0.5.3/go.mod h1:v9JDtjCE4HHHCZGId75rg8gkKKa98RVjBcBGsVmMmak= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= @@ -691,7 +1181,7 @@ github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng= github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cobra v0.0.0-20181021141114-fe5e611709b0/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= +github.com/spf13/cobra v0.0.2-0.20171109065643-2da4a54c5cee/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= @@ -702,23 +1192,31 @@ github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb6 github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v0.0.0-20181024212040-082b515c9490/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/pflag v1.0.1-0.20171106142849-4c012f6dcd95/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/pflag v1.0.2/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= +github.com/spf13/viper v1.6.1/go.mod h1:t3iDnF5Jlj76alVNuyFBk5oUMCvsrkbvZK0WQdfDi5k= github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= github.com/spf13/viper v1.7.1 h1:pM5oEahlgWv/WnHXpgbKz7iLIxRf65tye2Ci+XFK5sk= github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= github.com/src-d/gcfg v1.4.0/go.mod h1:p/UMsR43ujA89BJY9duynAwIpvqEujIH/jFlfL7jWoI= +github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI= +github.com/stretchr/objx v0.0.0-20180129172003-8a3f7159479f/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= github.com/stretchr/objx v0.3.0 h1:NGXK3lHquSN08v5vWalVI/L8XU9hdzE/G6xsrze47As= github.com/stretchr/objx v0.3.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= github.com/stretchr/testify v0.0.0-20151208002404-e3a8ff8ce365/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v0.0.0-20180303142811-b89eecf5ca5d/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.2.0/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= @@ -728,32 +1226,78 @@ github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5Cc github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= +github.com/syndtr/gocapability v0.0.0-20170704070218-db04d3cc01c8/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= +github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= github.com/takuzoo3868/go-msfdb v0.1.5 h1:qYTWYM/JVFFR30Y5JsONfhrlXn9//ZcA93aknatPI5Q= github.com/takuzoo3868/go-msfdb v0.1.5/go.mod h1:ThpfHn0SeVo8hVKwhQ2jXoPFq4+auinU5BHcDVKZBpk= +github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07/go.mod h1:kDXzergiv9cbyO7IOYJZWg1U88JhDg3PB6klq9Hg2pA= +github.com/tdakkota/asciicheck v0.0.0-20200416190851-d7f85be797a2/go.mod h1:yHp0ai0Z9gUljN3o0xMhYJnH/IcvkdTBOX2fmJ93JEM= +github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b/go.mod h1:yHp0ai0Z9gUljN3o0xMhYJnH/IcvkdTBOX2fmJ93JEM= github.com/tealeg/xlsx v1.0.5/go.mod h1:btRS8dz54TDnvKNosuAqxrM1QgN1udgk9O34bDCnORM= -github.com/testcontainers/testcontainers-go v0.3.1/go.mod h1:br7bkzIukhPSIjy07Ma3OuXjjFvl2jm7CDU0LQNsqLw= +github.com/testcontainers/testcontainers-go v0.9.1-0.20210218153226-c8e070a2f18d/go.mod h1:NTC1Ek1iJuUfxAM48lR8zKmXQTFIU5uMO12+ECWdIVc= +github.com/tetafro/godot v0.3.7/go.mod h1:/7NLHhv08H1+8DNj0MElpAACw1ajsCuf3TKNQxA5S+0= +github.com/tetafro/godot v0.4.2/go.mod h1:/7NLHhv08H1+8DNj0MElpAACw1ajsCuf3TKNQxA5S+0= +github.com/timakin/bodyclose v0.0.0-20190930140734-f7f2e9bca95e/go.mod h1:Qimiffbc6q9tBWlVV6x0P9sat/ao1xEkREYPPj9hphk= +github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94/go.mod h1:Qimiffbc6q9tBWlVV6x0P9sat/ao1xEkREYPPj9hphk= +github.com/tj/assert v0.0.0-20171129193455-018094318fb0/go.mod h1:mZ9/Rh9oLWpLLDRpvE+3b7gP/C2YyLFYxNmcLnPTMe0= +github.com/tj/go-elastic v0.0.0-20171221160941-36157cbbebc2/go.mod h1:WjeM0Oo1eNAjXGDx2yma7uG2XoyRZTq1uv3M/o7imD0= +github.com/tj/go-kinesis v0.0.0-20171128231115-08b17f58cb1b/go.mod h1:/yhzCV0xPfx6jb1bBgRFjl5lytqVqZXEaeqWP8lTEao= +github.com/tj/go-spin v1.1.0/go.mod h1:Mg1mzmePZm4dva8Qz60H2lHwmJ2loum4VIrLgVnKwh4= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= +github.com/tmccombs/hcl2json v0.3.1/go.mod h1:ljY0/prd2IFUF3cagQjV3cpPEEQKzqyGqnKI7m5DBVY= +github.com/tommy-muehle/go-mnd v1.1.1/go.mod h1:dSUh0FtTP8VhvkL1S+gUR1OKd9ZnSaozuI6r3m6wOig= +github.com/tommy-muehle/go-mnd v1.3.1-0.20200224220436-e6f9a994e8fa/go.mod h1:dSUh0FtTP8VhvkL1S+gUR1OKd9ZnSaozuI6r3m6wOig= +github.com/tonistiigi/fsutil v0.0.0-20201103201449-0834f99b7b85/go.mod h1:a7cilN64dG941IOXfhJhlH0qB92hxJ9A1ewrdUmJ6xo= +github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea/go.mod h1:WPnis/6cRcDZSUvVmezrxJPkiO87ThFYsoUiMwWNDJk= github.com/twitchtv/twirp v5.10.1+incompatible/go.mod h1:RRJoFSAmTEh2weEqWtpPE3vFK5YBhA6bqp2l1kfCC5A= +github.com/uber/jaeger-client-go v2.25.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk= +github.com/uber/jaeger-lib v2.2.0+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U= github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= -github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw= github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= -github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= +github.com/ulikunitz/xz v0.5.6/go.mod h1:2bypXElzHzzJZwzH67Y6wb67pO62Rzfn7BSiF4ABRW8= +github.com/ulikunitz/xz v0.5.7/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= +github.com/ulikunitz/xz v0.5.8/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= +github.com/ultraware/funlen v0.0.2/go.mod h1:Dp4UiAus7Wdb9KUZsYWZEWiRzGuM2kXM1lPbfaF6xhA= +github.com/ultraware/whitespace v0.0.4/go.mod h1:aVMh/gQve5Maj9hQ/hg+F75lr/X5A89uZnzAmWSineA= +github.com/urfave/cli v0.0.0-20171014202726-7bc6a0acffa5/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= +github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/urfave/cli v1.22.2/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/urfave/cli v1.22.5/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/urfave/cli/v2 v2.1.1/go.mod h1:SE9GqnLQmjVa0iPEY0f1w3ygNIYcIJ0OKPMoW2caLfQ= github.com/urfave/cli/v2 v2.2.0/go.mod h1:SE9GqnLQmjVa0iPEY0f1w3ygNIYcIJ0OKPMoW2caLfQ= github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI= +github.com/uudashr/gocognit v1.0.1/go.mod h1:j44Ayx2KW4+oB6SWMv8KsmHzZrOInQav7D3cQMJ5JUM= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= +github.com/valyala/fasthttp v1.2.0/go.mod h1:4vX61m6KN+xDduDNwXrhIAVZaZaZiQ1luJk8LWSxF3s= github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= github.com/valyala/fasttemplate v1.1.0/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= github.com/valyala/fasttemplate v1.2.1 h1:TVEnxayobAdVkhQfrfes2IzOB6o+z4roRkPF52WA1u4= github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= +github.com/valyala/quicktemplate v1.2.0/go.mod h1:EH+4AkTd43SvgIbQHYu59/cJyxDoOVRUAfrukLPuGJ4= +github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio= github.com/vdemeester/k8s-pkg-credentialprovider v1.17.4/go.mod h1:inCTmtUdr5KJbreVojo06krnTgaeAz/Z7lynpPk/Q2c= +github.com/vektah/gqlparser v1.2.0/go.mod h1:bkVf0FX+Stjg/MHnm8mEyubuaArhNEqfQhF+OTiAL74= +github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE= +github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU= +github.com/vmihailenco/msgpack v3.3.3+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk= +github.com/vmihailenco/msgpack/v4 v4.3.12/go.mod h1:gborTTJjAo/GWTqqRjrLCn9pgNN+NXzzngzBKDPIqw4= +github.com/vmihailenco/tagparser v0.1.1/go.mod h1:OeAg3pn3UbLjkWt+rN9oFYB6u/cQgqMEUPoW2WPyhdI= github.com/vmware/govmomi v0.20.3/go.mod h1:URlwyTFZX72RmxtxuaFL2Uj3fD1JTvZdx59bHWk6aFU= github.com/vulsio/go-exploitdb v0.1.7 h1:wdq+6H/PvGGnUiyAaLQ3DtczsLy3rrBQgmNOiXH62z0= github.com/vulsio/go-exploitdb v0.1.7/go.mod h1:4strSWuNtCTz76QB8RuxpMQmYifArGKiHKBFCMOTxY4= +github.com/wasmerio/go-ext-wasm v0.3.1/go.mod h1:VGyarTzasuS7k5KhSIGpM3tciSZlkP31Mp9VJTHMMeI= +github.com/willf/bitset v1.1.10/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= +github.com/willf/bitset v1.1.11-0.20200630133818-d5bec3311243/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= +github.com/xanzy/go-gitlab v0.31.0/go.mod h1:sPLojNBn68fMUWSxIJtdVVIP8uSBYqesTfDUseX11Ug= +github.com/xanzy/go-gitlab v0.32.0/go.mod h1:sPLojNBn68fMUWSxIJtdVVIP8uSBYqesTfDUseX11Ug= github.com/xanzy/ssh-agent v0.2.1/go.mod h1:mLlQY/MoOhWBj+gOGMQkOeiEvkx+8pJSI+0Bx9h2kr4= +github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= +github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= +github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8/go.mod h1:HUYIGzjTL3rfEspMxjDjgmT5uz5wzYJKVo23qUhYTos= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= github.com/yashtewari/glob-intersection v0.0.0-20180916065949-5c77d914dd0b/go.mod h1:HptNXiXVDcJjXe9SqMd0v2FsL9f8dz4GnXgltU6q/co= @@ -764,16 +1308,28 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb/go.mod h1:gqRgreBUhTSL0GeU64rtZ3Uq3wtjOa/TB2YfrtkCbVQ= +github.com/yvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43/go.mod h1:aX5oPXxHm3bOH+xeAttToC8pqch2ScQN/JoXYupl6xs= +github.com/yvasiyarov/gorelic v0.0.0-20141212073537-a9bba5b9ab50/go.mod h1:NUSPSUX/bi6SeDMUh6brw0nXpxHnc96TguQh0+r/ssA= +github.com/yvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f/go.mod h1:GlGEuHIJweS1mbCqG+7vt2nvWLzLLnRHbXz5JKd/Qbg= +github.com/zclconf/go-cty v1.2.0/go.mod h1:hOPWgoHbaTUnI5k4D2ld+GRpFJSCe6bCM7m1q/N4PQ8= +github.com/zclconf/go-cty v1.6.1/go.mod h1:VDR4+I79ubFBGm1uJac1226K5yANQFHeauxPBoP54+o= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.5 h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0= go.etcd.io/bbolt v1.3.5/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ= go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= +go.opencensus.io v0.15.0/go.mod h1:UffZAU+4sDEINUGP/B7UfBBkq4fqLu9zXAX7ke6CHW0= +go.opencensus.io v0.18.0/go.mod h1:vKdFvxhtzZ9onBp9VKHK8z/sRpBMnKAsufL7wlDrCOA= +go.opencensus.io v0.19.1/go.mod h1:gug0GbSHa8Pafr0d2urOSgoXHZ6x/RUlaiT0d9pqb4A= +go.opencensus.io v0.19.2/go.mod h1:NO/8qkisMZLZ1FCsKNqtJPwc8/TaclWyY0B6wcYNg9M= +go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= +go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.6/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opentelemetry.io/otel v0.14.0/go.mod h1:vH5xEuwy7Rts0GNtsCW3HYQoZDY+OmBJ6t1bFGGlxgw= go.opentelemetry.io/otel v0.16.0/go.mod h1:e4GKElweB8W2gWUqbghw0B8t5MCTccc9212eNHnOHwA= go.opentelemetry.io/otel v0.19.0 h1:Lenfy7QHRXPZVsw/12CWpxX6d/JkrX8wrx2vO8G80Ng= @@ -787,37 +1343,47 @@ go.opentelemetry.io/otel/trace v0.19.0/go.mod h1:4IXiNextNOpPnRlI4ryK69mn5iC84bj go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= -go.uber.org/atomic v1.5.1 h1:rsqfU5vBkVknbhUGbAUwQKR2H4ItV8tjJ+6kJX4cxHM= -go.uber.org/atomic v1.5.1/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= +go.uber.org/atomic v1.6.0 h1:Ezj3JGmsOnG1MoRWQkPBsKLe9DwWD9QeXzTRzzldNVk= +go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= -go.uber.org/multierr v1.4.0 h1:f3WCSC2KzAcBXGATIxAB1E2XuCpNU255wNKZ505qi3E= -go.uber.org/multierr v1.4.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= +go.uber.org/multierr v1.5.0 h1:KCa4XfM8CWFCpxXRGok+Q0SS/0XBhMDbHHGABQLvD2A= +go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU= go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee h1:0mgffUl7nfd+FpvXMVz4IDEaUSmT1ysygQC7qYo7sG4= go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -go.uber.org/zap v1.13.0 h1:nR6NoDBgAf67s68NhaXbsojM+2gxp3S1hWkHDl27pVU= go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= +go.uber.org/zap v1.16.0 h1:uFRZXykJGK9lLY4HtgSw44DnIcAM+kRBP7x5m+NpAOM= +go.uber.org/zap v1.16.0/go.mod h1:MA8QOfq0BHJwdXa996Y4dYkAqRKB8/1K1QMMZVaNZjQ= +go4.org v0.0.0-20180809161055-417644f6feb5/go.mod h1:MkTOUMDaeVYJUOUsaDXIhWPZYa1yOyC1qaOBpL57BhE= +gocloud.dev v0.19.0/go.mod h1:SmKwiR8YwIMMJvQBKLsC3fHNyMwXLw3PMDO+VVteJMI= +golang.org/x/build v0.0.0-20190314133821-5284462c4bec/go.mod h1:atTaCNAy0f16Ah5aV1gMSwgiKVHwu/JncqDpuRr7lS4= +golang.org/x/crypto v0.0.0-20171113213409-9f005a07e0d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190219172222-a4c6cb3142f2/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20191002192127-34f69633bfdc/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191205180655-e7c4368fe9dd/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200128174031-69ecbb4d6d5d/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b h1:7mWr3k41Qtv8XlltBkDkl8LoP3mpSgBW8BUoxtEdbXg= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= @@ -835,8 +1401,9 @@ golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EH golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/lint v0.0.0-20181023182221-1baf3a9d7d67/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20181217174547-8f45f776aaf1/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= @@ -860,13 +1427,19 @@ golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20170114055629-f2499483f923/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180811021610-c39426892332/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180911220305-26e67e76b6c3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181029044818-c44066c5c816/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181106065722-10aee1819953/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181108082009-03003ca0c849/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= @@ -875,12 +1448,15 @@ golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190619014844-b5b0513f8c1b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191004110552-13f9640d40b9/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20191112182307-2180aed22343/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -896,23 +1472,31 @@ golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/ golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200927032502-5d4f70055728/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 h1:DzZ89McO9/gWPsQXS/FVKAlG02ZjaQ6AlZRBimEYOd0= golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk= +golang.org/x/oauth2 v0.0.0-20180724155351-3d292e4d0cdc/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210125201302-af13f521f196 h1:w0u30BeG/TALEc6xVf1Klaz2+etRR4K6jxhRkWCqt4g= golang.org/x/oauth2 v0.0.0-20210125201302-af13f521f196/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/perf v0.0.0-20180704124530-6e6d33e29852/go.mod h1:JLpeXjPJfIyPr5TlbXLkXWLhP8nz10XfvxElABhCtcw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -922,15 +1506,20 @@ golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ= +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181029174526-d69651ed3497/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181218192612-074acd46bca6/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190204203706-41f3e6584952/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190209173611-3b5209105503/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -940,9 +1529,14 @@ golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190502175342-a43fa875dd82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190602015325-4c4f7f33c9ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190606203320-7fc4e5ec1444/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190620070143-6f217b454f45/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -950,18 +1544,27 @@ golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190922100055-0a153f010e69/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191010194322-b09406accb47/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191022100944-742c48ecaeb7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191112214154-59a1497f0cea/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191115151921-52ab43148777/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191128015809-6d18c012aee9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191210023423-ac6580df4449/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200120151820-655fe14d7479/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -974,16 +1577,26 @@ golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200622214017-ed371f2e16b4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200831180312-196b9ba8737a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200916030750-2334cc1a136f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200917073148-efd3b9a0ff20/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200922070232-aee5d888a860/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201006155630-ac719f4daadf/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201013081832-0aaa2718063a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210113181707-4bcb84eeeb78/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210426230700-d19ff857e887 h1:dXfMednGJh/SUUFjTLsWJz3P+TQt9qnR11GgeI3vWKs= golang.org/x/sys v0.0.0-20210426230700-d19ff857e887/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1003,48 +1616,66 @@ golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxb golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20180810170437-e96c4e24768d/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181011042414-1f849cf54d09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20181117154741-2ddaf7f79a09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20181219222714-6e267b5cc78e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190110163146-51295c7ec13a/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190125232054-d66bd3c5d5a6/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190221204921-83362c3779f5/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190311215038-5c2858a9cfe5/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190322203728-c1a832b0ad89/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190422233926-fe54fb35175b/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190521203540-521d6ed310dd/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190614205625-5aca471b1d59/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190624222133-a101b041ded4/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190706070813-72ffa07ba3db/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI= +golang.org/x/tools v0.0.0-20190719005602-e377ae9d6386/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI= golang.org/x/tools v0.0.0-20190729092621-ff9f1409240a/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190910044552-dd2b5c81c578/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190920225731-5eefd052ad72/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191011211836-4c025a95b26e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191113232020-e2727e816f5a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191127201027-ecd32218bd7f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200102140908-9497f49d5709/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200204192400-7124308813f3/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200210192313-1ace956b0e17/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= @@ -1052,15 +1683,24 @@ golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapK golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200324003944-a576cf524670/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= +golang.org/x/tools v0.0.0-20200331202046-9d5940d49312/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200414032229-332987a829c3/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200422022333-3d57cf2e726e/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200426102838-f3a5411a4c3b/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200502202811-ed308ab3e770/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20201009032223-96877f285f7e/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0 h1:po9/4sTYwZU9lPhi1tOrb4hCv3qrhiQ77LZfGa2OjwY= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1071,7 +1711,16 @@ golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8T gonum.org/v1/gonum v0.0.0-20190331200053-3d26580ed485/go.mod h1:2ltnJ7xHfj0zHS40VVPYEAAMTa3ZGguvHGBSJeRWqE0= gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= gonum.org/v1/netlib v0.0.0-20190331212654-76723241ea4e/go.mod h1:kS+toOQn6AQKjmKJ7gzohV1XkqsFehRA2FbsbkopSuQ= +google.golang.org/api v0.0.0-20160322025152-9bf6e6e569ff/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= +google.golang.org/api v0.0.0-20180910000450-7ca32eb868bf/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= +google.golang.org/api v0.0.0-20181030000543-1d582fd0359e/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= +google.golang.org/api v0.0.0-20181220000619-583d854617af/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= +google.golang.org/api v0.2.0/go.mod h1:IfRCZScioGtypHNTlz3gFk67J8uePVW7uDTBzXuIkhU= +google.golang.org/api v0.3.0/go.mod h1:IuvZyQh8jgscv8qWfQ4ABd8m7hEudgBFM/EdhA3BnXw= +google.golang.org/api v0.3.1/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.6.0/go.mod h1:btoxGiFvQNVUZQ8W08zLtrVS08CNpINPEfxXxgJL1Q4= google.golang.org/api v0.6.1-0.20190607001116-5213b8090861/go.mod h1:btoxGiFvQNVUZQ8W08zLtrVS08CNpINPEfxXxgJL1Q4= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -1085,22 +1734,31 @@ google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/ google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.25.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.3.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.6 h1:lMO5rYAqUxkmaj76jAkRUvt5JZgFymx/+Q5Mzfivuhc= google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/cloud v0.0.0-20151119220103-975617b05ea8/go.mod h1:0H1ncTHf11KCFhTc/+EFRbzSCOZx+VUbRMk55Yv5MYk= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20181029155118-b69ba1387ce2/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20181219182458-5a97ab628bfb/go.mod h1:7Ep/1NZk928CDR8SjdVbjWNpdIf6nzjE3BTgJDr2Atg= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190508193815-b515fa19cec8/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190530194941-fb225487d101/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s= +google.golang.org/genproto v0.0.0-20190620144150-6af8c5fc6601/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s= google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= @@ -1109,6 +1767,7 @@ google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvx google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= @@ -1121,15 +1780,22 @@ google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210219173056-d891e3cb3b5b/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/grpc v0.0.0-20160317175043-d3ddb4469d5a/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= +google.golang.org/grpc v1.14.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= +google.golang.org/grpc v1.16.0/go.mod h1:0JHn/cJsOMiMfNA9+DeHDlAU7KAAB5GDlYFpa9MZMio= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.22.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.24.0/go.mod h1:XDChyiUovWa60DnaeDeZmSW86xtLtjtZbwvSiRnRtcA= @@ -1141,6 +1807,8 @@ google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKa google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= +google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -1152,26 +1820,30 @@ google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpAD google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0 h1:Ejskq+SyPohKW+1uil0JJMtmHCgJPJ/qWTxr8qp+R4c= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20141024133853-64131543e789/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b h1:QRR6H1YWRnHb4Y/HeNFCTJLFVxaq6wH4YuVdsUOr75U= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= +gopkg.in/cheggaaa/pb.v1 v1.0.27/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/cheggaaa/pb.v1 v1.0.28 h1:n1tBJnnK2r7g9OW2btFH91V92STTUevLXYFb8gy9EMk= gopkg.in/cheggaaa/pb.v1 v1.0.28/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/gcfg.v1 v1.2.0/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= +gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= +gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod h1:Xk6kEKp8OKb+X14hQBKWaSkCsqBpgog8nAV2xsGOxlo= gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE= -gopkg.in/go-playground/validator.v9 v9.29.1/go.mod h1:+c9/zcJMFNgbLvly1L1V+PpxWdVbfP1avr/N00E2vyQ= gopkg.in/go-playground/validator.v9 v9.30.0/go.mod h1:+c9/zcJMFNgbLvly1L1V+PpxWdVbfP1avr/N00E2vyQ= -gopkg.in/go-playground/validator.v9 v9.31.0 h1:bmXmP2RSNtFES+bn4uYuHT7iJFJv7Vj+an+ZQdDaD1M= gopkg.in/go-playground/validator.v9 v9.31.0/go.mod h1:+c9/zcJMFNgbLvly1L1V+PpxWdVbfP1avr/N00E2vyQ= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.56.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.62.0 h1:duBzk771uxoUuOlyRLkHsygud9+5lrlGjdFBb4mSKDU= gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce/go.mod h1:yeKp02qBN3iKW1OzL3MGk2IdtZzaj7SFntXj72NppTA= @@ -1190,41 +1862,61 @@ gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ= gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gotest.tools v0.0.0-20181223230014-1083505acf35/go.mod h1:R//lfYlUuTOTfblYI3lGoAAAebUdzjvbmQsuB7Ykd90= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= +gotest.tools/v3 v3.0.2/go.mod h1:3SzNCllyD9/Y+b5r9JIKQ474KzkZyqLqEfYqMsX94Bk= +grpc.go4.org v0.0.0-20170609214715-11d0a25b4919/go.mod h1:77eQGdRu53HpSqPFJFmuJdjuHRquDANNeA4x7B8WQ9o= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20180920025451-e3ad64cb4ed3/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.0.1-2020.1.4 h1:UoveltGrhghAA7ePc+e+QYDHXrBps2PqFZiHkGR/xK8= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.0.1-2020.1.5 h1:nI5egYTGJakVyOryqLs1cQO5dO0ksin5XXs2pspk75k= +honnef.co/go/tools v0.0.1-2020.1.5/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +k8s.io/api v0.0.0-20180904230853-4e7be11eab3f/go.mod h1:iuAfoD4hCxJ8Onx9kaTIt30j7jUFS00AXQi6QMi99vA= k8s.io/api v0.17.4/go.mod h1:5qxx6vjmwUVG2nHQTKGlLts8Tbok8PzHl4vHtVFuZCA= +k8s.io/api v0.19.0/go.mod h1:I1K45XlvTrDjmj5LoM5LuP/KYrhWbjUKT/SoPG0qTjw= +k8s.io/apimachinery v0.0.0-20180904193909-def12e63c512/go.mod h1:ccL7Eh7zubPUSh9A3USN90/OzHNSVN6zxzde07TDCL0= k8s.io/apimachinery v0.17.4/go.mod h1:gxLnyZcGNdZTCLnq3fgzyg2A5BVCHTNDFrw8AmuJ+0g= +k8s.io/apimachinery v0.19.0/go.mod h1:DnPGDnARWFvYa3pMHgSxtbZb7gpzzAZ1pTfaUNDVlmA= k8s.io/apiserver v0.17.4/go.mod h1:5ZDQ6Xr5MNBxyi3iUZXS84QOhZl+W7Oq2us/29c0j9I= +k8s.io/client-go v0.0.0-20180910083459-2cefa64ff137/go.mod h1:7vJpHMYJwNQCWgzmNV+VYUl1zCObLyodBc8nIyt8L5s= k8s.io/client-go v0.17.4/go.mod h1:ouF6o5pz3is8qU0/qYL2RnoxOPqgfuidYLowytyLJmc= +k8s.io/client-go v0.19.0/go.mod h1:H9E/VT95blcFQnlyShFgnFT9ZnJOAceiUHM3MlRC+mU= k8s.io/cloud-provider v0.17.4/go.mod h1:XEjKDzfD+b9MTLXQFlDGkk6Ho8SGMpaU8Uugx/KNK9U= k8s.io/code-generator v0.17.2/go.mod h1:DVmfPQgxQENqDIzVR2ddLXMH34qeszkKSdH/N+s+38s= k8s.io/component-base v0.17.4/go.mod h1:5BRqHMbbQPm2kKu35v3G+CpVq4K0RJKC7TRioF0I9lE= +k8s.io/cri-api v0.17.3/go.mod h1:X1sbHmuXhwaHs9xxYffLqJogVsnI+f6cPRcgPel7ywM= k8s.io/csi-translation-lib v0.17.4/go.mod h1:CsxmjwxEI0tTNMzffIAcgR9lX4wOh6AKHdxQrT7L0oo= k8s.io/gengo v0.0.0-20190128074634-0689ccc1d7d6/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= k8s.io/gengo v0.0.0-20190822140433-26a664648505/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= +k8s.io/gengo v0.0.0-20200413195148-3a45101e95ac/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= k8s.io/klog v0.0.0-20181102134211-b9b56d5dfc92/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= k8s.io/klog v0.3.0/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= k8s.io/klog v1.0.0/go.mod h1:4Bi6QPql/J/LkTDqv7R/cd3hPo4k2DG6Ptcz060Ez5I= k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE= +k8s.io/klog/v2 v2.2.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y= +k8s.io/kube-openapi v0.0.0-20180731170545-e3762e86a74c/go.mod h1:BXM9ceUBTj2QnfH2MK1odQs778ajze1RxcmP6S8RVVc= k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a/go.mod h1:1TqjTSzOxsLGIKfj0lK8EeCP7K1iUG65v09OM0/WG5E= +k8s.io/kube-openapi v0.0.0-20200805222855-6aeccd4b50c6/go.mod h1:UuqjUnNftUyPE5H64/qeyjQoUZhGpeFDVdxjTeEVN2o= +k8s.io/kubernetes v1.11.10/go.mod h1:ocZa8+6APFNC2tX1DZASIbocyYT5jHzqFVsY5aoB7Jk= +k8s.io/kubernetes v1.13.0/go.mod h1:ocZa8+6APFNC2tX1DZASIbocyYT5jHzqFVsY5aoB7Jk= k8s.io/legacy-cloud-providers v0.17.4/go.mod h1:FikRNoD64ECjkxO36gkDgJeiQWwyZTuBkhu+yxOc1Js= k8s.io/utils v0.0.0-20191114184206-e782cd3c129f/go.mod h1:sZAwmy6armz5eXlNoLmJcl4F1QuKu7sr+mFQ0byX7Ew= +k8s.io/utils v0.0.0-20200729134348-d5654de09c73/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= k8s.io/utils v0.0.0-20210111153108-fddb29f9d009 h1:0T5IaWHO3sJTEmCP6mUlBvMukxPKUQWqiI/YuiBNMiQ= k8s.io/utils v0.0.0-20210111153108-fddb29f9d009/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= @@ -1235,9 +1927,21 @@ modernc.org/strutil v1.0.0/go.mod h1:lstksw84oURvj9y3tn8lGvRxyRC1S2+g5uuIzNfIOBs modernc.org/xc v1.0.0/go.mod h1:mRNCo0bvLjGhHO9WsyuKVU4q0ceiDDDoEeWDJHrNx8I= moul.io/http2curl v1.0.0 h1:6XwpyZOYsgZJrU8exnG87ncVkU1FVCcTRpwzOkTDUi8= moul.io/http2curl v1.0.0/go.mod h1:f6cULg+e4Md/oW1cYmwW4IWQOVl2lGbmCNGOHvzX2kE= +mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed/go.mod h1:Xkxe497xwlCKkIaQYRfC7CSLworTXY9RMqwhhCm+8Nc= +mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b/go.mod h1:2odslEg/xrtNQqCYg2/jCoyKnw3vv5biOc3JnIcYfL4= +mvdan.cc/unparam v0.0.0-20190720180237-d51796306d8f/go.mod h1:4G1h5nDURzA3bwVMZIVpwbkw+04kSxk3rAtzlimaUJw= +mvdan.cc/unparam v0.0.0-20200501210554-b37ab49443f7/go.mod h1:HGC5lll35J70Y5v7vCGb9oLhHoScFwkHDJm/05RdSTc= +olympos.io/encoding/edn v0.0.0-20200308123125-93e3b8dd0e24/go.mod h1:oVgVk4OWVDi43qWBEyGhXgYxt7+ED4iYNpTngSLX2Iw= +pack.ag/amqp v0.11.2/go.mod h1:4/cbmt4EJXSKlG6LCfWHoqmN0uFdy5i/+YFz+fTfhV4= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +rsc.io/letsencrypt v0.0.3/go.mod h1:buyQKZ6IXrRnB7TdkHP0RyEybLx18HHyOSoTyoOLqNY= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= sigs.k8s.io/structured-merge-diff v1.0.1-0.20191108220359-b1b620dd3f06/go.mod h1:/ULNhyfzRopfcjskuui0cTITekDduZ7ycKN3oUT9R18= +sigs.k8s.io/structured-merge-diff/v4 v4.0.1/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= +sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc= +sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0/go.mod h1:hI742Nqp5OhwiqlzhgfbWU4mW4yO10fP+LoT9WOswdU= +sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod h1:ketZ/q3QxT9HOBeFhu6RdvsftgpsbFHBF5Cas6cDKZ0= +sourcegraph.com/sqs/pbtypes v1.0.0/go.mod h1:3AciMUv4qUuRHRHhOG4TZOB+72GdPVz5k+c648qsFS4= diff --git a/integration/data/amazon_2.json b/integration/data/amazon_2.json deleted file mode 100755 index d3269600..00000000 --- a/integration/data/amazon_2.json +++ /dev/null @@ -1,6534 +0,0 @@ -{ - "jsonVersion": 4, - "lang": "", - "serverUUID": "", - "serverName": "amazon_2", - "family": "amazon", - "release": "2 (Karoo)", - "container": { - "containerID": "", - "name": "", - "image": "", - "type": "", - "uuid": "" - }, - "platform": { - "name": "aws", - "instanceID": "i-048327c9df8186148" - }, - "ipv4Addrs": [ - "192.168.0.33" - ], - "scannedAt": "2021-03-24T16:12:58.527243903+09:00", - "scanMode": "fast-root mode", - "scannedVersion": "v0.15.9", - "scannedRevision": "build-20210324_121008_fc3b438", - "scannedBy": "dev", - "scannedVia": "remote", - "scannedIpv4Addrs": [ - "172.21.0.1", - "172.19.0.1", - "172.18.0.1", - "172.17.0.1", - "172.20.0.1" - ], - "reportedAt": "0001-01-01T00:00:00Z", - "reportedVersion": "", - "reportedRevision": "", - "reportedBy": "", - "errors": [], - "warnings": [], - "scannedCves": {}, - "runningKernel": { - "release": "4.14.225-168.357.amzn2.x86_64", - "version": "", - "rebootRequired": false - }, - "packages": { - "GeoIP": { - "name": "GeoIP", - "version": "1.5.0", - "release": "11.amzn2.0.2", - "newVersion": "1.5.0", - "newRelease": "11.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "PyYAML": { - "name": "PyYAML", - "version": "3.10", - "release": "11.amzn2.0.2", - "newVersion": "3.10", - "newRelease": "11.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "acl": { - "name": "acl", - "version": "2.2.51", - "release": "14.amzn2", - "newVersion": "2.2.51", - "newRelease": "14.amzn2", - "arch": "x86_64", - "repository": "" - }, - "acpid": { - "name": "acpid", - "version": "2.0.19", - "release": "9.amzn2.0.1", - "newVersion": "2.0.19", - "newRelease": "9.amzn2.0.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3243", - "name": "acpid" - } - ] - }, - "amazon-linux-extras": { - "name": "amazon-linux-extras", - "version": "2.0.0", - "release": "1.amzn2", - "newVersion": "2.0.0", - "newRelease": "1.amzn2", - "arch": "noarch", - "repository": "" - }, - "amazon-linux-extras-yum-plugin": { - "name": "amazon-linux-extras-yum-plugin", - "version": "2.0.0", - "release": "1.amzn2", - "newVersion": "2.0.0", - "newRelease": "1.amzn2", - "arch": "noarch", - "repository": "" - }, - "amazon-ssm-agent": { - "name": "amazon-ssm-agent", - "version": "3.0.161.0", - "release": "1.amzn2", - "newVersion": "3.0.161.0", - "newRelease": "1.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3213", - "name": "ssm-agent-worke" - }, - { - "pid": "3031", - "name": "amazon-ssm-agen" - } - ] - }, - "at": { - "name": "at", - "version": "3.1.13", - "release": "24.amzn2", - "newVersion": "3.1.13", - "newRelease": "24.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3057", - "name": "atd" - } - ] - }, - "attr": { - "name": "attr", - "version": "2.4.46", - "release": "12.amzn2.0.2", - "newVersion": "2.4.46", - "newRelease": "12.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "audit": { - "name": "audit", - "version": "2.8.1", - "release": "3.amzn2.1", - "newVersion": "2.8.1", - "newRelease": "3.amzn2.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2443", - "name": "auditd" - } - ] - }, - "audit-libs": { - "name": "audit-libs", - "version": "2.8.1", - "release": "3.amzn2.1", - "newVersion": "2.8.1", - "newRelease": "3.amzn2.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "2443", - "name": "auditd" - }, - { - "pid": "3057", - "name": "atd" - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3050", - "name": "crond" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "authconfig": { - "name": "authconfig", - "version": "6.2.8", - "release": "30.amzn2.0.2", - "newVersion": "6.2.8", - "newRelease": "30.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "aws-cfn-bootstrap": { - "name": "aws-cfn-bootstrap", - "version": "1.4", - "release": "34.amzn2", - "newVersion": "1.4", - "newRelease": "34.amzn2", - "arch": "noarch", - "repository": "" - }, - "awscli": { - "name": "awscli", - "version": "1.18.147", - "release": "1.amzn2.0.1", - "newVersion": "1.18.147", - "newRelease": "1.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "basesystem": { - "name": "basesystem", - "version": "10.0", - "release": "7.amzn2.0.1", - "newVersion": "10.0", - "newRelease": "7.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "bash": { - "name": "bash", - "version": "4.2.46", - "release": "34.amzn2", - "newVersion": "4.2.46", - "newRelease": "34.amzn2", - "arch": "x86_64", - "repository": "" - }, - "bash-completion": { - "name": "bash-completion", - "version": "1:2.1", - "release": "6.amzn2", - "newVersion": "1:2.1", - "newRelease": "6.amzn2", - "arch": "noarch", - "repository": "" - }, - "bc": { - "name": "bc", - "version": "1.06.95", - "release": "13.amzn2.0.2", - "newVersion": "1.06.95", - "newRelease": "13.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "bind-export-libs": { - "name": "bind-export-libs", - "version": "32:9.11.4", - "release": "26.P2.amzn2.4", - "newVersion": "32:9.11.4", - "newRelease": "26.P2.amzn2.4", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "bind-libs": { - "name": "bind-libs", - "version": "32:9.11.4", - "release": "26.P2.amzn2.4", - "newVersion": "32:9.11.4", - "newRelease": "26.P2.amzn2.4", - "arch": "x86_64", - "repository": "" - }, - "bind-libs-lite": { - "name": "bind-libs-lite", - "version": "32:9.11.4", - "release": "26.P2.amzn2.4", - "newVersion": "32:9.11.4", - "newRelease": "26.P2.amzn2.4", - "arch": "x86_64", - "repository": "" - }, - "bind-license": { - "name": "bind-license", - "version": "32:9.11.4", - "release": "26.P2.amzn2.4", - "newVersion": "32:9.11.4", - "newRelease": "26.P2.amzn2.4", - "arch": "noarch", - "repository": "" - }, - "bind-utils": { - "name": "bind-utils", - "version": "32:9.11.4", - "release": "26.P2.amzn2.4", - "newVersion": "32:9.11.4", - "newRelease": "26.P2.amzn2.4", - "arch": "x86_64", - "repository": "" - }, - "binutils": { - "name": "binutils", - "version": "2.29.1", - "release": "30.amzn2", - "newVersion": "2.29.1", - "newRelease": "30.amzn2", - "arch": "x86_64", - "repository": "" - }, - "blktrace": { - "name": "blktrace", - "version": "1.0.5", - "release": "9.amzn2", - "newVersion": "1.0.5", - "newRelease": "9.amzn2", - "arch": "x86_64", - "repository": "" - }, - "boost-date-time": { - "name": "boost-date-time", - "version": "1.53.0", - "release": "27.amzn2.0.5", - "newVersion": "1.53.0", - "newRelease": "27.amzn2.0.5", - "arch": "x86_64", - "repository": "" - }, - "boost-system": { - "name": "boost-system", - "version": "1.53.0", - "release": "27.amzn2.0.5", - "newVersion": "1.53.0", - "newRelease": "27.amzn2.0.5", - "arch": "x86_64", - "repository": "" - }, - "boost-thread": { - "name": "boost-thread", - "version": "1.53.0", - "release": "27.amzn2.0.5", - "newVersion": "1.53.0", - "newRelease": "27.amzn2.0.5", - "arch": "x86_64", - "repository": "" - }, - "bridge-utils": { - "name": "bridge-utils", - "version": "1.5", - "release": "9.amzn2.0.2", - "newVersion": "1.5", - "newRelease": "9.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "bzip2": { - "name": "bzip2", - "version": "1.0.6", - "release": "13.amzn2.0.2", - "newVersion": "1.0.6", - "newRelease": "13.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "bzip2-libs": { - "name": "bzip2-libs", - "version": "1.0.6", - "release": "13.amzn2.0.2", - "newVersion": "1.0.6", - "newRelease": "13.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "2491", - "name": "chronyd" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "ca-certificates": { - "name": "ca-certificates", - "version": "2020.2.41", - "release": "70.0.amzn2.0.1", - "newVersion": "2020.2.41", - "newRelease": "70.0.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "chkconfig": { - "name": "chkconfig", - "version": "1.7.4", - "release": "1.amzn2.0.2", - "newVersion": "1.7.4", - "newRelease": "1.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "chrony": { - "name": "chrony", - "version": "3.5.1", - "release": "1.amzn2.0.1", - "newVersion": "3.5.1", - "newRelease": "1.amzn2.0.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2491", - "name": "chronyd" - } - ] - }, - "cloud-init": { - "name": "cloud-init", - "version": "19.3", - "release": "43.amzn2", - "newVersion": "19.3", - "newRelease": "43.amzn2", - "arch": "noarch", - "repository": "" - }, - "cloud-utils-growpart": { - "name": "cloud-utils-growpart", - "version": "0.31", - "release": "2.amzn2", - "newVersion": "0.31", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "coreutils": { - "name": "coreutils", - "version": "8.22", - "release": "24.amzn2", - "newVersion": "8.22", - "newRelease": "24.amzn2", - "arch": "x86_64", - "repository": "" - }, - "cpio": { - "name": "cpio", - "version": "2.11", - "release": "28.amzn2", - "newVersion": "2.11", - "newRelease": "28.amzn2", - "arch": "x86_64", - "repository": "" - }, - "cracklib": { - "name": "cracklib", - "version": "2.9.0", - "release": "11.amzn2.0.2", - "newVersion": "2.9.0", - "newRelease": "11.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "3330", - "name": "sshd" - } - ] - }, - "cracklib-dicts": { - "name": "cracklib-dicts", - "version": "2.9.0", - "release": "11.amzn2.0.2", - "newVersion": "2.9.0", - "newRelease": "11.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "cronie": { - "name": "cronie", - "version": "1.4.11", - "release": "23.amzn2", - "newVersion": "1.4.11", - "newRelease": "23.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3050", - "name": "crond" - } - ] - }, - "cronie-anacron": { - "name": "cronie-anacron", - "version": "1.4.11", - "release": "23.amzn2", - "newVersion": "1.4.11", - "newRelease": "23.amzn2", - "arch": "x86_64", - "repository": "" - }, - "crontabs": { - "name": "crontabs", - "version": "1.11", - "release": "6.20121102git.amzn2", - "newVersion": "1.11", - "newRelease": "6.20121102git.amzn2", - "arch": "noarch", - "repository": "" - }, - "cryptsetup": { - "name": "cryptsetup", - "version": "1.7.4", - "release": "4.amzn2", - "newVersion": "1.7.4", - "newRelease": "4.amzn2", - "arch": "x86_64", - "repository": "" - }, - "cryptsetup-libs": { - "name": "cryptsetup-libs", - "version": "1.7.4", - "release": "4.amzn2", - "newVersion": "1.7.4", - "newRelease": "4.amzn2", - "arch": "x86_64", - "repository": "" - }, - "curl": { - "name": "curl", - "version": "7.61.1", - "release": "12.amzn2.0.2", - "newVersion": "7.61.1", - "newRelease": "12.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "cyrus-sasl-lib": { - "name": "cyrus-sasl-lib", - "version": "2.1.26", - "release": "23.amzn2", - "newVersion": "2.1.26", - "newRelease": "23.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "cyrus-sasl-plain": { - "name": "cyrus-sasl-plain", - "version": "2.1.26", - "release": "23.amzn2", - "newVersion": "2.1.26", - "newRelease": "23.amzn2", - "arch": "x86_64", - "repository": "" - }, - "dbus": { - "name": "dbus", - "version": "1:1.10.24", - "release": "7.amzn2", - "newVersion": "1:1.10.24", - "newRelease": "7.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2480", - "name": "dbus-daemon" - } - ] - }, - "dbus-libs": { - "name": "dbus-libs", - "version": "1:1.10.24", - "release": "7.amzn2", - "newVersion": "1:1.10.24", - "newRelease": "7.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2480", - "name": "dbus-daemon" - } - ] - }, - "device-mapper": { - "name": "device-mapper", - "version": "7:1.02.146", - "release": "4.amzn2.0.2", - "newVersion": "7:1.02.146", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "device-mapper-event": { - "name": "device-mapper-event", - "version": "7:1.02.146", - "release": "4.amzn2.0.2", - "newVersion": "7:1.02.146", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "device-mapper-event-libs": { - "name": "device-mapper-event-libs", - "version": "7:1.02.146", - "release": "4.amzn2.0.2", - "newVersion": "7:1.02.146", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "device-mapper-libs": { - "name": "device-mapper-libs", - "version": "7:1.02.146", - "release": "4.amzn2.0.2", - "newVersion": "7:1.02.146", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1693", - "name": "lvmetad" - } - ] - }, - "device-mapper-persistent-data": { - "name": "device-mapper-persistent-data", - "version": "0.7.3", - "release": "3.amzn2", - "newVersion": "0.7.3", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "" - }, - "dhclient": { - "name": "dhclient", - "version": "12:4.2.5", - "release": "77.amzn2.1.1", - "newVersion": "12:4.2.5", - "newRelease": "77.amzn2.1.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "dhcp-common": { - "name": "dhcp-common", - "version": "12:4.2.5", - "release": "77.amzn2.1.1", - "newVersion": "12:4.2.5", - "newRelease": "77.amzn2.1.1", - "arch": "x86_64", - "repository": "" - }, - "dhcp-libs": { - "name": "dhcp-libs", - "version": "12:4.2.5", - "release": "77.amzn2.1.1", - "newVersion": "12:4.2.5", - "newRelease": "77.amzn2.1.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "diffutils": { - "name": "diffutils", - "version": "3.3", - "release": "5.amzn2", - "newVersion": "3.3", - "newRelease": "5.amzn2", - "arch": "x86_64", - "repository": "" - }, - "dmidecode": { - "name": "dmidecode", - "version": "1:3.0", - "release": "5.amzn2.0.2", - "newVersion": "1:3.0", - "newRelease": "5.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "dmraid": { - "name": "dmraid", - "version": "1.0.0.rc16", - "release": "28.amzn2.0.2", - "newVersion": "1.0.0.rc16", - "newRelease": "28.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "dmraid-events": { - "name": "dmraid-events", - "version": "1.0.0.rc16", - "release": "28.amzn2.0.2", - "newVersion": "1.0.0.rc16", - "newRelease": "28.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "dosfstools": { - "name": "dosfstools", - "version": "3.0.20", - "release": "10.amzn2", - "newVersion": "3.0.20", - "newRelease": "10.amzn2", - "arch": "x86_64", - "repository": "" - }, - "dracut": { - "name": "dracut", - "version": "033", - "release": "535.amzn2.1.3", - "newVersion": "033", - "newRelease": "535.amzn2.1.3", - "arch": "x86_64", - "repository": "" - }, - "dracut-config-ec2": { - "name": "dracut-config-ec2", - "version": "1.0", - "release": "1.amzn2", - "newVersion": "1.0", - "newRelease": "1.amzn2", - "arch": "noarch", - "repository": "" - }, - "dracut-config-generic": { - "name": "dracut-config-generic", - "version": "033", - "release": "535.amzn2.1.3", - "newVersion": "033", - "newRelease": "535.amzn2.1.3", - "arch": "x86_64", - "repository": "" - }, - "dyninst": { - "name": "dyninst", - "version": "9.3.1", - "release": "3.amzn2", - "newVersion": "9.3.1", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "" - }, - "e2fsprogs": { - "name": "e2fsprogs", - "version": "1.42.9", - "release": "19.amzn2", - "newVersion": "1.42.9", - "newRelease": "19.amzn2", - "arch": "x86_64", - "repository": "" - }, - "e2fsprogs-libs": { - "name": "e2fsprogs-libs", - "version": "1.42.9", - "release": "19.amzn2", - "newVersion": "1.42.9", - "newRelease": "19.amzn2", - "arch": "x86_64", - "repository": "" - }, - "ec2-hibinit-agent": { - "name": "ec2-hibinit-agent", - "version": "1.0.2", - "release": "3.amzn2", - "newVersion": "1.0.2", - "newRelease": "3.amzn2", - "arch": "noarch", - "repository": "" - }, - "ec2-instance-connect": { - "name": "ec2-instance-connect", - "version": "1.1", - "release": "13.amzn2", - "newVersion": "1.1", - "newRelease": "13.amzn2", - "arch": "noarch", - "repository": "" - }, - "ec2-net-utils": { - "name": "ec2-net-utils", - "version": "1.4", - "release": "3.amzn2", - "newVersion": "1.4", - "newRelease": "3.amzn2", - "arch": "noarch", - "repository": "" - }, - "ec2-utils": { - "name": "ec2-utils", - "version": "1.2", - "release": "3.amzn2", - "newVersion": "1.2", - "newRelease": "3.amzn2", - "arch": "noarch", - "repository": "" - }, - "ed": { - "name": "ed", - "version": "1.9", - "release": "4.amzn2.0.2", - "newVersion": "1.9", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "elfutils-default-yama-scope": { - "name": "elfutils-default-yama-scope", - "version": "0.176", - "release": "2.amzn2", - "newVersion": "0.176", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "elfutils-libelf": { - "name": "elfutils-libelf", - "version": "0.176", - "release": "2.amzn2", - "newVersion": "0.176", - "newRelease": "2.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "2491", - "name": "chronyd" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "elfutils-libs": { - "name": "elfutils-libs", - "version": "0.176", - "release": "2.amzn2", - "newVersion": "0.176", - "newRelease": "2.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "2491", - "name": "chronyd" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "ethtool": { - "name": "ethtool", - "version": "2:4.8", - "release": "10.amzn2", - "newVersion": "2:4.8", - "newRelease": "10.amzn2", - "arch": "x86_64", - "repository": "" - }, - "expat": { - "name": "expat", - "version": "2.1.0", - "release": "12.amzn2", - "newVersion": "2.1.0", - "newRelease": "12.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2480", - "name": "dbus-daemon" - } - ] - }, - "file": { - "name": "file", - "version": "5.11", - "release": "36.amzn2.0.1", - "newVersion": "5.11", - "newRelease": "36.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "file-libs": { - "name": "file-libs", - "version": "5.11", - "release": "36.amzn2.0.1", - "newVersion": "5.11", - "newRelease": "36.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "filesystem": { - "name": "filesystem", - "version": "3.2", - "release": "25.amzn2.0.4", - "newVersion": "3.2", - "newRelease": "25.amzn2.0.4", - "arch": "x86_64", - "repository": "" - }, - "findutils": { - "name": "findutils", - "version": "1:4.5.11", - "release": "6.amzn2", - "newVersion": "1:4.5.11", - "newRelease": "6.amzn2", - "arch": "x86_64", - "repository": "" - }, - "fipscheck": { - "name": "fipscheck", - "version": "1.4.1", - "release": "6.amzn2.0.2", - "newVersion": "1.4.1", - "newRelease": "6.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "fipscheck-lib": { - "name": "fipscheck-lib", - "version": "1.4.1", - "release": "6.amzn2.0.2", - "newVersion": "1.4.1", - "newRelease": "6.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "freetype": { - "name": "freetype", - "version": "2.8", - "release": "14.amzn2.1", - "newVersion": "2.8", - "newRelease": "14.amzn2.1", - "arch": "x86_64", - "repository": "" - }, - "gawk": { - "name": "gawk", - "version": "4.0.2", - "release": "4.amzn2.1.2", - "newVersion": "4.0.2", - "newRelease": "4.amzn2.1.2", - "arch": "x86_64", - "repository": "" - }, - "gdbm": { - "name": "gdbm", - "version": "1:1.13", - "release": "6.amzn2.0.2", - "newVersion": "1:1.13", - "newRelease": "6.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "gdisk": { - "name": "gdisk", - "version": "0.8.10", - "release": "3.amzn2", - "newVersion": "0.8.10", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "" - }, - "generic-logos": { - "name": "generic-logos", - "version": "18.0.0", - "release": "4.amzn2", - "newVersion": "18.0.0", - "newRelease": "4.amzn2", - "arch": "noarch", - "repository": "" - }, - "gettext": { - "name": "gettext", - "version": "0.19.8.1", - "release": "3.amzn2", - "newVersion": "0.19.8.1", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "" - }, - "gettext-libs": { - "name": "gettext-libs", - "version": "0.19.8.1", - "release": "3.amzn2", - "newVersion": "0.19.8.1", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "" - }, - "glib2": { - "name": "glib2", - "version": "2.56.1", - "release": "7.amzn2.0.1", - "newVersion": "2.56.1", - "newRelease": "7.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "glibc": { - "name": "glibc", - "version": "2.26", - "release": "42.amzn2", - "newVersion": "2.26", - "newRelease": "42.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2443", - "name": "auditd" - }, - { - "pid": "2488", - "name": "gssproxy" - }, - { - "pid": "1662", - "name": "systemd-journal" - }, - { - "pid": "3057", - "name": "atd" - }, - { - "pid": "3103", - "name": "agetty" - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "3213", - "name": "ssm-agent-worke" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2473", - "name": "lsmd" - }, - { - "pid": "2476", - "name": "systemd-logind" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "3243", - "name": "acpid" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3050", - "name": "crond" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "1700", - "name": "systemd-udevd" - }, - { - "pid": "2491", - "name": "chronyd" - }, - { - "pid": "3031", - "name": "amazon-ssm-agen" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3104", - "name": "agetty" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "glibc-all-langpacks": { - "name": "glibc-all-langpacks", - "version": "2.26", - "release": "42.amzn2", - "newVersion": "2.26", - "newRelease": "42.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3104", - "name": "agetty" - } - ] - }, - "glibc-common": { - "name": "glibc-common", - "version": "2.26", - "release": "42.amzn2", - "newVersion": "2.26", - "newRelease": "42.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3104", - "name": "agetty" - } - ] - }, - "glibc-locale-source": { - "name": "glibc-locale-source", - "version": "2.26", - "release": "42.amzn2", - "newVersion": "2.26", - "newRelease": "42.amzn2", - "arch": "x86_64", - "repository": "" - }, - "glibc-minimal-langpack": { - "name": "glibc-minimal-langpack", - "version": "2.26", - "release": "42.amzn2", - "newVersion": "2.26", - "newRelease": "42.amzn2", - "arch": "x86_64", - "repository": "" - }, - "gmp": { - "name": "gmp", - "version": "1:6.0.0", - "release": "15.amzn2.0.2", - "newVersion": "1:6.0.0", - "newRelease": "15.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "gnupg2": { - "name": "gnupg2", - "version": "2.0.22", - "release": "5.amzn2.0.4", - "newVersion": "2.0.22", - "newRelease": "5.amzn2.0.4", - "arch": "x86_64", - "repository": "" - }, - "gpg-pubkey": { - "name": "gpg-pubkey", - "version": "c87f5b1a", - "release": "593863f8", - "newVersion": "c87f5b1a", - "newRelease": "593863f8", - "arch": "(none)", - "repository": "" - }, - "gpgme": { - "name": "gpgme", - "version": "1.3.2", - "release": "5.amzn2.0.2", - "newVersion": "1.3.2", - "newRelease": "5.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "gpm-libs": { - "name": "gpm-libs", - "version": "1.20.7", - "release": "15.amzn2.0.2", - "newVersion": "1.20.7", - "newRelease": "15.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "grep": { - "name": "grep", - "version": "2.20", - "release": "3.amzn2.0.2", - "newVersion": "2.20", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "groff-base": { - "name": "groff-base", - "version": "1.22.2", - "release": "8.amzn2.0.2", - "newVersion": "1.22.2", - "newRelease": "8.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "grub2": { - "name": "grub2", - "version": "1:2.02", - "release": "35.amzn2.0.4", - "newVersion": "1:2.02", - "newRelease": "35.amzn2.0.4", - "arch": "x86_64", - "repository": "" - }, - "grub2-common": { - "name": "grub2-common", - "version": "1:2.02", - "release": "35.amzn2.0.4", - "newVersion": "1:2.02", - "newRelease": "35.amzn2.0.4", - "arch": "noarch", - "repository": "" - }, - "grub2-pc": { - "name": "grub2-pc", - "version": "1:2.02", - "release": "35.amzn2.0.4", - "newVersion": "1:2.02", - "newRelease": "35.amzn2.0.4", - "arch": "x86_64", - "repository": "" - }, - "grub2-pc-modules": { - "name": "grub2-pc-modules", - "version": "1:2.02", - "release": "35.amzn2.0.4", - "newVersion": "1:2.02", - "newRelease": "35.amzn2.0.4", - "arch": "noarch", - "repository": "" - }, - "grub2-tools": { - "name": "grub2-tools", - "version": "1:2.02", - "release": "35.amzn2.0.4", - "newVersion": "1:2.02", - "newRelease": "35.amzn2.0.4", - "arch": "x86_64", - "repository": "" - }, - "grub2-tools-extra": { - "name": "grub2-tools-extra", - "version": "1:2.02", - "release": "35.amzn2.0.4", - "newVersion": "1:2.02", - "newRelease": "35.amzn2.0.4", - "arch": "x86_64", - "repository": "" - }, - "grub2-tools-minimal": { - "name": "grub2-tools-minimal", - "version": "1:2.02", - "release": "35.amzn2.0.4", - "newVersion": "1:2.02", - "newRelease": "35.amzn2.0.4", - "arch": "x86_64", - "repository": "" - }, - "grubby": { - "name": "grubby", - "version": "8.28", - "release": "23.amzn2.0.1", - "newVersion": "8.28", - "newRelease": "23.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "gssproxy": { - "name": "gssproxy", - "version": "0.7.0", - "release": "17.amzn2", - "newVersion": "0.7.0", - "newRelease": "17.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2488", - "name": "gssproxy" - } - ] - }, - "gzip": { - "name": "gzip", - "version": "1.5", - "release": "10.amzn2", - "newVersion": "1.5", - "newRelease": "10.amzn2", - "arch": "x86_64", - "repository": "" - }, - "hardlink": { - "name": "hardlink", - "version": "1:1.3", - "release": "3.amzn2", - "newVersion": "1:1.3", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "" - }, - "hibagent": { - "name": "hibagent", - "version": "1.1.0", - "release": "5.amzn2", - "newVersion": "1.1.0", - "newRelease": "5.amzn2", - "arch": "noarch", - "repository": "" - }, - "hostname": { - "name": "hostname", - "version": "3.13", - "release": "3.amzn2.0.2", - "newVersion": "3.13", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "hunspell": { - "name": "hunspell", - "version": "1.3.2", - "release": "16.amzn2", - "newVersion": "1.3.2", - "newRelease": "16.amzn2", - "arch": "x86_64", - "repository": "" - }, - "hunspell-en": { - "name": "hunspell-en", - "version": "0.20121024", - "release": "6.amzn2.0.1", - "newVersion": "0.20121024", - "newRelease": "6.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "hunspell-en-GB": { - "name": "hunspell-en-GB", - "version": "0.20121024", - "release": "6.amzn2.0.1", - "newVersion": "0.20121024", - "newRelease": "6.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "hunspell-en-US": { - "name": "hunspell-en-US", - "version": "0.20121024", - "release": "6.amzn2.0.1", - "newVersion": "0.20121024", - "newRelease": "6.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "hwdata": { - "name": "hwdata", - "version": "0.252", - "release": "9.3.amzn2", - "newVersion": "0.252", - "newRelease": "9.3.amzn2", - "arch": "x86_64", - "repository": "" - }, - "info": { - "name": "info", - "version": "5.1", - "release": "5.amzn2", - "newVersion": "5.1", - "newRelease": "5.amzn2", - "arch": "x86_64", - "repository": "" - }, - "initscripts": { - "name": "initscripts", - "version": "9.49.47", - "release": "1.amzn2.0.1", - "newVersion": "9.49.47", - "newRelease": "1.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "iproute": { - "name": "iproute", - "version": "4.15.0", - "release": "1.amzn2.0.4", - "newVersion": "4.15.0", - "newRelease": "1.amzn2.0.4", - "arch": "x86_64", - "repository": "" - }, - "iptables": { - "name": "iptables", - "version": "1.8.4", - "release": "10.amzn2.1.2", - "newVersion": "1.8.4", - "newRelease": "10.amzn2.1.2", - "arch": "x86_64", - "repository": "" - }, - "iptables-libs": { - "name": "iptables-libs", - "version": "1.8.4", - "release": "10.amzn2.1.2", - "newVersion": "1.8.4", - "newRelease": "10.amzn2.1.2", - "arch": "x86_64", - "repository": "" - }, - "iputils": { - "name": "iputils", - "version": "20160308", - "release": "10.amzn2.0.2", - "newVersion": "20160308", - "newRelease": "10.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "irqbalance": { - "name": "irqbalance", - "version": "2:1.5.0", - "release": "4.amzn2.0.1", - "newVersion": "2:1.5.0", - "newRelease": "4.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "jansson": { - "name": "jansson", - "version": "2.10", - "release": "1.amzn2.0.2", - "newVersion": "2.10", - "newRelease": "1.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "jbigkit-libs": { - "name": "jbigkit-libs", - "version": "2.0", - "release": "11.amzn2.0.2", - "newVersion": "2.0", - "newRelease": "11.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "json-c": { - "name": "json-c", - "version": "0.11", - "release": "4.amzn2.0.4", - "newVersion": "0.11", - "newRelease": "4.amzn2.0.4", - "arch": "x86_64", - "repository": "" - }, - "kbd": { - "name": "kbd", - "version": "1.15.5", - "release": "15.amzn2", - "newVersion": "1.15.5", - "newRelease": "15.amzn2", - "arch": "x86_64", - "repository": "" - }, - "kbd-legacy": { - "name": "kbd-legacy", - "version": "1.15.5", - "release": "15.amzn2", - "newVersion": "1.15.5", - "newRelease": "15.amzn2", - "arch": "noarch", - "repository": "" - }, - "kbd-misc": { - "name": "kbd-misc", - "version": "1.15.5", - "release": "15.amzn2", - "newVersion": "1.15.5", - "newRelease": "15.amzn2", - "arch": "noarch", - "repository": "" - }, - "kernel": { - "name": "kernel", - "version": "4.14.225", - "release": "168.357.amzn2", - "newVersion": "4.14.225", - "newRelease": "168.357.amzn2", - "arch": "x86_64", - "repository": "" - }, - "kernel-tools": { - "name": "kernel-tools", - "version": "4.14.225", - "release": "168.357.amzn2", - "newVersion": "4.14.225", - "newRelease": "168.357.amzn2", - "arch": "x86_64", - "repository": "" - }, - "keyutils": { - "name": "keyutils", - "version": "1.5.8", - "release": "3.amzn2.0.2", - "newVersion": "1.5.8", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "keyutils-libs": { - "name": "keyutils-libs", - "version": "1.5.8", - "release": "3.amzn2.0.2", - "newVersion": "1.5.8", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2443", - "name": "auditd" - }, - { - "pid": "2488", - "name": "gssproxy" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "kmod": { - "name": "kmod", - "version": "25", - "release": "3.amzn2.0.2", - "newVersion": "25", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "kmod-libs": { - "name": "kmod-libs", - "version": "25", - "release": "3.amzn2.0.2", - "newVersion": "25", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1700", - "name": "systemd-udevd" - } - ] - }, - "kpartx": { - "name": "kpartx", - "version": "0.4.9", - "release": "127.amzn2", - "newVersion": "0.4.9", - "newRelease": "127.amzn2", - "arch": "x86_64", - "repository": "" - }, - "kpatch-runtime": { - "name": "kpatch-runtime", - "version": "0.9.2", - "release": "4.amzn2", - "newVersion": "0.9.2", - "newRelease": "4.amzn2", - "arch": "noarch", - "repository": "" - }, - "krb5-libs": { - "name": "krb5-libs", - "version": "1.15.1", - "release": "37.amzn2.2.2", - "newVersion": "1.15.1", - "newRelease": "37.amzn2.2.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2443", - "name": "auditd" - }, - { - "pid": "2488", - "name": "gssproxy" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "langtable": { - "name": "langtable", - "version": "0.0.31", - "release": "4.amzn2", - "newVersion": "0.0.31", - "newRelease": "4.amzn2", - "arch": "noarch", - "repository": "" - }, - "langtable-data": { - "name": "langtable-data", - "version": "0.0.31", - "release": "4.amzn2", - "newVersion": "0.0.31", - "newRelease": "4.amzn2", - "arch": "noarch", - "repository": "" - }, - "langtable-python": { - "name": "langtable-python", - "version": "0.0.31", - "release": "4.amzn2", - "newVersion": "0.0.31", - "newRelease": "4.amzn2", - "arch": "noarch", - "repository": "" - }, - "less": { - "name": "less", - "version": "458", - "release": "9.amzn2.0.2", - "newVersion": "458", - "newRelease": "9.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libacl": { - "name": "libacl", - "version": "2.2.51", - "release": "14.amzn2", - "newVersion": "2.2.51", - "newRelease": "14.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1662", - "name": "systemd-journal" - }, - { - "pid": "2476", - "name": "systemd-logind" - }, - { - "pid": "1700", - "name": "systemd-udevd" - } - ] - }, - "libaio": { - "name": "libaio", - "version": "0.3.109", - "release": "13.amzn2.0.2", - "newVersion": "0.3.109", - "newRelease": "13.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libassuan": { - "name": "libassuan", - "version": "2.1.0", - "release": "3.amzn2.0.2", - "newVersion": "2.1.0", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libattr": { - "name": "libattr", - "version": "2.4.46", - "release": "12.amzn2.0.2", - "newVersion": "2.4.46", - "newRelease": "12.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1662", - "name": "systemd-journal" - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2476", - "name": "systemd-logind" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "1700", - "name": "systemd-udevd" - }, - { - "pid": "2491", - "name": "chronyd" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "libbasicobjects": { - "name": "libbasicobjects", - "version": "0.1.1", - "release": "29.amzn2", - "newVersion": "0.1.1", - "newRelease": "29.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2488", - "name": "gssproxy" - } - ] - }, - "libblkid": { - "name": "libblkid", - "version": "2.30.2", - "release": "2.amzn2.0.4", - "newVersion": "2.30.2", - "newRelease": "2.amzn2.0.4", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1700", - "name": "systemd-udevd" - } - ] - }, - "libcap": { - "name": "libcap", - "version": "2.22", - "release": "9.amzn2.0.2", - "newVersion": "2.22", - "newRelease": "9.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2476", - "name": "systemd-logind" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "2491", - "name": "chronyd" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "libcap-ng": { - "name": "libcap-ng", - "version": "0.7.5", - "release": "4.amzn2.0.4", - "newVersion": "0.7.5", - "newRelease": "4.amzn2.0.4", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "2443", - "name": "auditd" - }, - { - "pid": "3057", - "name": "atd" - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3050", - "name": "crond" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "libcollection": { - "name": "libcollection", - "version": "0.7.0", - "release": "29.amzn2", - "newVersion": "0.7.0", - "newRelease": "29.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2488", - "name": "gssproxy" - } - ] - }, - "libcom_err": { - "name": "libcom_err", - "version": "1.42.9", - "release": "19.amzn2", - "newVersion": "1.42.9", - "newRelease": "19.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2443", - "name": "auditd" - }, - { - "pid": "2488", - "name": "gssproxy" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "libconfig": { - "name": "libconfig", - "version": "1.4.9", - "release": "5.amzn2.0.2", - "newVersion": "1.4.9", - "newRelease": "5.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2473", - "name": "lsmd" - } - ] - }, - "libcroco": { - "name": "libcroco", - "version": "0.6.12", - "release": "6.amzn2", - "newVersion": "0.6.12", - "newRelease": "6.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libcrypt": { - "name": "libcrypt", - "version": "2.26", - "release": "42.amzn2", - "newVersion": "2.26", - "newRelease": "42.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "libcurl": { - "name": "libcurl", - "version": "7.61.1", - "release": "12.amzn2.0.2", - "newVersion": "7.61.1", - "newRelease": "12.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2512", - "name": "rngd" - } - ] - }, - "libdaemon": { - "name": "libdaemon", - "version": "0.14", - "release": "7.amzn2.0.2", - "newVersion": "0.14", - "newRelease": "7.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libdb": { - "name": "libdb", - "version": "5.3.21", - "release": "24.amzn2.0.3", - "newVersion": "5.3.21", - "newRelease": "24.amzn2.0.3", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2980", - "name": "qmgr" - } - ] - }, - "libdb-utils": { - "name": "libdb-utils", - "version": "5.3.21", - "release": "24.amzn2.0.3", - "newVersion": "5.3.21", - "newRelease": "24.amzn2.0.3", - "arch": "x86_64", - "repository": "" - }, - "libdrm": { - "name": "libdrm", - "version": "2.4.97", - "release": "2.amzn2", - "newVersion": "2.4.97", - "newRelease": "2.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libdwarf": { - "name": "libdwarf", - "version": "20130207", - "release": "4.amzn2.0.2", - "newVersion": "20130207", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libedit": { - "name": "libedit", - "version": "3.0", - "release": "12.20121213cvs.amzn2.0.2", - "newVersion": "3.0", - "newRelease": "12.20121213cvs.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libestr": { - "name": "libestr", - "version": "0.1.9", - "release": "2.amzn2.0.2", - "newVersion": "0.1.9", - "newRelease": "2.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3034", - "name": "rsyslogd" - } - ] - }, - "libevent": { - "name": "libevent", - "version": "2.0.21", - "release": "4.amzn2.0.3", - "newVersion": "2.0.21", - "newRelease": "4.amzn2.0.3", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2488", - "name": "gssproxy" - } - ] - }, - "libfastjson": { - "name": "libfastjson", - "version": "0.99.4", - "release": "3.amzn2", - "newVersion": "0.99.4", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3034", - "name": "rsyslogd" - } - ] - }, - "libfdisk": { - "name": "libfdisk", - "version": "2.30.2", - "release": "2.amzn2.0.4", - "newVersion": "2.30.2", - "newRelease": "2.amzn2.0.4", - "arch": "x86_64", - "repository": "" - }, - "libffi": { - "name": "libffi", - "version": "3.0.13", - "release": "18.amzn2.0.2", - "newVersion": "3.0.13", - "newRelease": "18.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libgcc": { - "name": "libgcc", - "version": "7.3.1", - "release": "12.amzn2", - "newVersion": "7.3.1", - "newRelease": "12.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1662", - "name": "systemd-journal" - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2476", - "name": "systemd-logind" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "1700", - "name": "systemd-udevd" - }, - { - "pid": "2491", - "name": "chronyd" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "libgcrypt": { - "name": "libgcrypt", - "version": "1.5.3", - "release": "14.amzn2.0.2", - "newVersion": "1.5.3", - "newRelease": "14.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1662", - "name": "systemd-journal" - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "libgomp": { - "name": "libgomp", - "version": "7.3.1", - "release": "12.amzn2", - "newVersion": "7.3.1", - "newRelease": "12.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libgpg-error": { - "name": "libgpg-error", - "version": "1.12", - "release": "3.amzn2.0.3", - "newVersion": "1.12", - "newRelease": "3.amzn2.0.3", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1662", - "name": "systemd-journal" - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "libicu": { - "name": "libicu", - "version": "50.2", - "release": "4.amzn2", - "newVersion": "50.2", - "newRelease": "4.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libidn": { - "name": "libidn", - "version": "1.28", - "release": "4.amzn2.0.2", - "newVersion": "1.28", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libidn2": { - "name": "libidn2", - "version": "2.3.0", - "release": "1.amzn2", - "newVersion": "2.3.0", - "newRelease": "1.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2512", - "name": "rngd" - } - ] - }, - "libini_config": { - "name": "libini_config", - "version": "1.3.1", - "release": "29.amzn2", - "newVersion": "1.3.1", - "newRelease": "29.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2488", - "name": "gssproxy" - } - ] - }, - "libjpeg-turbo": { - "name": "libjpeg-turbo", - "version": "1.2.90", - "release": "6.amzn2.0.3", - "newVersion": "1.2.90", - "newRelease": "6.amzn2.0.3", - "arch": "x86_64", - "repository": "" - }, - "libmetalink": { - "name": "libmetalink", - "version": "0.1.3", - "release": "13.amzn2", - "newVersion": "0.1.3", - "newRelease": "13.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libmnl": { - "name": "libmnl", - "version": "1.0.3", - "release": "7.amzn2.0.2", - "newVersion": "1.0.3", - "newRelease": "7.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libmount": { - "name": "libmount", - "version": "2.30.2", - "release": "2.amzn2.0.4", - "newVersion": "2.30.2", - "newRelease": "2.amzn2.0.4", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - } - ] - }, - "libnetfilter_conntrack": { - "name": "libnetfilter_conntrack", - "version": "1.0.6", - "release": "1.amzn2.0.2", - "newVersion": "1.0.6", - "newRelease": "1.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libnfnetlink": { - "name": "libnfnetlink", - "version": "1.0.1", - "release": "4.amzn2.0.2", - "newVersion": "1.0.1", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libnfsidmap": { - "name": "libnfsidmap", - "version": "0.25", - "release": "19.amzn2", - "newVersion": "0.25", - "newRelease": "19.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libnghttp2": { - "name": "libnghttp2", - "version": "1.41.0", - "release": "1.amzn2", - "newVersion": "1.41.0", - "newRelease": "1.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2512", - "name": "rngd" - } - ] - }, - "libnl3": { - "name": "libnl3", - "version": "3.2.28", - "release": "4.amzn2.0.1", - "newVersion": "3.2.28", - "newRelease": "4.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "libnl3-cli": { - "name": "libnl3-cli", - "version": "3.2.28", - "release": "4.amzn2.0.1", - "newVersion": "3.2.28", - "newRelease": "4.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "libpath_utils": { - "name": "libpath_utils", - "version": "0.2.1", - "release": "29.amzn2", - "newVersion": "0.2.1", - "newRelease": "29.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2488", - "name": "gssproxy" - } - ] - }, - "libpcap": { - "name": "libpcap", - "version": "14:1.5.3", - "release": "11.amzn2", - "newVersion": "14:1.5.3", - "newRelease": "11.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libpciaccess": { - "name": "libpciaccess", - "version": "0.14", - "release": "1.amzn2", - "newVersion": "0.14", - "newRelease": "1.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libpipeline": { - "name": "libpipeline", - "version": "1.2.3", - "release": "3.amzn2.0.2", - "newVersion": "1.2.3", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libpng": { - "name": "libpng", - "version": "2:1.5.13", - "release": "8.amzn2", - "newVersion": "2:1.5.13", - "newRelease": "8.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libpwquality": { - "name": "libpwquality", - "version": "1.2.3", - "release": "5.amzn2", - "newVersion": "1.2.3", - "newRelease": "5.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "3330", - "name": "sshd" - } - ] - }, - "libref_array": { - "name": "libref_array", - "version": "0.1.5", - "release": "29.amzn2", - "newVersion": "0.1.5", - "newRelease": "29.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2488", - "name": "gssproxy" - } - ] - }, - "libseccomp": { - "name": "libseccomp", - "version": "2.4.1", - "release": "1.amzn2", - "newVersion": "2.4.1", - "newRelease": "1.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2491", - "name": "chronyd" - } - ] - }, - "libselinux": { - "name": "libselinux", - "version": "2.5", - "release": "12.amzn2.0.2", - "newVersion": "2.5", - "newRelease": "12.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2443", - "name": "auditd" - }, - { - "pid": "2488", - "name": "gssproxy" - }, - { - "pid": "1662", - "name": "systemd-journal" - }, - { - "pid": "3057", - "name": "atd" - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2476", - "name": "systemd-logind" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3050", - "name": "crond" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "1700", - "name": "systemd-udevd" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "libselinux-utils": { - "name": "libselinux-utils", - "version": "2.5", - "release": "12.amzn2.0.2", - "newVersion": "2.5", - "newRelease": "12.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libsemanage": { - "name": "libsemanage", - "version": "2.5", - "release": "11.amzn2", - "newVersion": "2.5", - "newRelease": "11.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libsepol": { - "name": "libsepol", - "version": "2.5", - "release": "8.1.amzn2.0.2", - "newVersion": "2.5", - "newRelease": "8.1.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1693", - "name": "lvmetad" - } - ] - }, - "libsmartcols": { - "name": "libsmartcols", - "version": "2.30.2", - "release": "2.amzn2.0.4", - "newVersion": "2.30.2", - "newRelease": "2.amzn2.0.4", - "arch": "x86_64", - "repository": "" - }, - "libss": { - "name": "libss", - "version": "1.42.9", - "release": "19.amzn2", - "newVersion": "1.42.9", - "newRelease": "19.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libssh2": { - "name": "libssh2", - "version": "1.4.3", - "release": "12.amzn2.2.3", - "newVersion": "1.4.3", - "newRelease": "12.amzn2.2.3", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2512", - "name": "rngd" - } - ] - }, - "libsss_idmap": { - "name": "libsss_idmap", - "version": "1.16.5", - "release": "10.amzn2.6", - "newVersion": "1.16.5", - "newRelease": "10.amzn2.6", - "arch": "x86_64", - "repository": "" - }, - "libsss_nss_idmap": { - "name": "libsss_nss_idmap", - "version": "1.16.5", - "release": "10.amzn2.6", - "newVersion": "1.16.5", - "newRelease": "10.amzn2.6", - "arch": "x86_64", - "repository": "" - }, - "libstdc++": { - "name": "libstdc++", - "version": "7.3.1", - "release": "12.amzn2", - "newVersion": "7.3.1", - "newRelease": "12.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2980", - "name": "qmgr" - } - ] - }, - "libstoragemgmt": { - "name": "libstoragemgmt", - "version": "1.6.1", - "release": "2.amzn2", - "newVersion": "1.6.1", - "newRelease": "2.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2473", - "name": "lsmd" - } - ] - }, - "libstoragemgmt-python": { - "name": "libstoragemgmt-python", - "version": "1.6.1", - "release": "2.amzn2", - "newVersion": "1.6.1", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "libstoragemgmt-python-clibs": { - "name": "libstoragemgmt-python-clibs", - "version": "1.6.1", - "release": "2.amzn2", - "newVersion": "1.6.1", - "newRelease": "2.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libsysfs": { - "name": "libsysfs", - "version": "2.1.0", - "release": "16.amzn2.0.2", - "newVersion": "2.1.0", - "newRelease": "16.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2512", - "name": "rngd" - } - ] - }, - "libtasn1": { - "name": "libtasn1", - "version": "4.10", - "release": "1.amzn2.0.2", - "newVersion": "4.10", - "newRelease": "1.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libteam": { - "name": "libteam", - "version": "1.27", - "release": "9.amzn2", - "newVersion": "1.27", - "newRelease": "9.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libtiff": { - "name": "libtiff", - "version": "4.0.3", - "release": "35.amzn2", - "newVersion": "4.0.3", - "newRelease": "35.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libtirpc": { - "name": "libtirpc", - "version": "0.2.4", - "release": "0.16.amzn2", - "newVersion": "0.2.4", - "newRelease": "0.16.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - } - ] - }, - "libunistring": { - "name": "libunistring", - "version": "0.9.3", - "release": "9.amzn2.0.2", - "newVersion": "0.9.3", - "newRelease": "9.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2512", - "name": "rngd" - } - ] - }, - "libuser": { - "name": "libuser", - "version": "0.60", - "release": "9.amzn2", - "newVersion": "0.60", - "newRelease": "9.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libutempter": { - "name": "libutempter", - "version": "1.1.6", - "release": "4.amzn2.0.2", - "newVersion": "1.1.6", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "libuuid": { - "name": "libuuid", - "version": "2.30.2", - "release": "2.amzn2.0.4", - "newVersion": "2.30.2", - "newRelease": "2.amzn2.0.4", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "1700", - "name": "systemd-udevd" - } - ] - }, - "libverto": { - "name": "libverto", - "version": "0.2.5", - "release": "4.amzn2.0.2", - "newVersion": "0.2.5", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2488", - "name": "gssproxy" - } - ] - }, - "libverto-libevent": { - "name": "libverto-libevent", - "version": "0.2.5", - "release": "4.amzn2.0.2", - "newVersion": "0.2.5", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2488", - "name": "gssproxy" - } - ] - }, - "libwebp": { - "name": "libwebp", - "version": "0.3.0", - "release": "7.amzn2", - "newVersion": "0.3.0", - "newRelease": "7.amzn2", - "arch": "x86_64", - "repository": "" - }, - "libxml2": { - "name": "libxml2", - "version": "2.9.1", - "release": "6.amzn2.5.1", - "newVersion": "2.9.1", - "newRelease": "6.amzn2.5.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2512", - "name": "rngd" - } - ] - }, - "libxml2-python": { - "name": "libxml2-python", - "version": "2.9.1", - "release": "6.amzn2.5.1", - "newVersion": "2.9.1", - "newRelease": "6.amzn2.5.1", - "arch": "x86_64", - "repository": "" - }, - "libyaml": { - "name": "libyaml", - "version": "0.1.4", - "release": "11.amzn2.0.2", - "newVersion": "0.1.4", - "newRelease": "11.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "lm_sensors-libs": { - "name": "lm_sensors-libs", - "version": "3.4.0", - "release": "8.20160601gitf9185e5.amzn2", - "newVersion": "3.4.0", - "newRelease": "8.20160601gitf9185e5.amzn2", - "arch": "x86_64", - "repository": "" - }, - "logrotate": { - "name": "logrotate", - "version": "3.8.6", - "release": "15.amzn2", - "newVersion": "3.8.6", - "newRelease": "15.amzn2", - "arch": "x86_64", - "repository": "" - }, - "lsof": { - "name": "lsof", - "version": "4.87", - "release": "6.amzn2", - "newVersion": "4.87", - "newRelease": "6.amzn2", - "arch": "x86_64", - "repository": "" - }, - "lua": { - "name": "lua", - "version": "5.1.4", - "release": "15.amzn2.0.2", - "newVersion": "5.1.4", - "newRelease": "15.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "lvm2": { - "name": "lvm2", - "version": "7:2.02.177", - "release": "4.amzn2.0.2", - "newVersion": "7:2.02.177", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1693", - "name": "lvmetad" - } - ] - }, - "lvm2-libs": { - "name": "lvm2-libs", - "version": "7:2.02.177", - "release": "4.amzn2.0.2", - "newVersion": "7:2.02.177", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "lz4": { - "name": "lz4", - "version": "1.7.5", - "release": "2.amzn2.0.1", - "newVersion": "1.7.5", - "newRelease": "2.amzn2.0.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1662", - "name": "systemd-journal" - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "make": { - "name": "make", - "version": "1:3.82", - "release": "24.amzn2", - "newVersion": "1:3.82", - "newRelease": "24.amzn2", - "arch": "x86_64", - "repository": "" - }, - "man-db": { - "name": "man-db", - "version": "2.6.3", - "release": "9.amzn2.0.3", - "newVersion": "2.6.3", - "newRelease": "9.amzn2.0.3", - "arch": "x86_64", - "repository": "" - }, - "man-pages": { - "name": "man-pages", - "version": "3.53", - "release": "5.amzn2", - "newVersion": "3.53", - "newRelease": "5.amzn2", - "arch": "noarch", - "repository": "" - }, - "man-pages-overrides": { - "name": "man-pages-overrides", - "version": "7.5.2", - "release": "1.amzn2", - "newVersion": "7.5.2", - "newRelease": "1.amzn2", - "arch": "x86_64", - "repository": "" - }, - "mariadb-libs": { - "name": "mariadb-libs", - "version": "1:5.5.68", - "release": "1.amzn2", - "newVersion": "1:5.5.68", - "newRelease": "1.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2980", - "name": "qmgr" - } - ] - }, - "mdadm": { - "name": "mdadm", - "version": "4.0", - "release": "5.amzn2.0.2", - "newVersion": "4.0", - "newRelease": "5.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "microcode_ctl": { - "name": "microcode_ctl", - "version": "2:2.1", - "release": "47.amzn2.0.7", - "newVersion": "2:2.1", - "newRelease": "47.amzn2.0.7", - "arch": "x86_64", - "repository": "" - }, - "mlocate": { - "name": "mlocate", - "version": "0.26", - "release": "8.amzn2", - "newVersion": "0.26", - "newRelease": "8.amzn2", - "arch": "x86_64", - "repository": "" - }, - "mtr": { - "name": "mtr", - "version": "2:0.92", - "release": "2.amzn2", - "newVersion": "2:0.92", - "newRelease": "2.amzn2", - "arch": "x86_64", - "repository": "" - }, - "nano": { - "name": "nano", - "version": "2.9.8", - "release": "2.amzn2.0.1", - "newVersion": "2.9.8", - "newRelease": "2.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "ncurses": { - "name": "ncurses", - "version": "6.0", - "release": "8.20170212.amzn2.1.3", - "newVersion": "6.0", - "newRelease": "8.20170212.amzn2.1.3", - "arch": "x86_64", - "repository": "" - }, - "ncurses-base": { - "name": "ncurses-base", - "version": "6.0", - "release": "8.20170212.amzn2.1.3", - "newVersion": "6.0", - "newRelease": "8.20170212.amzn2.1.3", - "arch": "noarch", - "repository": "" - }, - "ncurses-libs": { - "name": "ncurses-libs", - "version": "6.0", - "release": "8.20170212.amzn2.1.3", - "newVersion": "6.0", - "newRelease": "8.20170212.amzn2.1.3", - "arch": "x86_64", - "repository": "" - }, - "net-tools": { - "name": "net-tools", - "version": "2.0", - "release": "0.22.20131004git.amzn2.0.2", - "newVersion": "2.0", - "newRelease": "0.22.20131004git.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "nettle": { - "name": "nettle", - "version": "2.7.1", - "release": "8.amzn2.0.2", - "newVersion": "2.7.1", - "newRelease": "8.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2491", - "name": "chronyd" - } - ] - }, - "newt": { - "name": "newt", - "version": "0.52.15", - "release": "4.amzn2.0.2", - "newVersion": "0.52.15", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "newt-python": { - "name": "newt-python", - "version": "0.52.15", - "release": "4.amzn2.0.2", - "newVersion": "0.52.15", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "nfs-utils": { - "name": "nfs-utils", - "version": "1:1.3.0", - "release": "0.54.amzn2.0.2", - "newVersion": "1:1.3.0", - "newRelease": "0.54.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "nspr": { - "name": "nspr", - "version": "4.25.0", - "release": "2.amzn2", - "newVersion": "4.25.0", - "newRelease": "2.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "nss": { - "name": "nss", - "version": "3.53.1", - "release": "3.amzn2", - "newVersion": "3.53.1", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "nss-pem": { - "name": "nss-pem", - "version": "1.0.3", - "release": "5.amzn2", - "newVersion": "1.0.3", - "newRelease": "5.amzn2", - "arch": "x86_64", - "repository": "" - }, - "nss-softokn": { - "name": "nss-softokn", - "version": "3.53.1", - "release": "6.amzn2", - "newVersion": "3.53.1", - "newRelease": "6.amzn2", - "arch": "x86_64", - "repository": "" - }, - "nss-softokn-freebl": { - "name": "nss-softokn-freebl", - "version": "3.53.1", - "release": "6.amzn2", - "newVersion": "3.53.1", - "newRelease": "6.amzn2", - "arch": "x86_64", - "repository": "" - }, - "nss-sysinit": { - "name": "nss-sysinit", - "version": "3.53.1", - "release": "3.amzn2", - "newVersion": "3.53.1", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "" - }, - "nss-tools": { - "name": "nss-tools", - "version": "3.53.1", - "release": "3.amzn2", - "newVersion": "3.53.1", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "" - }, - "nss-util": { - "name": "nss-util", - "version": "3.53.1", - "release": "1.amzn2", - "newVersion": "3.53.1", - "newRelease": "1.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "ntsysv": { - "name": "ntsysv", - "version": "1.7.4", - "release": "1.amzn2.0.2", - "newVersion": "1.7.4", - "newRelease": "1.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "numactl-libs": { - "name": "numactl-libs", - "version": "2.0.9", - "release": "7.amzn2", - "newVersion": "2.0.9", - "newRelease": "7.amzn2", - "arch": "x86_64", - "repository": "" - }, - "openldap": { - "name": "openldap", - "version": "2.4.44", - "release": "22.amzn2", - "newVersion": "2.4.44", - "newRelease": "22.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "openssh": { - "name": "openssh", - "version": "7.4p1", - "release": "21.amzn2.0.1", - "newVersion": "7.4p1", - "newRelease": "21.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "openssh-clients": { - "name": "openssh-clients", - "version": "7.4p1", - "release": "21.amzn2.0.1", - "newVersion": "7.4p1", - "newRelease": "21.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "openssh-server": { - "name": "openssh-server", - "version": "7.4p1", - "release": "21.amzn2.0.1", - "newVersion": "7.4p1", - "newRelease": "21.amzn2.0.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "openssl": { - "name": "openssl", - "version": "1:1.0.2k", - "release": "19.amzn2.0.6", - "newVersion": "1:1.0.2k", - "newRelease": "19.amzn2.0.6", - "arch": "x86_64", - "repository": "" - }, - "openssl-libs": { - "name": "openssl-libs", - "version": "1:1.0.2k", - "release": "19.amzn2.0.6", - "newVersion": "1:1.0.2k", - "newRelease": "19.amzn2.0.6", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "os-prober": { - "name": "os-prober", - "version": "1.58", - "release": "9.amzn2.0.2", - "newVersion": "1.58", - "newRelease": "9.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "p11-kit": { - "name": "p11-kit", - "version": "0.23.22", - "release": "1.amzn2.0.1", - "newVersion": "0.23.22", - "newRelease": "1.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "p11-kit-trust": { - "name": "p11-kit-trust", - "version": "0.23.22", - "release": "1.amzn2.0.1", - "newVersion": "0.23.22", - "newRelease": "1.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "pam": { - "name": "pam", - "version": "1.1.8", - "release": "23.amzn2.0.1", - "newVersion": "1.1.8", - "newRelease": "23.amzn2.0.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "3057", - "name": "atd" - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "3050", - "name": "crond" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "parted": { - "name": "parted", - "version": "3.1", - "release": "29.amzn2", - "newVersion": "3.1", - "newRelease": "29.amzn2", - "arch": "x86_64", - "repository": "" - }, - "passwd": { - "name": "passwd", - "version": "0.79", - "release": "5.amzn2", - "newVersion": "0.79", - "newRelease": "5.amzn2", - "arch": "x86_64", - "repository": "" - }, - "pciutils": { - "name": "pciutils", - "version": "3.5.1", - "release": "3.amzn2", - "newVersion": "3.5.1", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "" - }, - "pciutils-libs": { - "name": "pciutils-libs", - "version": "3.5.1", - "release": "3.amzn2", - "newVersion": "3.5.1", - "newRelease": "3.amzn2", - "arch": "x86_64", - "repository": "" - }, - "pcre": { - "name": "pcre", - "version": "8.32", - "release": "17.amzn2.0.2", - "newVersion": "8.32", - "newRelease": "17.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2443", - "name": "auditd" - }, - { - "pid": "2488", - "name": "gssproxy" - }, - { - "pid": "1662", - "name": "systemd-journal" - }, - { - "pid": "3057", - "name": "atd" - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2476", - "name": "systemd-logind" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3050", - "name": "crond" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "1700", - "name": "systemd-udevd" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "pcre2": { - "name": "pcre2", - "version": "10.23", - "release": "2.amzn2.0.2", - "newVersion": "10.23", - "newRelease": "2.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "perl": { - "name": "perl", - "version": "4:5.16.3", - "release": "299.amzn2.0.1", - "newVersion": "4:5.16.3", - "newRelease": "299.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "perl-Carp": { - "name": "perl-Carp", - "version": "1.26", - "release": "244.amzn2", - "newVersion": "1.26", - "newRelease": "244.amzn2", - "arch": "noarch", - "repository": "" - }, - "perl-Encode": { - "name": "perl-Encode", - "version": "2.51", - "release": "7.amzn2.0.2", - "newVersion": "2.51", - "newRelease": "7.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "perl-Exporter": { - "name": "perl-Exporter", - "version": "5.68", - "release": "3.amzn2", - "newVersion": "5.68", - "newRelease": "3.amzn2", - "arch": "noarch", - "repository": "" - }, - "perl-File-Path": { - "name": "perl-File-Path", - "version": "2.09", - "release": "2.amzn2", - "newVersion": "2.09", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "perl-File-Temp": { - "name": "perl-File-Temp", - "version": "0.23.01", - "release": "3.amzn2", - "newVersion": "0.23.01", - "newRelease": "3.amzn2", - "arch": "noarch", - "repository": "" - }, - "perl-Filter": { - "name": "perl-Filter", - "version": "1.49", - "release": "3.amzn2.0.2", - "newVersion": "1.49", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "perl-Getopt-Long": { - "name": "perl-Getopt-Long", - "version": "2.40", - "release": "3.amzn2", - "newVersion": "2.40", - "newRelease": "3.amzn2", - "arch": "noarch", - "repository": "" - }, - "perl-HTTP-Tiny": { - "name": "perl-HTTP-Tiny", - "version": "0.033", - "release": "3.amzn2", - "newVersion": "0.033", - "newRelease": "3.amzn2", - "arch": "noarch", - "repository": "" - }, - "perl-PathTools": { - "name": "perl-PathTools", - "version": "3.40", - "release": "5.amzn2.0.2", - "newVersion": "3.40", - "newRelease": "5.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "perl-Pod-Escapes": { - "name": "perl-Pod-Escapes", - "version": "1:1.04", - "release": "299.amzn2.0.1", - "newVersion": "1:1.04", - "newRelease": "299.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "perl-Pod-Perldoc": { - "name": "perl-Pod-Perldoc", - "version": "3.20", - "release": "4.amzn2", - "newVersion": "3.20", - "newRelease": "4.amzn2", - "arch": "noarch", - "repository": "" - }, - "perl-Pod-Simple": { - "name": "perl-Pod-Simple", - "version": "1:3.28", - "release": "4.amzn2", - "newVersion": "1:3.28", - "newRelease": "4.amzn2", - "arch": "noarch", - "repository": "" - }, - "perl-Pod-Usage": { - "name": "perl-Pod-Usage", - "version": "1.63", - "release": "3.amzn2", - "newVersion": "1.63", - "newRelease": "3.amzn2", - "arch": "noarch", - "repository": "" - }, - "perl-Scalar-List-Utils": { - "name": "perl-Scalar-List-Utils", - "version": "1.27", - "release": "248.amzn2.0.2", - "newVersion": "1.27", - "newRelease": "248.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "perl-Socket": { - "name": "perl-Socket", - "version": "2.010", - "release": "4.amzn2.0.2", - "newVersion": "2.010", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "perl-Storable": { - "name": "perl-Storable", - "version": "2.45", - "release": "3.amzn2.0.2", - "newVersion": "2.45", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "perl-Text-ParseWords": { - "name": "perl-Text-ParseWords", - "version": "3.29", - "release": "4.amzn2", - "newVersion": "3.29", - "newRelease": "4.amzn2", - "arch": "noarch", - "repository": "" - }, - "perl-Time-HiRes": { - "name": "perl-Time-HiRes", - "version": "4:1.9725", - "release": "3.amzn2.0.2", - "newVersion": "4:1.9725", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "perl-Time-Local": { - "name": "perl-Time-Local", - "version": "1.2300", - "release": "2.amzn2", - "newVersion": "1.2300", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "perl-constant": { - "name": "perl-constant", - "version": "1.27", - "release": "2.amzn2.0.1", - "newVersion": "1.27", - "newRelease": "2.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "perl-libs": { - "name": "perl-libs", - "version": "4:5.16.3", - "release": "299.amzn2.0.1", - "newVersion": "4:5.16.3", - "newRelease": "299.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "perl-macros": { - "name": "perl-macros", - "version": "4:5.16.3", - "release": "299.amzn2.0.1", - "newVersion": "4:5.16.3", - "newRelease": "299.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "perl-parent": { - "name": "perl-parent", - "version": "1:0.225", - "release": "244.amzn2.0.1", - "newVersion": "1:0.225", - "newRelease": "244.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "perl-podlators": { - "name": "perl-podlators", - "version": "2.5.1", - "release": "3.amzn2.0.1", - "newVersion": "2.5.1", - "newRelease": "3.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "perl-threads": { - "name": "perl-threads", - "version": "1.87", - "release": "4.amzn2.0.2", - "newVersion": "1.87", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "perl-threads-shared": { - "name": "perl-threads-shared", - "version": "1.43", - "release": "6.amzn2.0.2", - "newVersion": "1.43", - "newRelease": "6.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "pinentry": { - "name": "pinentry", - "version": "0.8.1", - "release": "17.amzn2.0.2", - "newVersion": "0.8.1", - "newRelease": "17.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "pkgconfig": { - "name": "pkgconfig", - "version": "1:0.27.1", - "release": "4.amzn2.0.2", - "newVersion": "1:0.27.1", - "newRelease": "4.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "plymouth": { - "name": "plymouth", - "version": "0.8.9", - "release": "0.28.20140113.amzn2.0.2", - "newVersion": "0.8.9", - "newRelease": "0.28.20140113.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "plymouth-core-libs": { - "name": "plymouth-core-libs", - "version": "0.8.9", - "release": "0.28.20140113.amzn2.0.2", - "newVersion": "0.8.9", - "newRelease": "0.28.20140113.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "plymouth-scripts": { - "name": "plymouth-scripts", - "version": "0.8.9", - "release": "0.28.20140113.amzn2.0.2", - "newVersion": "0.8.9", - "newRelease": "0.28.20140113.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "pm-utils": { - "name": "pm-utils", - "version": "1.4.1", - "release": "27.amzn2.0.1", - "newVersion": "1.4.1", - "newRelease": "27.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "policycoreutils": { - "name": "policycoreutils", - "version": "2.5", - "release": "22.amzn2", - "newVersion": "2.5", - "newRelease": "22.amzn2", - "arch": "x86_64", - "repository": "" - }, - "popt": { - "name": "popt", - "version": "1.13", - "release": "16.amzn2.0.2", - "newVersion": "1.13", - "newRelease": "16.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2488", - "name": "gssproxy" - } - ] - }, - "postfix": { - "name": "postfix", - "version": "2:2.10.1", - "release": "6.amzn2.0.3", - "newVersion": "2:2.10.1", - "newRelease": "6.amzn2.0.3", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2980", - "name": "qmgr" - } - ] - }, - "procps-ng": { - "name": "procps-ng", - "version": "3.3.10", - "release": "26.amzn2", - "newVersion": "3.3.10", - "newRelease": "26.amzn2", - "arch": "x86_64", - "repository": "" - }, - "psacct": { - "name": "psacct", - "version": "6.6.1", - "release": "13.amzn2.0.2", - "newVersion": "6.6.1", - "newRelease": "13.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "psmisc": { - "name": "psmisc", - "version": "22.20", - "release": "15.amzn2.0.2", - "newVersion": "22.20", - "newRelease": "15.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "pth": { - "name": "pth", - "version": "2.0.7", - "release": "23.amzn2.0.2", - "newVersion": "2.0.7", - "newRelease": "23.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "pygpgme": { - "name": "pygpgme", - "version": "0.3", - "release": "9.amzn2.0.3", - "newVersion": "0.3", - "newRelease": "9.amzn2.0.3", - "arch": "x86_64", - "repository": "" - }, - "pyliblzma": { - "name": "pyliblzma", - "version": "0.5.3", - "release": "25.amzn2", - "newVersion": "0.5.3", - "newRelease": "25.amzn2", - "arch": "x86_64", - "repository": "" - }, - "pystache": { - "name": "pystache", - "version": "0.5.3", - "release": "2.amzn2", - "newVersion": "0.5.3", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "python": { - "name": "python", - "version": "2.7.18", - "release": "1.amzn2.0.3", - "newVersion": "2.7.18", - "newRelease": "1.amzn2.0.3", - "arch": "x86_64", - "repository": "" - }, - "python-babel": { - "name": "python-babel", - "version": "0.9.6", - "release": "8.amzn2.0.1", - "newVersion": "0.9.6", - "newRelease": "8.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "python-backports": { - "name": "python-backports", - "version": "1.0", - "release": "8.amzn2.0.2", - "newVersion": "1.0", - "newRelease": "8.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "python-backports-ssl_match_hostname": { - "name": "python-backports-ssl_match_hostname", - "version": "3.5.0.1", - "release": "1.amzn2", - "newVersion": "3.5.0.1", - "newRelease": "1.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-cffi": { - "name": "python-cffi", - "version": "1.6.0", - "release": "5.amzn2.0.2", - "newVersion": "1.6.0", - "newRelease": "5.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "python-chardet": { - "name": "python-chardet", - "version": "2.2.1", - "release": "1.amzn2", - "newVersion": "2.2.1", - "newRelease": "1.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-colorama": { - "name": "python-colorama", - "version": "0.3.2", - "release": "3.amzn2", - "newVersion": "0.3.2", - "newRelease": "3.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-configobj": { - "name": "python-configobj", - "version": "4.7.2", - "release": "7.amzn2", - "newVersion": "4.7.2", - "newRelease": "7.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-daemon": { - "name": "python-daemon", - "version": "1.6", - "release": "4.amzn2", - "newVersion": "1.6", - "newRelease": "4.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-devel": { - "name": "python-devel", - "version": "2.7.18", - "release": "1.amzn2.0.3", - "newVersion": "2.7.18", - "newRelease": "1.amzn2.0.3", - "arch": "x86_64", - "repository": "" - }, - "python-docutils": { - "name": "python-docutils", - "version": "0.12", - "release": "0.2.20140510svn7747.amzn2", - "newVersion": "0.12", - "newRelease": "0.2.20140510svn7747.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-enum34": { - "name": "python-enum34", - "version": "1.0.4", - "release": "1.amzn2", - "newVersion": "1.0.4", - "newRelease": "1.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-idna": { - "name": "python-idna", - "version": "2.4", - "release": "1.amzn2", - "newVersion": "2.4", - "newRelease": "1.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-iniparse": { - "name": "python-iniparse", - "version": "0.4", - "release": "9.amzn2", - "newVersion": "0.4", - "newRelease": "9.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-ipaddress": { - "name": "python-ipaddress", - "version": "1.0.16", - "release": "2.amzn2", - "newVersion": "1.0.16", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-jinja2": { - "name": "python-jinja2", - "version": "2.7.2", - "release": "3.amzn2", - "newVersion": "2.7.2", - "newRelease": "3.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-jsonpatch": { - "name": "python-jsonpatch", - "version": "1.2", - "release": "4.amzn2", - "newVersion": "1.2", - "newRelease": "4.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-jsonpointer": { - "name": "python-jsonpointer", - "version": "1.9", - "release": "2.amzn2", - "newVersion": "1.9", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-jwcrypto": { - "name": "python-jwcrypto", - "version": "0.4.2", - "release": "1.amzn2", - "newVersion": "0.4.2", - "newRelease": "1.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-kitchen": { - "name": "python-kitchen", - "version": "1.1.1", - "release": "5.amzn2", - "newVersion": "1.1.1", - "newRelease": "5.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-libs": { - "name": "python-libs", - "version": "2.7.18", - "release": "1.amzn2.0.3", - "newVersion": "2.7.18", - "newRelease": "1.amzn2.0.3", - "arch": "x86_64", - "repository": "" - }, - "python-lockfile": { - "name": "python-lockfile", - "version": "1:0.9.1", - "release": "4.amzn2", - "newVersion": "1:0.9.1", - "newRelease": "4.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-markupsafe": { - "name": "python-markupsafe", - "version": "0.11", - "release": "10.amzn2.0.2", - "newVersion": "0.11", - "newRelease": "10.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "python-pillow": { - "name": "python-pillow", - "version": "2.0.0", - "release": "21.gitd1c6db8.amzn2.0.1", - "newVersion": "2.0.0", - "newRelease": "21.gitd1c6db8.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "python-ply": { - "name": "python-ply", - "version": "3.4", - "release": "11.amzn2", - "newVersion": "3.4", - "newRelease": "11.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-pycparser": { - "name": "python-pycparser", - "version": "2.14", - "release": "1.amzn2", - "newVersion": "2.14", - "newRelease": "1.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-pycurl": { - "name": "python-pycurl", - "version": "7.19.0", - "release": "19.amzn2.0.2", - "newVersion": "7.19.0", - "newRelease": "19.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "python-repoze-lru": { - "name": "python-repoze-lru", - "version": "0.4", - "release": "3.amzn2", - "newVersion": "0.4", - "newRelease": "3.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-requests": { - "name": "python-requests", - "version": "2.6.0", - "release": "7.amzn2", - "newVersion": "2.6.0", - "newRelease": "7.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-simplejson": { - "name": "python-simplejson", - "version": "3.2.0", - "release": "1.amzn2.0.2", - "newVersion": "3.2.0", - "newRelease": "1.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "python-six": { - "name": "python-six", - "version": "1.9.0", - "release": "2.amzn2", - "newVersion": "1.9.0", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "python-urlgrabber": { - "name": "python-urlgrabber", - "version": "3.10", - "release": "9.amzn2.0.1", - "newVersion": "3.10", - "newRelease": "9.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "python-urllib3": { - "name": "python-urllib3", - "version": "1.25.7", - "release": "1.amzn2.0.1", - "newVersion": "1.25.7", - "newRelease": "1.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "python2-botocore": { - "name": "python2-botocore", - "version": "1.18.6", - "release": "1.amzn2.0.1", - "newVersion": "1.18.6", - "newRelease": "1.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "python2-cryptography": { - "name": "python2-cryptography", - "version": "1.7.2", - "release": "2.amzn2", - "newVersion": "1.7.2", - "newRelease": "2.amzn2", - "arch": "x86_64", - "repository": "" - }, - "python2-dateutil": { - "name": "python2-dateutil", - "version": "1:2.6.0", - "release": "3.amzn2.0.1", - "newVersion": "1:2.6.0", - "newRelease": "3.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "python2-futures": { - "name": "python2-futures", - "version": "3.0.5", - "release": "1.amzn2", - "newVersion": "3.0.5", - "newRelease": "1.amzn2", - "arch": "noarch", - "repository": "" - }, - "python2-jmespath": { - "name": "python2-jmespath", - "version": "0.9.3", - "release": "1.amzn2.0.1", - "newVersion": "0.9.3", - "newRelease": "1.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "python2-jsonschema": { - "name": "python2-jsonschema", - "version": "2.5.1", - "release": "3.amzn2.0.1", - "newVersion": "2.5.1", - "newRelease": "3.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "python2-oauthlib": { - "name": "python2-oauthlib", - "version": "2.0.1", - "release": "8.amzn2.0.1", - "newVersion": "2.0.1", - "newRelease": "8.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "python2-pyasn1": { - "name": "python2-pyasn1", - "version": "0.1.9", - "release": "7.amzn2.0.1", - "newVersion": "0.1.9", - "newRelease": "7.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "python2-rpm": { - "name": "python2-rpm", - "version": "4.11.3", - "release": "40.amzn2.0.5", - "newVersion": "4.11.3", - "newRelease": "40.amzn2.0.5", - "arch": "x86_64", - "repository": "" - }, - "python2-rsa": { - "name": "python2-rsa", - "version": "3.4.1", - "release": "1.amzn2.0.1", - "newVersion": "3.4.1", - "newRelease": "1.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "python2-s3transfer": { - "name": "python2-s3transfer", - "version": "0.3.3", - "release": "1.amzn2.0.1", - "newVersion": "0.3.3", - "newRelease": "1.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "python2-setuptools": { - "name": "python2-setuptools", - "version": "38.4.0", - "release": "3.amzn2.0.6", - "newVersion": "38.4.0", - "newRelease": "3.amzn2.0.6", - "arch": "noarch", - "repository": "" - }, - "pyxattr": { - "name": "pyxattr", - "version": "0.5.1", - "release": "5.amzn2.0.2", - "newVersion": "0.5.1", - "newRelease": "5.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "qrencode-libs": { - "name": "qrencode-libs", - "version": "3.4.1", - "release": "3.amzn2.0.2", - "newVersion": "3.4.1", - "newRelease": "3.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "quota": { - "name": "quota", - "version": "1:4.01", - "release": "17.amzn2", - "newVersion": "1:4.01", - "newRelease": "17.amzn2", - "arch": "x86_64", - "repository": "" - }, - "quota-nls": { - "name": "quota-nls", - "version": "1:4.01", - "release": "17.amzn2", - "newVersion": "1:4.01", - "newRelease": "17.amzn2", - "arch": "noarch", - "repository": "" - }, - "rdate": { - "name": "rdate", - "version": "1.4", - "release": "25.amzn2.0.1", - "newVersion": "1.4", - "newRelease": "25.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "readline": { - "name": "readline", - "version": "6.2", - "release": "10.amzn2.0.2", - "newVersion": "6.2", - "newRelease": "10.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "rng-tools": { - "name": "rng-tools", - "version": "6.8", - "release": "3.amzn2.0.5", - "newVersion": "6.8", - "newRelease": "3.amzn2.0.5", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2512", - "name": "rngd" - } - ] - }, - "rootfiles": { - "name": "rootfiles", - "version": "8.1", - "release": "11.amzn2", - "newVersion": "8.1", - "newRelease": "11.amzn2", - "arch": "noarch", - "repository": "" - }, - "rpcbind": { - "name": "rpcbind", - "version": "0.2.0", - "release": "44.amzn2", - "newVersion": "0.2.0", - "newRelease": "44.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - } - ] - }, - "rpm": { - "name": "rpm", - "version": "4.11.3", - "release": "40.amzn2.0.5", - "newVersion": "4.11.3", - "newRelease": "40.amzn2.0.5", - "arch": "x86_64", - "repository": "" - }, - "rpm-build-libs": { - "name": "rpm-build-libs", - "version": "4.11.3", - "release": "40.amzn2.0.5", - "newVersion": "4.11.3", - "newRelease": "40.amzn2.0.5", - "arch": "x86_64", - "repository": "" - }, - "rpm-libs": { - "name": "rpm-libs", - "version": "4.11.3", - "release": "40.amzn2.0.5", - "newVersion": "4.11.3", - "newRelease": "40.amzn2.0.5", - "arch": "x86_64", - "repository": "" - }, - "rpm-plugin-systemd-inhibit": { - "name": "rpm-plugin-systemd-inhibit", - "version": "4.11.3", - "release": "40.amzn2.0.5", - "newVersion": "4.11.3", - "newRelease": "40.amzn2.0.5", - "arch": "x86_64", - "repository": "" - }, - "rsync": { - "name": "rsync", - "version": "3.1.2", - "release": "4.amzn2", - "newVersion": "3.1.2", - "newRelease": "4.amzn2", - "arch": "x86_64", - "repository": "" - }, - "rsyslog": { - "name": "rsyslog", - "version": "8.24.0", - "release": "52.amzn2", - "newVersion": "8.24.0", - "newRelease": "52.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3034", - "name": "rsyslogd" - } - ] - }, - "scl-utils": { - "name": "scl-utils", - "version": "20130529", - "release": "18.amzn2.0.1", - "newVersion": "20130529", - "newRelease": "18.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "screen": { - "name": "screen", - "version": "4.1.0", - "release": "0.25.20120314git3c2946.amzn2", - "newVersion": "4.1.0", - "newRelease": "0.25.20120314git3c2946.amzn2", - "arch": "x86_64", - "repository": "" - }, - "sed": { - "name": "sed", - "version": "4.2.2", - "release": "5.amzn2.0.2", - "newVersion": "4.2.2", - "newRelease": "5.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "selinux-policy": { - "name": "selinux-policy", - "version": "3.13.1", - "release": "192.amzn2.6.7", - "newVersion": "3.13.1", - "newRelease": "192.amzn2.6.7", - "arch": "noarch", - "repository": "" - }, - "selinux-policy-targeted": { - "name": "selinux-policy-targeted", - "version": "3.13.1", - "release": "192.amzn2.6.7", - "newVersion": "3.13.1", - "newRelease": "192.amzn2.6.7", - "arch": "noarch", - "repository": "" - }, - "setserial": { - "name": "setserial", - "version": "2.17", - "release": "33.amzn2.0.1", - "newVersion": "2.17", - "newRelease": "33.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "setup": { - "name": "setup", - "version": "2.8.71", - "release": "10.amzn2.0.1", - "newVersion": "2.8.71", - "newRelease": "10.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "setuptool": { - "name": "setuptool", - "version": "1.19.11", - "release": "8.amzn2.0.1", - "newVersion": "1.19.11", - "newRelease": "8.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "sgpio": { - "name": "sgpio", - "version": "1.2.0.10", - "release": "13.amzn2.0.1", - "newVersion": "1.2.0.10", - "newRelease": "13.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "shadow-utils": { - "name": "shadow-utils", - "version": "2:4.1.5.1", - "release": "24.amzn2.0.2", - "newVersion": "2:4.1.5.1", - "newRelease": "24.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "shared-mime-info": { - "name": "shared-mime-info", - "version": "1.8", - "release": "4.amzn2", - "newVersion": "1.8", - "newRelease": "4.amzn2", - "arch": "x86_64", - "repository": "" - }, - "slang": { - "name": "slang", - "version": "2.2.4", - "release": "11.amzn2.0.2", - "newVersion": "2.2.4", - "newRelease": "11.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "sqlite": { - "name": "sqlite", - "version": "3.7.17", - "release": "8.amzn2.1.1", - "newVersion": "3.7.17", - "newRelease": "8.amzn2.1.1", - "arch": "x86_64", - "repository": "" - }, - "sssd-client": { - "name": "sssd-client", - "version": "1.16.5", - "release": "10.amzn2.6", - "newVersion": "1.16.5", - "newRelease": "10.amzn2.6", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2443", - "name": "auditd" - }, - { - "pid": "3057", - "name": "atd" - }, - { - "pid": "3103", - "name": "agetty" - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2473", - "name": "lsmd" - }, - { - "pid": "2476", - "name": "systemd-logind" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3050", - "name": "crond" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "1700", - "name": "systemd-udevd" - }, - { - "pid": "2491", - "name": "chronyd" - }, - { - "pid": "3104", - "name": "agetty" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "strace": { - "name": "strace", - "version": "4.26", - "release": "1.amzn2.0.1", - "newVersion": "4.26", - "newRelease": "1.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "sudo": { - "name": "sudo", - "version": "1.8.23", - "release": "10.amzn2.1", - "newVersion": "1.8.23", - "newRelease": "10.amzn2.1", - "arch": "x86_64", - "repository": "" - }, - "sysctl-defaults": { - "name": "sysctl-defaults", - "version": "1.0", - "release": "2.amzn2", - "newVersion": "1.0", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "sysstat": { - "name": "sysstat", - "version": "10.1.5", - "release": "18.amzn2.0.1", - "newVersion": "10.1.5", - "newRelease": "18.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "system-release": { - "name": "system-release", - "version": "1:2", - "release": "13.amzn2", - "newVersion": "1:2", - "newRelease": "13.amzn2", - "arch": "x86_64", - "repository": "" - }, - "systemd": { - "name": "systemd", - "version": "219", - "release": "57.amzn2.0.12", - "newVersion": "219", - "newRelease": "57.amzn2.0.12", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1662", - "name": "systemd-journal" - }, - { - "pid": "2476", - "name": "systemd-logind" - }, - { - "pid": "1700", - "name": "systemd-udevd" - } - ] - }, - "systemd-libs": { - "name": "systemd-libs", - "version": "219", - "release": "57.amzn2.0.12", - "newVersion": "219", - "newRelease": "57.amzn2.0.12", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "2491", - "name": "chronyd" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "systemd-sysv": { - "name": "systemd-sysv", - "version": "219", - "release": "57.amzn2.0.12", - "newVersion": "219", - "newRelease": "57.amzn2.0.12", - "arch": "x86_64", - "repository": "" - }, - "systemtap-runtime": { - "name": "systemtap-runtime", - "version": "4.2", - "release": "1.amzn2.0.1", - "newVersion": "4.2", - "newRelease": "1.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "sysvinit-tools": { - "name": "sysvinit-tools", - "version": "2.88", - "release": "14.dsf.amzn2.0.2", - "newVersion": "2.88", - "newRelease": "14.dsf.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "tar": { - "name": "tar", - "version": "2:1.26", - "release": "35.amzn2", - "newVersion": "2:1.26", - "newRelease": "35.amzn2", - "arch": "x86_64", - "repository": "" - }, - "tcp_wrappers": { - "name": "tcp_wrappers", - "version": "7.6", - "release": "77.amzn2.0.2", - "newVersion": "7.6", - "newRelease": "77.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "tcp_wrappers-libs": { - "name": "tcp_wrappers-libs", - "version": "7.6", - "release": "77.amzn2.0.2", - "newVersion": "7.6", - "newRelease": "77.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2443", - "name": "auditd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "tcpdump": { - "name": "tcpdump", - "version": "14:4.9.2", - "release": "4.amzn2.1", - "newVersion": "14:4.9.2", - "newRelease": "4.amzn2.1", - "arch": "x86_64", - "repository": "" - }, - "tcsh": { - "name": "tcsh", - "version": "6.18.01", - "release": "15.amzn2.0.2", - "newVersion": "6.18.01", - "newRelease": "15.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "teamd": { - "name": "teamd", - "version": "1.27", - "release": "9.amzn2", - "newVersion": "1.27", - "newRelease": "9.amzn2", - "arch": "x86_64", - "repository": "" - }, - "time": { - "name": "time", - "version": "1.7", - "release": "45.amzn2.0.2", - "newVersion": "1.7", - "newRelease": "45.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "traceroute": { - "name": "traceroute", - "version": "3:2.0.22", - "release": "2.amzn2.0.1", - "newVersion": "3:2.0.22", - "newRelease": "2.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "tzdata": { - "name": "tzdata", - "version": "2020d", - "release": "2.amzn2", - "newVersion": "2020d", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "unzip": { - "name": "unzip", - "version": "6.0", - "release": "43.amzn2", - "newVersion": "6.0", - "newRelease": "43.amzn2", - "arch": "x86_64", - "repository": "" - }, - "update-motd": { - "name": "update-motd", - "version": "1.1.2", - "release": "2.amzn2", - "newVersion": "1.1.2", - "newRelease": "2.amzn2", - "arch": "noarch", - "repository": "" - }, - "usermode": { - "name": "usermode", - "version": "1.111", - "release": "5.amzn2.0.2", - "newVersion": "1.111", - "newRelease": "5.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "ustr": { - "name": "ustr", - "version": "1.0.4", - "release": "16.amzn2.0.3", - "newVersion": "1.0.4", - "newRelease": "16.amzn2.0.3", - "arch": "x86_64", - "repository": "" - }, - "util-linux": { - "name": "util-linux", - "version": "2.30.2", - "release": "2.amzn2.0.4", - "newVersion": "2.30.2", - "newRelease": "2.amzn2.0.4", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "3103", - "name": "agetty" - }, - { - "pid": "3104", - "name": "agetty" - } - ] - }, - "vim-common": { - "name": "vim-common", - "version": "2:8.1.1602", - "release": "1.amzn2", - "newVersion": "2:8.1.1602", - "newRelease": "1.amzn2", - "arch": "x86_64", - "repository": "" - }, - "vim-enhanced": { - "name": "vim-enhanced", - "version": "2:8.1.1602", - "release": "1.amzn2", - "newVersion": "2:8.1.1602", - "newRelease": "1.amzn2", - "arch": "x86_64", - "repository": "" - }, - "vim-filesystem": { - "name": "vim-filesystem", - "version": "2:8.1.1602", - "release": "1.amzn2", - "newVersion": "2:8.1.1602", - "newRelease": "1.amzn2", - "arch": "noarch", - "repository": "" - }, - "vim-minimal": { - "name": "vim-minimal", - "version": "2:8.1.1602", - "release": "1.amzn2", - "newVersion": "2:8.1.1602", - "newRelease": "1.amzn2", - "arch": "x86_64", - "repository": "" - }, - "virt-what": { - "name": "virt-what", - "version": "1.18", - "release": "4.amzn2", - "newVersion": "1.18", - "newRelease": "4.amzn2", - "arch": "x86_64", - "repository": "" - }, - "wget": { - "name": "wget", - "version": "1.14", - "release": "18.amzn2.1", - "newVersion": "1.14", - "newRelease": "18.amzn2.1", - "arch": "x86_64", - "repository": "" - }, - "which": { - "name": "which", - "version": "2.20", - "release": "7.amzn2.0.2", - "newVersion": "2.20", - "newRelease": "7.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "words": { - "name": "words", - "version": "3.0", - "release": "22.amzn2", - "newVersion": "3.0", - "newRelease": "22.amzn2", - "arch": "noarch", - "repository": "" - }, - "xfsdump": { - "name": "xfsdump", - "version": "3.1.8", - "release": "6.amzn2", - "newVersion": "3.1.8", - "newRelease": "6.amzn2", - "arch": "x86_64", - "repository": "" - }, - "xfsprogs": { - "name": "xfsprogs", - "version": "4.5.0", - "release": "18.amzn2.0.1", - "newVersion": "4.5.0", - "newRelease": "18.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "xz": { - "name": "xz", - "version": "5.2.2", - "release": "1.amzn2.0.2", - "newVersion": "5.2.2", - "newRelease": "1.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "xz-libs": { - "name": "xz-libs", - "version": "5.2.2", - "release": "1.amzn2.0.2", - "newVersion": "5.2.2", - "newRelease": "1.amzn2.0.2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1662", - "name": "systemd-journal" - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "1700", - "name": "systemd-udevd" - }, - { - "pid": "2491", - "name": "chronyd" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - }, - "yajl": { - "name": "yajl", - "version": "2.0.4", - "release": "4.amzn2.0.1", - "newVersion": "2.0.4", - "newRelease": "4.amzn2.0.1", - "arch": "x86_64", - "repository": "" - }, - "yum": { - "name": "yum", - "version": "3.4.3", - "release": "158.amzn2.0.5", - "newVersion": "3.4.3", - "newRelease": "158.amzn2.0.5", - "arch": "noarch", - "repository": "" - }, - "yum-langpacks": { - "name": "yum-langpacks", - "version": "0.4.2", - "release": "7.amzn2", - "newVersion": "0.4.2", - "newRelease": "7.amzn2", - "arch": "noarch", - "repository": "" - }, - "yum-metadata-parser": { - "name": "yum-metadata-parser", - "version": "1.1.4", - "release": "10.amzn2.0.2", - "newVersion": "1.1.4", - "newRelease": "10.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "yum-plugin-priorities": { - "name": "yum-plugin-priorities", - "version": "1.1.31", - "release": "46.amzn2.0.1", - "newVersion": "1.1.31", - "newRelease": "46.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "yum-utils": { - "name": "yum-utils", - "version": "1.1.31", - "release": "46.amzn2.0.1", - "newVersion": "1.1.31", - "newRelease": "46.amzn2.0.1", - "arch": "noarch", - "repository": "" - }, - "zip": { - "name": "zip", - "version": "3.0", - "release": "11.amzn2.0.2", - "newVersion": "3.0", - "newRelease": "11.amzn2.0.2", - "arch": "x86_64", - "repository": "" - }, - "zlib": { - "name": "zlib", - "version": "1.2.7", - "release": "18.amzn2", - "newVersion": "1.2.7", - "newRelease": "18.amzn2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "2978", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "3034", - "name": "rsyslogd" - }, - { - "pid": "2485", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "3312", - "name": "sshd" - }, - { - "pid": "2979", - "name": "pickup" - }, - { - "pid": "2512", - "name": "rngd" - }, - { - "pid": "2980", - "name": "qmgr" - }, - { - "pid": "2480", - "name": "dbus-daemon" - }, - { - "pid": "3330", - "name": "sshd" - }, - { - "pid": "1700", - "name": "systemd-udevd" - }, - { - "pid": "2491", - "name": "chronyd" - }, - { - "pid": "1693", - "name": "lvmetad" - }, - { - "pid": "3208", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "2833", - "name": "dhclient" - }, - { - "pid": "2717", - "name": "dhclient" - } - ] - } - }, - "constant": { - "scan": { - "logDir": "/var/log/vuls", - "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", - "default": { - "port": "22", - "scanMode": [ - "fast" - ] - }, - "servers": { - "ama": { - "serverName": "ama", - "user": "ec2-user", - "host": "18.183.255.208", - "port": "22", - "keyPath": "/home/ubuntu/.ssh/stg.pem", - "scanMode": [ - "fast-root" - ], - "wordpress": {} - } - }, - "cveDict": { - "Name": "cveDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", - "DebugSQL": false - }, - "ovalDict": { - "Name": "ovalDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", - "DebugSQL": false - }, - "gost": { - "Name": "gost", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", - "DebugSQL": false - }, - "exploit": { - "Name": "exploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", - "DebugSQL": false - }, - "metasploit": { - "Name": "metasploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", - "DebugSQL": false - } - }, - "report": { - "default": {}, - "cveDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "ovalDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "gost": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "exploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "metasploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - } - } - } -} diff --git a/integration/data/centos_7.json b/integration/data/centos_7.json deleted file mode 100755 index 9b26d634..00000000 --- a/integration/data/centos_7.json +++ /dev/null @@ -1,5634 +0,0 @@ -{ - "jsonVersion": 4, - "lang": "", - "serverUUID": "", - "serverName": "centos_7", - "family": "centos", - "release": "7.7.1908", - "container": { - "containerID": "", - "name": "", - "image": "", - "type": "", - "uuid": "" - }, - "platform": { - "name": "aws", - "instanceID": "i-04514844352ecc500" - }, - "ipv4Addrs": [ - "192.168.0.20" - ], - "scannedAt": "2021-03-24T15:20:39.666753334+09:00", - "scanMode": "fast-root mode", - "scannedVersion": "v0.15.9", - "scannedRevision": "build-20210324_123209_fc3b438", - "scannedBy": "dev", - "scannedVia": "remote", - "scannedIpv4Addrs": [ - "172.21.0.1", - "172.19.0.1", - "172.18.0.1", - "172.17.0.1", - "172.20.0.1" - ], - "reportedAt": "0001-01-01T00:00:00Z", - "reportedVersion": "", - "reportedRevision": "", - "reportedBy": "", - "errors": [], - "warnings": [], - "scannedCves": {}, - "runningKernel": { - "release": "3.10.0-1062.12.1.el7.x86_64", - "version": "", - "rebootRequired": false - }, - "packages": { - "PyYAML": { - "name": "PyYAML", - "version": "3.10", - "release": "11.el7", - "newVersion": "3.10", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "acl": { - "name": "acl", - "version": "2.2.51", - "release": "14.el7", - "newVersion": "2.2.51", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "base" - }, - "audit": { - "name": "audit", - "version": "2.8.5", - "release": "4.el7", - "newVersion": "2.8.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "441", - "name": "auditd" - } - ] - }, - "audit-libs": { - "name": "audit-libs", - "version": "2.8.5", - "release": "4.el7", - "newVersion": "2.8.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "1063", - "name": "crond" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "441", - "name": "auditd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "audit-libs-python": { - "name": "audit-libs-python", - "version": "2.8.5", - "release": "4.el7", - "newVersion": "2.8.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "authconfig": { - "name": "authconfig", - "version": "6.2.8", - "release": "30.el7", - "newVersion": "6.2.8", - "newRelease": "30.el7", - "arch": "x86_64", - "repository": "" - }, - "basesystem": { - "name": "basesystem", - "version": "10.0", - "release": "7.el7.centos", - "newVersion": "10.0", - "newRelease": "7.el7.centos", - "arch": "noarch", - "repository": "" - }, - "bash": { - "name": "bash", - "version": "4.2.46", - "release": "33.el7", - "newVersion": "4.2.46", - "newRelease": "34.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "2688", - "name": "bash" - } - ] - }, - "bind-export-libs": { - "name": "bind-export-libs", - "version": "32:9.11.4", - "release": "9.P2.el7", - "newVersion": "32:9.11.4", - "newRelease": "26.P2.el7_9.4", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "843", - "name": "dhclient" - } - ] - }, - "binutils": { - "name": "binutils", - "version": "2.27", - "release": "41.base.el7_7.2", - "newVersion": "2.27", - "newRelease": "44.base.el7", - "arch": "x86_64", - "repository": "base" - }, - "btrfs-progs": { - "name": "btrfs-progs", - "version": "4.9.1", - "release": "1.el7", - "newVersion": "4.9.1", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "bzip2-libs": { - "name": "bzip2-libs", - "version": "1.0.6", - "release": "13.el7", - "newVersion": "1.0.6", - "newRelease": "13.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "553", - "name": "chronyd" - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "ca-certificates": { - "name": "ca-certificates", - "version": "2019.2.32", - "release": "76.el7_7", - "newVersion": "2020.2.41", - "newRelease": "70.0.el7_8", - "arch": "noarch", - "repository": "base" - }, - "centos-release": { - "name": "centos-release", - "version": "7", - "release": "7.1908.0.el7.centos", - "newVersion": "7", - "newRelease": "9.2009.1.el7.centos", - "arch": "x86_64", - "repository": "updates" - }, - "checkpolicy": { - "name": "checkpolicy", - "version": "2.5", - "release": "8.el7", - "newVersion": "2.5", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "chkconfig": { - "name": "chkconfig", - "version": "1.7.4", - "release": "1.el7", - "newVersion": "1.7.6", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "base" - }, - "chrony": { - "name": "chrony", - "version": "3.4", - "release": "1.el7", - "newVersion": "3.4", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "553", - "name": "chronyd" - } - ] - }, - "cloud-init": { - "name": "cloud-init", - "version": "18.5", - "release": "3.el7.centos", - "newVersion": "19.4", - "newRelease": "7.el7.centos.4", - "arch": "x86_64", - "repository": "updates" - }, - "cloud-utils-growpart": { - "name": "cloud-utils-growpart", - "version": "0.29", - "release": "5.el7", - "newVersion": "0.29", - "newRelease": "5.el7", - "arch": "noarch", - "repository": "" - }, - "coreutils": { - "name": "coreutils", - "version": "8.22", - "release": "24.el7", - "newVersion": "8.22", - "newRelease": "24.el7_9.2", - "arch": "x86_64", - "repository": "updates" - }, - "cpio": { - "name": "cpio", - "version": "2.11", - "release": "27.el7", - "newVersion": "2.11", - "newRelease": "28.el7", - "arch": "x86_64", - "repository": "base" - }, - "cracklib": { - "name": "cracklib", - "version": "2.9.0", - "release": "11.el7", - "newVersion": "2.9.0", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "1158", - "name": "sshd" - } - ] - }, - "cracklib-dicts": { - "name": "cracklib-dicts", - "version": "2.9.0", - "release": "11.el7", - "newVersion": "2.9.0", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "cronie": { - "name": "cronie", - "version": "1.4.11", - "release": "23.el7", - "newVersion": "1.4.11", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1063", - "name": "crond" - } - ] - }, - "cronie-anacron": { - "name": "cronie-anacron", - "version": "1.4.11", - "release": "23.el7", - "newVersion": "1.4.11", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "" - }, - "crontabs": { - "name": "crontabs", - "version": "1.11", - "release": "6.20121102git.el7", - "newVersion": "1.11", - "newRelease": "6.20121102git.el7", - "arch": "noarch", - "repository": "" - }, - "cryptsetup-libs": { - "name": "cryptsetup-libs", - "version": "2.0.3", - "release": "5.el7", - "newVersion": "2.0.3", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "base" - }, - "curl": { - "name": "curl", - "version": "7.29.0", - "release": "54.el7_7.2", - "newVersion": "7.29.0", - "newRelease": "59.el7_9.1", - "arch": "x86_64", - "repository": "updates" - }, - "cyrus-sasl-lib": { - "name": "cyrus-sasl-lib", - "version": "2.1.26", - "release": "23.el7", - "newVersion": "2.1.26", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "dbus": { - "name": "dbus", - "version": "1:1.10.24", - "release": "13.el7_6", - "newVersion": "1:1.10.24", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "543", - "name": "dbus-daemon" - } - ] - }, - "dbus-glib": { - "name": "dbus-glib", - "version": "0.100", - "release": "7.el7", - "newVersion": "0.100", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - } - ] - }, - "dbus-libs": { - "name": "dbus-libs", - "version": "1:1.10.24", - "release": "13.el7_6", - "newVersion": "1:1.10.24", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "543", - "name": "dbus-daemon" - } - ] - }, - "dbus-python": { - "name": "dbus-python", - "version": "1.1.1", - "release": "9.el7", - "newVersion": "1.1.1", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - } - ] - }, - "device-mapper": { - "name": "device-mapper", - "version": "7:1.02.158", - "release": "2.el7_7.2", - "newVersion": "7:1.02.170", - "newRelease": "6.el7_9.4", - "arch": "x86_64", - "repository": "updates" - }, - "device-mapper-libs": { - "name": "device-mapper-libs", - "version": "7:1.02.158", - "release": "2.el7_7.2", - "newVersion": "7:1.02.170", - "newRelease": "6.el7_9.4", - "arch": "x86_64", - "repository": "updates" - }, - "dhclient": { - "name": "dhclient", - "version": "12:4.2.5", - "release": "77.el7.centos", - "newVersion": "12:4.2.5", - "newRelease": "82.el7.centos", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "843", - "name": "dhclient" - } - ] - }, - "dhcp-common": { - "name": "dhcp-common", - "version": "12:4.2.5", - "release": "77.el7.centos", - "newVersion": "12:4.2.5", - "newRelease": "82.el7.centos", - "arch": "x86_64", - "repository": "base" - }, - "dhcp-libs": { - "name": "dhcp-libs", - "version": "12:4.2.5", - "release": "77.el7.centos", - "newVersion": "12:4.2.5", - "newRelease": "82.el7.centos", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "843", - "name": "dhclient" - } - ] - }, - "diffutils": { - "name": "diffutils", - "version": "3.3", - "release": "5.el7", - "newVersion": "3.3", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "dmidecode": { - "name": "dmidecode", - "version": "1:3.2", - "release": "3.el7", - "newVersion": "1:3.2", - "newRelease": "5.el7_9.1", - "arch": "x86_64", - "repository": "updates" - }, - "dracut": { - "name": "dracut", - "version": "033", - "release": "564.el7", - "newVersion": "033", - "newRelease": "572.el7", - "arch": "x86_64", - "repository": "base" - }, - "dracut-config-generic": { - "name": "dracut-config-generic", - "version": "033", - "release": "564.el7", - "newVersion": "033", - "newRelease": "572.el7", - "arch": "x86_64", - "repository": "base" - }, - "dracut-config-rescue": { - "name": "dracut-config-rescue", - "version": "033", - "release": "564.el7", - "newVersion": "033", - "newRelease": "572.el7", - "arch": "x86_64", - "repository": "base" - }, - "dracut-network": { - "name": "dracut-network", - "version": "033", - "release": "564.el7", - "newVersion": "033", - "newRelease": "572.el7", - "arch": "x86_64", - "repository": "base" - }, - "e2fsprogs": { - "name": "e2fsprogs", - "version": "1.42.9", - "release": "16.el7", - "newVersion": "1.42.9", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "base" - }, - "e2fsprogs-libs": { - "name": "e2fsprogs-libs", - "version": "1.42.9", - "release": "16.el7", - "newVersion": "1.42.9", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "base" - }, - "elfutils-default-yama-scope": { - "name": "elfutils-default-yama-scope", - "version": "0.176", - "release": "2.el7", - "newVersion": "0.176", - "newRelease": "5.el7", - "arch": "noarch", - "repository": "base" - }, - "elfutils-libelf": { - "name": "elfutils-libelf", - "version": "0.176", - "release": "2.el7", - "newVersion": "0.176", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "553", - "name": "chronyd" - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "elfutils-libs": { - "name": "elfutils-libs", - "version": "0.176", - "release": "2.el7", - "newVersion": "0.176", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "553", - "name": "chronyd" - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "ethtool": { - "name": "ethtool", - "version": "2:4.8", - "release": "10.el7", - "newVersion": "2:4.8", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "expat": { - "name": "expat", - "version": "2.1.0", - "release": "10.el7_3", - "newVersion": "2.1.0", - "newRelease": "12.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "543", - "name": "dbus-daemon" - } - ] - }, - "file": { - "name": "file", - "version": "5.11", - "release": "35.el7", - "newVersion": "5.11", - "newRelease": "37.el7", - "arch": "x86_64", - "repository": "base" - }, - "file-libs": { - "name": "file-libs", - "version": "5.11", - "release": "35.el7", - "newVersion": "5.11", - "newRelease": "37.el7", - "arch": "x86_64", - "repository": "base" - }, - "filesystem": { - "name": "filesystem", - "version": "3.2", - "release": "25.el7", - "newVersion": "3.2", - "newRelease": "25.el7", - "arch": "x86_64", - "repository": "" - }, - "findutils": { - "name": "findutils", - "version": "1:4.5.11", - "release": "6.el7", - "newVersion": "1:4.5.11", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "fipscheck": { - "name": "fipscheck", - "version": "1.4.1", - "release": "6.el7", - "newVersion": "1.4.1", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "fipscheck-lib": { - "name": "fipscheck-lib", - "version": "1.4.1", - "release": "6.el7", - "newVersion": "1.4.1", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "freetype": { - "name": "freetype", - "version": "2.8", - "release": "14.el7", - "newVersion": "2.8", - "newRelease": "14.el7_9.1", - "arch": "x86_64", - "repository": "updates" - }, - "gawk": { - "name": "gawk", - "version": "4.0.2", - "release": "4.el7_3.1", - "newVersion": "4.0.2", - "newRelease": "4.el7_3.1", - "arch": "x86_64", - "repository": "" - }, - "gdbm": { - "name": "gdbm", - "version": "1.10", - "release": "8.el7", - "newVersion": "1.10", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "gettext": { - "name": "gettext", - "version": "0.19.8.1", - "release": "2.el7", - "newVersion": "0.19.8.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "base" - }, - "gettext-libs": { - "name": "gettext-libs", - "version": "0.19.8.1", - "release": "2.el7", - "newVersion": "0.19.8.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "base" - }, - "glib2": { - "name": "glib2", - "version": "2.56.1", - "release": "5.el7", - "newVersion": "2.56.1", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "538", - "name": "polkitd" - } - ] - }, - "glibc": { - "name": "glibc", - "version": "2.17", - "release": "292.el7", - "newVersion": "2.17", - "newRelease": "323.el7_9", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "549", - "name": "gssproxy" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1064", - "name": "agetty" - }, - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "416", - "name": "systemd-udevd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "1063", - "name": "crond" - }, - { - "pid": "376", - "name": "systemd-journal" - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "541", - "name": "systemd-logind" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1065", - "name": "agetty" - }, - { - "pid": "441", - "name": "auditd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "2688", - "name": "bash" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "553", - "name": "chronyd" - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "glibc-common": { - "name": "glibc-common", - "version": "2.17", - "release": "292.el7", - "newVersion": "2.17", - "newRelease": "323.el7_9", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "549", - "name": "gssproxy" - }, - { - "pid": "1064", - "name": "agetty" - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "1063", - "name": "crond" - }, - { - "pid": "1065", - "name": "agetty" - }, - { - "pid": "2688", - "name": "bash" - } - ] - }, - "gmp": { - "name": "gmp", - "version": "1:6.0.0", - "release": "15.el7", - "newVersion": "1:6.0.0", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "" - }, - "gnupg2": { - "name": "gnupg2", - "version": "2.0.22", - "release": "5.el7_5", - "newVersion": "2.0.22", - "newRelease": "5.el7_5", - "arch": "x86_64", - "repository": "" - }, - "gobject-introspection": { - "name": "gobject-introspection", - "version": "1.56.1", - "release": "1.el7", - "newVersion": "1.56.1", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - } - ] - }, - "gpg-pubkey": { - "name": "gpg-pubkey", - "version": "f4a80eb5", - "release": "53a7ff4b", - "newVersion": "f4a80eb5", - "newRelease": "53a7ff4b", - "arch": "(none)", - "repository": "" - }, - "gpgme": { - "name": "gpgme", - "version": "1.3.2", - "release": "5.el7", - "newVersion": "1.3.2", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "grep": { - "name": "grep", - "version": "2.20", - "release": "3.el7", - "newVersion": "2.20", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "groff-base": { - "name": "groff-base", - "version": "1.22.2", - "release": "8.el7", - "newVersion": "1.22.2", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "grub2": { - "name": "grub2", - "version": "1:2.02", - "release": "0.80.el7.centos", - "newVersion": "1:2.02", - "newRelease": "0.87.el7.centos.6", - "arch": "x86_64", - "repository": "updates" - }, - "grub2-common": { - "name": "grub2-common", - "version": "1:2.02", - "release": "0.80.el7.centos", - "newVersion": "1:2.02", - "newRelease": "0.87.el7.centos.6", - "arch": "noarch", - "repository": "updates" - }, - "grub2-pc": { - "name": "grub2-pc", - "version": "1:2.02", - "release": "0.80.el7.centos", - "newVersion": "1:2.02", - "newRelease": "0.87.el7.centos.6", - "arch": "x86_64", - "repository": "updates" - }, - "grub2-pc-modules": { - "name": "grub2-pc-modules", - "version": "1:2.02", - "release": "0.80.el7.centos", - "newVersion": "1:2.02", - "newRelease": "0.87.el7.centos.6", - "arch": "noarch", - "repository": "updates" - }, - "grub2-tools": { - "name": "grub2-tools", - "version": "1:2.02", - "release": "0.80.el7.centos", - "newVersion": "1:2.02", - "newRelease": "0.87.el7.centos.6", - "arch": "x86_64", - "repository": "updates" - }, - "grub2-tools-extra": { - "name": "grub2-tools-extra", - "version": "1:2.02", - "release": "0.80.el7.centos", - "newVersion": "1:2.02", - "newRelease": "0.87.el7.centos.6", - "arch": "x86_64", - "repository": "updates" - }, - "grub2-tools-minimal": { - "name": "grub2-tools-minimal", - "version": "1:2.02", - "release": "0.80.el7.centos", - "newVersion": "1:2.02", - "newRelease": "0.87.el7.centos.6", - "arch": "x86_64", - "repository": "updates" - }, - "grubby": { - "name": "grubby", - "version": "8.28", - "release": "26.el7", - "newVersion": "8.28", - "newRelease": "26.el7", - "arch": "x86_64", - "repository": "" - }, - "gssproxy": { - "name": "gssproxy", - "version": "0.7.0", - "release": "26.el7", - "newVersion": "0.7.0", - "newRelease": "29.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "549", - "name": "gssproxy" - } - ] - }, - "gzip": { - "name": "gzip", - "version": "1.5", - "release": "10.el7", - "newVersion": "1.5", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "hardlink": { - "name": "hardlink", - "version": "1:1.0", - "release": "19.el7", - "newVersion": "1:1.0", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "" - }, - "hostname": { - "name": "hostname", - "version": "3.13", - "release": "3.el7_7.1", - "newVersion": "3.13", - "newRelease": "3.el7_7.1", - "arch": "x86_64", - "repository": "" - }, - "hwdata": { - "name": "hwdata", - "version": "0.252", - "release": "9.3.el7", - "newVersion": "0.252", - "newRelease": "9.7.el7", - "arch": "x86_64", - "repository": "base" - }, - "info": { - "name": "info", - "version": "5.1", - "release": "5.el7", - "newVersion": "5.1", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "initscripts": { - "name": "initscripts", - "version": "9.49.47", - "release": "1.el7", - "newVersion": "9.49.53", - "newRelease": "1.el7_9.1", - "arch": "x86_64", - "repository": "updates" - }, - "iproute": { - "name": "iproute", - "version": "4.11.0", - "release": "25.el7_7.2", - "newVersion": "4.11.0", - "newRelease": "30.el7", - "arch": "x86_64", - "repository": "base" - }, - "iptables": { - "name": "iptables", - "version": "1.4.21", - "release": "33.el7", - "newVersion": "1.4.21", - "newRelease": "35.el7", - "arch": "x86_64", - "repository": "base" - }, - "iputils": { - "name": "iputils", - "version": "20160308", - "release": "10.el7", - "newVersion": "20160308", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "irqbalance": { - "name": "irqbalance", - "version": "3:1.0.7", - "release": "12.el7", - "newVersion": "3:1.0.7", - "newRelease": "12.el7", - "arch": "x86_64", - "repository": "" - }, - "iwl7265-firmware": { - "name": "iwl7265-firmware", - "version": "22.0.7.0", - "release": "72.el7", - "newVersion": "22.0.7.0", - "newRelease": "72.el7", - "arch": "noarch", - "repository": "" - }, - "jansson": { - "name": "jansson", - "version": "2.10", - "release": "1.el7", - "newVersion": "2.10", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "json-c": { - "name": "json-c", - "version": "0.11", - "release": "4.el7_0", - "newVersion": "0.11", - "newRelease": "4.el7_0", - "arch": "x86_64", - "repository": "" - }, - "kbd": { - "name": "kbd", - "version": "1.15.5", - "release": "15.el7", - "newVersion": "1.15.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "" - }, - "kbd-legacy": { - "name": "kbd-legacy", - "version": "1.15.5", - "release": "15.el7", - "newVersion": "1.15.5", - "newRelease": "15.el7", - "arch": "noarch", - "repository": "" - }, - "kbd-misc": { - "name": "kbd-misc", - "version": "1.15.5", - "release": "15.el7", - "newVersion": "1.15.5", - "newRelease": "15.el7", - "arch": "noarch", - "repository": "" - }, - "kernel": { - "name": "kernel", - "version": "3.10.0", - "release": "1062.12.1.el7", - "newVersion": "3.10.0", - "newRelease": "1160.21.1.el7", - "arch": "x86_64", - "repository": "updates" - }, - "kernel-tools": { - "name": "kernel-tools", - "version": "3.10.0", - "release": "1062.12.1.el7", - "newVersion": "3.10.0", - "newRelease": "1160.21.1.el7", - "arch": "x86_64", - "repository": "updates" - }, - "kernel-tools-libs": { - "name": "kernel-tools-libs", - "version": "3.10.0", - "release": "1062.12.1.el7", - "newVersion": "3.10.0", - "newRelease": "1160.21.1.el7", - "arch": "x86_64", - "repository": "updates" - }, - "kexec-tools": { - "name": "kexec-tools", - "version": "2.0.15", - "release": "33.el7", - "newVersion": "2.0.15", - "newRelease": "51.el7_9.1", - "arch": "x86_64", - "repository": "updates" - }, - "keyutils": { - "name": "keyutils", - "version": "1.5.8", - "release": "3.el7", - "newVersion": "1.5.8", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "keyutils-libs": { - "name": "keyutils-libs", - "version": "1.5.8", - "release": "3.el7", - "newVersion": "1.5.8", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "549", - "name": "gssproxy" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "441", - "name": "auditd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "kmod": { - "name": "kmod", - "version": "20", - "release": "25.el7", - "newVersion": "20", - "newRelease": "28.el7", - "arch": "x86_64", - "repository": "base" - }, - "kmod-libs": { - "name": "kmod-libs", - "version": "20", - "release": "25.el7", - "newVersion": "20", - "newRelease": "28.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "416", - "name": "systemd-udevd" - } - ] - }, - "kpartx": { - "name": "kpartx", - "version": "0.4.9", - "release": "127.el7", - "newVersion": "0.4.9", - "newRelease": "134.el7_9", - "arch": "x86_64", - "repository": "updates" - }, - "krb5-libs": { - "name": "krb5-libs", - "version": "1.15.1", - "release": "37.el7_7.2", - "newVersion": "1.15.1", - "newRelease": "50.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "549", - "name": "gssproxy" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "441", - "name": "auditd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "less": { - "name": "less", - "version": "458", - "release": "9.el7", - "newVersion": "458", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "libacl": { - "name": "libacl", - "version": "2.2.51", - "release": "14.el7", - "newVersion": "2.2.51", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "416", - "name": "systemd-udevd" - }, - { - "pid": "376", - "name": "systemd-journal" - }, - { - "pid": "541", - "name": "systemd-logind" - } - ] - }, - "libassuan": { - "name": "libassuan", - "version": "2.1.0", - "release": "3.el7", - "newVersion": "2.1.0", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "libattr": { - "name": "libattr", - "version": "2.4.46", - "release": "13.el7", - "newVersion": "2.4.46", - "newRelease": "13.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "416", - "name": "systemd-udevd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "376", - "name": "systemd-journal" - }, - { - "pid": "541", - "name": "systemd-logind" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "553", - "name": "chronyd" - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "libbasicobjects": { - "name": "libbasicobjects", - "version": "0.1.1", - "release": "32.el7", - "newVersion": "0.1.1", - "newRelease": "32.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "549", - "name": "gssproxy" - } - ] - }, - "libblkid": { - "name": "libblkid", - "version": "2.23.2", - "release": "61.el7_7.1", - "newVersion": "2.23.2", - "newRelease": "65.el7_9.1", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "416", - "name": "systemd-udevd" - }, - { - "pid": "538", - "name": "polkitd" - } - ] - }, - "libcap": { - "name": "libcap", - "version": "2.22", - "release": "10.el7", - "newVersion": "2.22", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-logind" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "553", - "name": "chronyd" - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "libcap-ng": { - "name": "libcap-ng", - "version": "0.7.5", - "release": "4.el7", - "newVersion": "0.7.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "1063", - "name": "crond" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "441", - "name": "auditd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "libcgroup": { - "name": "libcgroup", - "version": "0.41", - "release": "21.el7", - "newVersion": "0.41", - "newRelease": "21.el7", - "arch": "x86_64", - "repository": "" - }, - "libcollection": { - "name": "libcollection", - "version": "0.7.0", - "release": "32.el7", - "newVersion": "0.7.0", - "newRelease": "32.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "549", - "name": "gssproxy" - } - ] - }, - "libcom_err": { - "name": "libcom_err", - "version": "1.42.9", - "release": "16.el7", - "newVersion": "1.42.9", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "549", - "name": "gssproxy" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "441", - "name": "auditd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "libcroco": { - "name": "libcroco", - "version": "0.6.12", - "release": "4.el7", - "newVersion": "0.6.12", - "newRelease": "6.el7_9", - "arch": "x86_64", - "repository": "updates" - }, - "libcurl": { - "name": "libcurl", - "version": "7.29.0", - "release": "54.el7_7.2", - "newVersion": "7.29.0", - "newRelease": "59.el7_9.1", - "arch": "x86_64", - "repository": "updates" - }, - "libdaemon": { - "name": "libdaemon", - "version": "0.14", - "release": "7.el7", - "newVersion": "0.14", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "libdb": { - "name": "libdb", - "version": "5.3.21", - "release": "25.el7", - "newVersion": "5.3.21", - "newRelease": "25.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1048", - "name": "pickup" - } - ] - }, - "libdb-utils": { - "name": "libdb-utils", - "version": "5.3.21", - "release": "25.el7", - "newVersion": "5.3.21", - "newRelease": "25.el7", - "arch": "x86_64", - "repository": "" - }, - "libedit": { - "name": "libedit", - "version": "3.0", - "release": "12.20121213cvs.el7", - "newVersion": "3.0", - "newRelease": "12.20121213cvs.el7", - "arch": "x86_64", - "repository": "" - }, - "libestr": { - "name": "libestr", - "version": "0.1.9", - "release": "2.el7", - "newVersion": "0.1.9", - "newRelease": "2.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "libevent": { - "name": "libevent", - "version": "2.0.21", - "release": "4.el7", - "newVersion": "2.0.21", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "549", - "name": "gssproxy" - } - ] - }, - "libfastjson": { - "name": "libfastjson", - "version": "0.99.4", - "release": "3.el7", - "newVersion": "0.99.4", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "libffi": { - "name": "libffi", - "version": "3.0.13", - "release": "18.el7", - "newVersion": "3.0.13", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "538", - "name": "polkitd" - } - ] - }, - "libgcc": { - "name": "libgcc", - "version": "4.8.5", - "release": "39.el7", - "newVersion": "4.8.5", - "newRelease": "44.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "416", - "name": "systemd-udevd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "376", - "name": "systemd-journal" - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "541", - "name": "systemd-logind" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "553", - "name": "chronyd" - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "libgcrypt": { - "name": "libgcrypt", - "version": "1.5.3", - "release": "14.el7", - "newVersion": "1.5.3", - "newRelease": "14.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "376", - "name": "systemd-journal" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "libgomp": { - "name": "libgomp", - "version": "4.8.5", - "release": "39.el7", - "newVersion": "4.8.5", - "newRelease": "44.el7", - "arch": "x86_64", - "repository": "base" - }, - "libgpg-error": { - "name": "libgpg-error", - "version": "1.12", - "release": "3.el7", - "newVersion": "1.12", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "376", - "name": "systemd-journal" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "libidn": { - "name": "libidn", - "version": "1.28", - "release": "4.el7", - "newVersion": "1.28", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libini_config": { - "name": "libini_config", - "version": "1.3.1", - "release": "32.el7", - "newVersion": "1.3.1", - "newRelease": "32.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "549", - "name": "gssproxy" - } - ] - }, - "libmnl": { - "name": "libmnl", - "version": "1.0.3", - "release": "7.el7", - "newVersion": "1.0.3", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "libmount": { - "name": "libmount", - "version": "2.23.2", - "release": "61.el7_7.1", - "newVersion": "2.23.2", - "newRelease": "65.el7_9.1", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "538", - "name": "polkitd" - } - ] - }, - "libndp": { - "name": "libndp", - "version": "1.2", - "release": "9.el7", - "newVersion": "1.2", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "libnetfilter_conntrack": { - "name": "libnetfilter_conntrack", - "version": "1.0.6", - "release": "1.el7_3", - "newVersion": "1.0.6", - "newRelease": "1.el7_3", - "arch": "x86_64", - "repository": "" - }, - "libnfnetlink": { - "name": "libnfnetlink", - "version": "1.0.1", - "release": "4.el7", - "newVersion": "1.0.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libnfsidmap": { - "name": "libnfsidmap", - "version": "0.25", - "release": "19.el7", - "newVersion": "0.25", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "" - }, - "libnl3": { - "name": "libnl3", - "version": "3.2.28", - "release": "4.el7", - "newVersion": "3.2.28", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libnl3-cli": { - "name": "libnl3-cli", - "version": "3.2.28", - "release": "4.el7", - "newVersion": "3.2.28", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libpath_utils": { - "name": "libpath_utils", - "version": "0.2.1", - "release": "32.el7", - "newVersion": "0.2.1", - "newRelease": "32.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "549", - "name": "gssproxy" - } - ] - }, - "libpipeline": { - "name": "libpipeline", - "version": "1.2.3", - "release": "3.el7", - "newVersion": "1.2.3", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "libpng": { - "name": "libpng", - "version": "2:1.5.13", - "release": "7.el7_2", - "newVersion": "2:1.5.13", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "base" - }, - "libpwquality": { - "name": "libpwquality", - "version": "1.2.3", - "release": "5.el7", - "newVersion": "1.2.3", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "1158", - "name": "sshd" - } - ] - }, - "libref_array": { - "name": "libref_array", - "version": "0.1.5", - "release": "32.el7", - "newVersion": "0.1.5", - "newRelease": "32.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "549", - "name": "gssproxy" - } - ] - }, - "libseccomp": { - "name": "libseccomp", - "version": "2.3.1", - "release": "3.el7", - "newVersion": "2.3.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "553", - "name": "chronyd" - } - ] - }, - "libselinux": { - "name": "libselinux", - "version": "2.5", - "release": "14.1.el7", - "newVersion": "2.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "549", - "name": "gssproxy" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "416", - "name": "systemd-udevd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "1063", - "name": "crond" - }, - { - "pid": "376", - "name": "systemd-journal" - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "541", - "name": "systemd-logind" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "441", - "name": "auditd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "libselinux-python": { - "name": "libselinux-python", - "version": "2.5", - "release": "14.1.el7", - "newVersion": "2.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "base" - }, - "libselinux-utils": { - "name": "libselinux-utils", - "version": "2.5", - "release": "14.1.el7", - "newVersion": "2.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "base" - }, - "libsemanage": { - "name": "libsemanage", - "version": "2.5", - "release": "14.el7", - "newVersion": "2.5", - "newRelease": "14.el7", - "arch": "x86_64", - "repository": "" - }, - "libsemanage-python": { - "name": "libsemanage-python", - "version": "2.5", - "release": "14.el7", - "newVersion": "2.5", - "newRelease": "14.el7", - "arch": "x86_64", - "repository": "" - }, - "libsepol": { - "name": "libsepol", - "version": "2.5", - "release": "10.el7", - "newVersion": "2.5", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "libsmartcols": { - "name": "libsmartcols", - "version": "2.23.2", - "release": "61.el7_7.1", - "newVersion": "2.23.2", - "newRelease": "65.el7_9.1", - "arch": "x86_64", - "repository": "updates" - }, - "libss": { - "name": "libss", - "version": "1.42.9", - "release": "16.el7", - "newVersion": "1.42.9", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "base" - }, - "libssh2": { - "name": "libssh2", - "version": "1.8.0", - "release": "3.el7", - "newVersion": "1.8.0", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "base" - }, - "libstdc++": { - "name": "libstdc++", - "version": "4.8.5", - "release": "39.el7", - "newVersion": "4.8.5", - "newRelease": "44.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1048", - "name": "pickup" - } - ] - }, - "libsysfs": { - "name": "libsysfs", - "version": "2.1.0", - "release": "16.el7", - "newVersion": "2.1.0", - "newRelease": "16.el7", - "arch": "x86_64", - "repository": "" - }, - "libtasn1": { - "name": "libtasn1", - "version": "4.10", - "release": "1.el7", - "newVersion": "4.10", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "libteam": { - "name": "libteam", - "version": "1.27", - "release": "9.el7", - "newVersion": "1.29", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "base" - }, - "libtirpc": { - "name": "libtirpc", - "version": "0.2.4", - "release": "0.16.el7", - "newVersion": "0.2.4", - "newRelease": "0.16.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - } - ] - }, - "libunistring": { - "name": "libunistring", - "version": "0.9.3", - "release": "9.el7", - "newVersion": "0.9.3", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "libuser": { - "name": "libuser", - "version": "0.60", - "release": "9.el7", - "newVersion": "0.60", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "libutempter": { - "name": "libutempter", - "version": "1.1.6", - "release": "4.el7", - "newVersion": "1.1.6", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libuuid": { - "name": "libuuid", - "version": "2.23.2", - "release": "61.el7_7.1", - "newVersion": "2.23.2", - "newRelease": "65.el7_9.1", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "416", - "name": "systemd-udevd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "libverto": { - "name": "libverto", - "version": "0.2.5", - "release": "4.el7", - "newVersion": "0.2.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "549", - "name": "gssproxy" - } - ] - }, - "libverto-libevent": { - "name": "libverto-libevent", - "version": "0.2.5", - "release": "4.el7", - "newVersion": "0.2.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "549", - "name": "gssproxy" - } - ] - }, - "libxml2": { - "name": "libxml2", - "version": "2.9.1", - "release": "6.el7_2.3", - "newVersion": "2.9.1", - "newRelease": "6.el7.5", - "arch": "x86_64", - "repository": "base" - }, - "libxml2-python": { - "name": "libxml2-python", - "version": "2.9.1", - "release": "6.el7_2.3", - "newVersion": "2.9.1", - "newRelease": "6.el7.5", - "arch": "x86_64", - "repository": "base" - }, - "libyaml": { - "name": "libyaml", - "version": "0.1.4", - "release": "11.el7_0", - "newVersion": "0.1.4", - "newRelease": "11.el7_0", - "arch": "x86_64", - "repository": "" - }, - "logrotate": { - "name": "logrotate", - "version": "3.8.6", - "release": "17.el7", - "newVersion": "3.8.6", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "base" - }, - "lshw": { - "name": "lshw", - "version": "B.02.18", - "release": "13.el7", - "newVersion": "B.02.18", - "newRelease": "17.el7", - "arch": "x86_64", - "repository": "base" - }, - "lsof": { - "name": "lsof", - "version": "4.87", - "release": "6.el7", - "newVersion": "4.87", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "lua": { - "name": "lua", - "version": "5.1.4", - "release": "15.el7", - "newVersion": "5.1.4", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "" - }, - "lz4": { - "name": "lz4", - "version": "1.7.5", - "release": "3.el7", - "newVersion": "1.8.3", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "376", - "name": "systemd-journal" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "lzo": { - "name": "lzo", - "version": "2.06", - "release": "8.el7", - "newVersion": "2.06", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "make": { - "name": "make", - "version": "1:3.82", - "release": "24.el7", - "newVersion": "1:3.82", - "newRelease": "24.el7", - "arch": "x86_64", - "repository": "" - }, - "man-db": { - "name": "man-db", - "version": "2.6.3", - "release": "11.el7", - "newVersion": "2.6.3", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "mariadb-libs": { - "name": "mariadb-libs", - "version": "1:5.5.64", - "release": "1.el7", - "newVersion": "1:5.5.68", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1048", - "name": "pickup" - } - ] - }, - "microcode_ctl": { - "name": "microcode_ctl", - "version": "2:2.1", - "release": "53.7.el7_7", - "newVersion": "2:2.1", - "newRelease": "73.8.el7_9", - "arch": "x86_64", - "repository": "updates" - }, - "mozjs17": { - "name": "mozjs17", - "version": "17.0.0", - "release": "20.el7", - "newVersion": "17.0.0", - "newRelease": "20.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "538", - "name": "polkitd" - } - ] - }, - "ncurses": { - "name": "ncurses", - "version": "5.9", - "release": "14.20130511.el7_4", - "newVersion": "5.9", - "newRelease": "14.20130511.el7_4", - "arch": "x86_64", - "repository": "" - }, - "ncurses-base": { - "name": "ncurses-base", - "version": "5.9", - "release": "14.20130511.el7_4", - "newVersion": "5.9", - "newRelease": "14.20130511.el7_4", - "arch": "noarch", - "repository": "" - }, - "ncurses-libs": { - "name": "ncurses-libs", - "version": "5.9", - "release": "14.20130511.el7_4", - "newVersion": "5.9", - "newRelease": "14.20130511.el7_4", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2688", - "name": "bash" - } - ] - }, - "net-tools": { - "name": "net-tools", - "version": "2.0", - "release": "0.25.20131004git.el7", - "newVersion": "2.0", - "newRelease": "0.25.20131004git.el7", - "arch": "x86_64", - "repository": "" - }, - "newt": { - "name": "newt", - "version": "0.52.15", - "release": "4.el7", - "newVersion": "0.52.15", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "newt-python": { - "name": "newt-python", - "version": "0.52.15", - "release": "4.el7", - "newVersion": "0.52.15", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "nfs-utils": { - "name": "nfs-utils", - "version": "1:1.3.0", - "release": "0.65.el7", - "newVersion": "1:1.3.0", - "newRelease": "0.68.el7", - "arch": "x86_64", - "repository": "base" - }, - "nspr": { - "name": "nspr", - "version": "4.21.0", - "release": "1.el7", - "newVersion": "4.25.0", - "newRelease": "2.el7_9", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "nss": { - "name": "nss", - "version": "3.44.0", - "release": "7.el7_7", - "newVersion": "3.53.1", - "newRelease": "3.el7_9", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "nss-pem": { - "name": "nss-pem", - "version": "1.0.3", - "release": "7.el7", - "newVersion": "1.0.3", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "nss-softokn": { - "name": "nss-softokn", - "version": "3.44.0", - "release": "8.el7_7", - "newVersion": "3.53.1", - "newRelease": "6.el7_9", - "arch": "x86_64", - "repository": "updates" - }, - "nss-softokn-freebl": { - "name": "nss-softokn-freebl", - "version": "3.44.0", - "release": "8.el7_7", - "newVersion": "3.53.1", - "newRelease": "6.el7_9", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "553", - "name": "chronyd" - } - ] - }, - "nss-sysinit": { - "name": "nss-sysinit", - "version": "3.44.0", - "release": "7.el7_7", - "newVersion": "3.53.1", - "newRelease": "3.el7_9", - "arch": "x86_64", - "repository": "updates" - }, - "nss-tools": { - "name": "nss-tools", - "version": "3.44.0", - "release": "7.el7_7", - "newVersion": "3.53.1", - "newRelease": "3.el7_9", - "arch": "x86_64", - "repository": "updates" - }, - "nss-util": { - "name": "nss-util", - "version": "3.44.0", - "release": "4.el7_7", - "newVersion": "3.53.1", - "newRelease": "1.el7_9", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "numactl-libs": { - "name": "numactl-libs", - "version": "2.0.12", - "release": "3.el7_7.1", - "newVersion": "2.0.12", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "base" - }, - "openldap": { - "name": "openldap", - "version": "2.4.44", - "release": "21.el7_6", - "newVersion": "2.4.44", - "newRelease": "22.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "openssh": { - "name": "openssh", - "version": "7.4p1", - "release": "21.el7", - "newVersion": "7.4p1", - "newRelease": "21.el7", - "arch": "x86_64", - "repository": "" - }, - "openssh-clients": { - "name": "openssh-clients", - "version": "7.4p1", - "release": "21.el7", - "newVersion": "7.4p1", - "newRelease": "21.el7", - "arch": "x86_64", - "repository": "" - }, - "openssh-server": { - "name": "openssh-server", - "version": "7.4p1", - "release": "21.el7", - "newVersion": "7.4p1", - "newRelease": "21.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "openssl": { - "name": "openssl", - "version": "1:1.0.2k", - "release": "19.el7", - "newVersion": "1:1.0.2k", - "newRelease": "21.el7_9", - "arch": "x86_64", - "repository": "updates" - }, - "openssl-libs": { - "name": "openssl-libs", - "version": "1:1.0.2k", - "release": "19.el7", - "newVersion": "1:1.0.2k", - "newRelease": "21.el7_9", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "os-prober": { - "name": "os-prober", - "version": "1.58", - "release": "9.el7", - "newVersion": "1.58", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "p11-kit": { - "name": "p11-kit", - "version": "0.23.5", - "release": "3.el7", - "newVersion": "0.23.5", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "p11-kit-trust": { - "name": "p11-kit-trust", - "version": "0.23.5", - "release": "3.el7", - "newVersion": "0.23.5", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "pam": { - "name": "pam", - "version": "1.1.8", - "release": "22.el7", - "newVersion": "1.1.8", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "1063", - "name": "crond" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "parted": { - "name": "parted", - "version": "3.1", - "release": "31.el7", - "newVersion": "3.1", - "newRelease": "32.el7", - "arch": "x86_64", - "repository": "base" - }, - "passwd": { - "name": "passwd", - "version": "0.79", - "release": "5.el7", - "newVersion": "0.79", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "base" - }, - "pciutils-libs": { - "name": "pciutils-libs", - "version": "3.5.1", - "release": "3.el7", - "newVersion": "3.5.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "pcre": { - "name": "pcre", - "version": "8.32", - "release": "17.el7", - "newVersion": "8.32", - "newRelease": "17.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "549", - "name": "gssproxy" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "416", - "name": "systemd-udevd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "1063", - "name": "crond" - }, - { - "pid": "376", - "name": "systemd-journal" - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "541", - "name": "systemd-logind" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "441", - "name": "auditd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "pinentry": { - "name": "pinentry", - "version": "0.8.1", - "release": "17.el7", - "newVersion": "0.8.1", - "newRelease": "17.el7", - "arch": "x86_64", - "repository": "" - }, - "pkgconfig": { - "name": "pkgconfig", - "version": "1:0.27.1", - "release": "4.el7", - "newVersion": "1:0.27.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "policycoreutils": { - "name": "policycoreutils", - "version": "2.5", - "release": "33.el7", - "newVersion": "2.5", - "newRelease": "34.el7", - "arch": "x86_64", - "repository": "base" - }, - "policycoreutils-python": { - "name": "policycoreutils-python", - "version": "2.5", - "release": "33.el7", - "newVersion": "2.5", - "newRelease": "34.el7", - "arch": "x86_64", - "repository": "base" - }, - "polkit": { - "name": "polkit", - "version": "0.112", - "release": "22.el7_7.1", - "newVersion": "0.112", - "newRelease": "26.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "538", - "name": "polkitd" - } - ] - }, - "polkit-pkla-compat": { - "name": "polkit-pkla-compat", - "version": "0.1", - "release": "4.el7", - "newVersion": "0.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "popt": { - "name": "popt", - "version": "1.13", - "release": "16.el7", - "newVersion": "1.13", - "newRelease": "16.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "549", - "name": "gssproxy" - } - ] - }, - "postfix": { - "name": "postfix", - "version": "2:2.10.1", - "release": "7.el7", - "newVersion": "2:2.10.1", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1048", - "name": "pickup" - } - ] - }, - "procps-ng": { - "name": "procps-ng", - "version": "3.3.10", - "release": "26.el7_7.1", - "newVersion": "3.3.10", - "newRelease": "28.el7", - "arch": "x86_64", - "repository": "base" - }, - "pth": { - "name": "pth", - "version": "2.0.7", - "release": "23.el7", - "newVersion": "2.0.7", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "" - }, - "pygpgme": { - "name": "pygpgme", - "version": "0.3", - "release": "9.el7", - "newVersion": "0.3", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "pyliblzma": { - "name": "pyliblzma", - "version": "0.5.3", - "release": "11.el7", - "newVersion": "0.5.3", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "pyserial": { - "name": "pyserial", - "version": "2.6", - "release": "6.el7", - "newVersion": "2.6", - "newRelease": "6.el7", - "arch": "noarch", - "repository": "" - }, - "python": { - "name": "python", - "version": "2.7.5", - "release": "86.el7", - "newVersion": "2.7.5", - "newRelease": "90.el7", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - } - ] - }, - "python-IPy": { - "name": "python-IPy", - "version": "0.75", - "release": "6.el7", - "newVersion": "0.75", - "newRelease": "6.el7", - "arch": "noarch", - "repository": "" - }, - "python-babel": { - "name": "python-babel", - "version": "0.9.6", - "release": "8.el7", - "newVersion": "0.9.6", - "newRelease": "8.el7", - "arch": "noarch", - "repository": "" - }, - "python-backports": { - "name": "python-backports", - "version": "1.0", - "release": "8.el7", - "newVersion": "1.0", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "python-backports-ssl_match_hostname": { - "name": "python-backports-ssl_match_hostname", - "version": "3.5.0.1", - "release": "1.el7", - "newVersion": "3.5.0.1", - "newRelease": "1.el7", - "arch": "noarch", - "repository": "" - }, - "python-chardet": { - "name": "python-chardet", - "version": "2.2.1", - "release": "3.el7", - "newVersion": "2.2.1", - "newRelease": "3.el7", - "arch": "noarch", - "repository": "" - }, - "python-configobj": { - "name": "python-configobj", - "version": "4.7.2", - "release": "7.el7", - "newVersion": "4.7.2", - "newRelease": "7.el7", - "arch": "noarch", - "repository": "" - }, - "python-decorator": { - "name": "python-decorator", - "version": "3.4.0", - "release": "3.el7", - "newVersion": "3.4.0", - "newRelease": "3.el7", - "arch": "noarch", - "repository": "" - }, - "python-gobject-base": { - "name": "python-gobject-base", - "version": "3.22.0", - "release": "1.el7_4.1", - "newVersion": "3.22.0", - "newRelease": "1.el7_4.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - } - ] - }, - "python-iniparse": { - "name": "python-iniparse", - "version": "0.4", - "release": "9.el7", - "newVersion": "0.4", - "newRelease": "9.el7", - "arch": "noarch", - "repository": "" - }, - "python-ipaddress": { - "name": "python-ipaddress", - "version": "1.0.16", - "release": "2.el7", - "newVersion": "1.0.16", - "newRelease": "2.el7", - "arch": "noarch", - "repository": "" - }, - "python-jinja2": { - "name": "python-jinja2", - "version": "2.7.2", - "release": "4.el7", - "newVersion": "2.7.2", - "newRelease": "4.el7", - "arch": "noarch", - "repository": "" - }, - "python-jsonpatch": { - "name": "python-jsonpatch", - "version": "1.2", - "release": "4.el7", - "newVersion": "1.2", - "newRelease": "4.el7", - "arch": "noarch", - "repository": "" - }, - "python-jsonpointer": { - "name": "python-jsonpointer", - "version": "1.9", - "release": "2.el7", - "newVersion": "1.9", - "newRelease": "2.el7", - "arch": "noarch", - "repository": "" - }, - "python-kitchen": { - "name": "python-kitchen", - "version": "1.1.1", - "release": "5.el7", - "newVersion": "1.1.1", - "newRelease": "5.el7", - "arch": "noarch", - "repository": "" - }, - "python-libs": { - "name": "python-libs", - "version": "2.7.5", - "release": "86.el7", - "newVersion": "2.7.5", - "newRelease": "90.el7", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - } - ] - }, - "python-linux-procfs": { - "name": "python-linux-procfs", - "version": "0.4.11", - "release": "4.el7", - "newVersion": "0.4.11", - "newRelease": "4.el7", - "arch": "noarch", - "repository": "" - }, - "python-markupsafe": { - "name": "python-markupsafe", - "version": "0.11", - "release": "10.el7", - "newVersion": "0.11", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "python-perf": { - "name": "python-perf", - "version": "3.10.0", - "release": "1062.12.1.el7", - "newVersion": "3.10.0", - "newRelease": "1160.21.1.el7", - "arch": "x86_64", - "repository": "updates" - }, - "python-prettytable": { - "name": "python-prettytable", - "version": "0.7.2", - "release": "3.el7", - "newVersion": "0.7.2", - "newRelease": "3.el7", - "arch": "noarch", - "repository": "" - }, - "python-pycurl": { - "name": "python-pycurl", - "version": "7.19.0", - "release": "19.el7", - "newVersion": "7.19.0", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "" - }, - "python-pyudev": { - "name": "python-pyudev", - "version": "0.15", - "release": "9.el7", - "newVersion": "0.15", - "newRelease": "9.el7", - "arch": "noarch", - "repository": "" - }, - "python-requests": { - "name": "python-requests", - "version": "2.6.0", - "release": "8.el7_7", - "newVersion": "2.6.0", - "newRelease": "10.el7", - "arch": "noarch", - "repository": "base" - }, - "python-schedutils": { - "name": "python-schedutils", - "version": "0.4", - "release": "6.el7", - "newVersion": "0.4", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "python-setuptools": { - "name": "python-setuptools", - "version": "0.9.8", - "release": "7.el7", - "newVersion": "0.9.8", - "newRelease": "7.el7", - "arch": "noarch", - "repository": "" - }, - "python-six": { - "name": "python-six", - "version": "1.9.0", - "release": "2.el7", - "newVersion": "1.9.0", - "newRelease": "2.el7", - "arch": "noarch", - "repository": "" - }, - "python-urlgrabber": { - "name": "python-urlgrabber", - "version": "3.10", - "release": "9.el7", - "newVersion": "3.10", - "newRelease": "10.el7", - "arch": "noarch", - "repository": "base" - }, - "python-urllib3": { - "name": "python-urllib3", - "version": "1.10.2", - "release": "7.el7", - "newVersion": "1.10.2", - "newRelease": "7.el7", - "arch": "noarch", - "repository": "" - }, - "pyxattr": { - "name": "pyxattr", - "version": "0.5.1", - "release": "5.el7", - "newVersion": "0.5.1", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "qemu-guest-agent": { - "name": "qemu-guest-agent", - "version": "10:2.12.0", - "release": "3.el7", - "newVersion": "10:2.12.0", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "qrencode-libs": { - "name": "qrencode-libs", - "version": "3.4.1", - "release": "3.el7", - "newVersion": "3.4.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "quota": { - "name": "quota", - "version": "1:4.01", - "release": "19.el7", - "newVersion": "1:4.01", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "" - }, - "quota-nls": { - "name": "quota-nls", - "version": "1:4.01", - "release": "19.el7", - "newVersion": "1:4.01", - "newRelease": "19.el7", - "arch": "noarch", - "repository": "" - }, - "readline": { - "name": "readline", - "version": "6.2", - "release": "11.el7", - "newVersion": "6.2", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "rootfiles": { - "name": "rootfiles", - "version": "8.1", - "release": "11.el7", - "newVersion": "8.1", - "newRelease": "11.el7", - "arch": "noarch", - "repository": "" - }, - "rpcbind": { - "name": "rpcbind", - "version": "0.2.0", - "release": "48.el7", - "newVersion": "0.2.0", - "newRelease": "49.el7", - "arch": "x86_64", - "repository": "base", - "AffectedProcs": [ - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - } - ] - }, - "rpm": { - "name": "rpm", - "version": "4.11.3", - "release": "40.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "base" - }, - "rpm-build-libs": { - "name": "rpm-build-libs", - "version": "4.11.3", - "release": "40.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "base" - }, - "rpm-libs": { - "name": "rpm-libs", - "version": "4.11.3", - "release": "40.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "base" - }, - "rpm-python": { - "name": "rpm-python", - "version": "4.11.3", - "release": "40.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "base" - }, - "rsync": { - "name": "rsync", - "version": "3.1.2", - "release": "6.el7_6.1", - "newVersion": "3.1.2", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "base" - }, - "rsyslog": { - "name": "rsyslog", - "version": "8.24.0", - "release": "41.el7_7.2", - "newVersion": "8.24.0", - "newRelease": "57.el7_9", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "sed": { - "name": "sed", - "version": "4.2.2", - "release": "5.el7", - "newVersion": "4.2.2", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "base" - }, - "selinux-policy": { - "name": "selinux-policy", - "version": "3.13.1", - "release": "252.el7_7.6", - "newVersion": "3.13.1", - "newRelease": "268.el7_9.2", - "arch": "noarch", - "repository": "updates" - }, - "selinux-policy-targeted": { - "name": "selinux-policy-targeted", - "version": "3.13.1", - "release": "252.el7_7.6", - "newVersion": "3.13.1", - "newRelease": "268.el7_9.2", - "arch": "noarch", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "416", - "name": "systemd-udevd" - } - ] - }, - "setools-libs": { - "name": "setools-libs", - "version": "3.3.8", - "release": "4.el7", - "newVersion": "3.3.8", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "setup": { - "name": "setup", - "version": "2.8.71", - "release": "10.el7", - "newVersion": "2.8.71", - "newRelease": "11.el7", - "arch": "noarch", - "repository": "base" - }, - "sg3_utils": { - "name": "sg3_utils", - "version": "1.37", - "release": "18.el7_7.2", - "newVersion": "1:1.37", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "base" - }, - "sg3_utils-libs": { - "name": "sg3_utils-libs", - "version": "1.37", - "release": "18.el7_7.2", - "newVersion": "1:1.37", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "base" - }, - "shadow-utils": { - "name": "shadow-utils", - "version": "2:4.6", - "release": "5.el7", - "newVersion": "2:4.6", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "shared-mime-info": { - "name": "shared-mime-info", - "version": "1.8", - "release": "4.el7", - "newVersion": "1.8", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "base" - }, - "slang": { - "name": "slang", - "version": "2.2.4", - "release": "11.el7", - "newVersion": "2.2.4", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "snappy": { - "name": "snappy", - "version": "1.1.0", - "release": "3.el7", - "newVersion": "1.1.0", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "sqlite": { - "name": "sqlite", - "version": "3.7.17", - "release": "8.el7_7.1", - "newVersion": "3.7.17", - "newRelease": "8.el7_7.1", - "arch": "x86_64", - "repository": "" - }, - "sudo": { - "name": "sudo", - "version": "1.8.23", - "release": "4.el7_7.2", - "newVersion": "1.8.23", - "newRelease": "10.el7_9.1", - "arch": "x86_64", - "repository": "updates" - }, - "systemd": { - "name": "systemd", - "version": "219", - "release": "67.el7_7.3", - "newVersion": "219", - "newRelease": "78.el7_9.3", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "416", - "name": "systemd-udevd" - }, - { - "pid": "376", - "name": "systemd-journal" - }, - { - "pid": "541", - "name": "systemd-logind" - } - ] - }, - "systemd-libs": { - "name": "systemd-libs", - "version": "219", - "release": "67.el7_7.3", - "newVersion": "219", - "newRelease": "78.el7_9.3", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "553", - "name": "chronyd" - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "systemd-sysv": { - "name": "systemd-sysv", - "version": "219", - "release": "67.el7_7.3", - "newVersion": "219", - "newRelease": "78.el7_9.3", - "arch": "x86_64", - "repository": "updates" - }, - "sysvinit-tools": { - "name": "sysvinit-tools", - "version": "2.88", - "release": "14.dsf.el7", - "newVersion": "2.88", - "newRelease": "14.dsf.el7", - "arch": "x86_64", - "repository": "" - }, - "tar": { - "name": "tar", - "version": "2:1.26", - "release": "35.el7", - "newVersion": "2:1.26", - "newRelease": "35.el7", - "arch": "x86_64", - "repository": "" - }, - "tcp_wrappers": { - "name": "tcp_wrappers", - "version": "7.6", - "release": "77.el7", - "newVersion": "7.6", - "newRelease": "77.el7", - "arch": "x86_64", - "repository": "" - }, - "tcp_wrappers-libs": { - "name": "tcp_wrappers-libs", - "version": "7.6", - "release": "77.el7", - "newVersion": "7.6", - "newRelease": "77.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "441", - "name": "auditd" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - } - ] - }, - "teamd": { - "name": "teamd", - "version": "1.27", - "release": "9.el7", - "newVersion": "1.29", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "base" - }, - "tuned": { - "name": "tuned", - "version": "2.11.0", - "release": "5.el7_7.1", - "newVersion": "2.11.0", - "newRelease": "11.el7_9", - "arch": "noarch", - "repository": "updates" - }, - "tzdata": { - "name": "tzdata", - "version": "2019c", - "release": "1.el7", - "newVersion": "2021a", - "newRelease": "1.el7", - "arch": "noarch", - "repository": "updates" - }, - "ustr": { - "name": "ustr", - "version": "1.0.4", - "release": "16.el7", - "newVersion": "1.0.4", - "newRelease": "16.el7", - "arch": "x86_64", - "repository": "" - }, - "util-linux": { - "name": "util-linux", - "version": "2.23.2", - "release": "61.el7_7.1", - "newVersion": "2.23.2", - "newRelease": "65.el7_9.1", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1064", - "name": "agetty" - }, - { - "pid": "1065", - "name": "agetty" - } - ] - }, - "vim-minimal": { - "name": "vim-minimal", - "version": "2:7.4.629", - "release": "6.el7", - "newVersion": "2:7.4.629", - "newRelease": "8.el7_9", - "arch": "x86_64", - "repository": "updates" - }, - "virt-what": { - "name": "virt-what", - "version": "1.18", - "release": "4.el7", - "newVersion": "1.18", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "which": { - "name": "which", - "version": "2.20", - "release": "7.el7", - "newVersion": "2.20", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "wpa_supplicant": { - "name": "wpa_supplicant", - "version": "1:2.6", - "release": "12.el7", - "newVersion": "1:2.6", - "newRelease": "12.el7_9.2", - "arch": "x86_64", - "repository": "updates" - }, - "xfsprogs": { - "name": "xfsprogs", - "version": "4.5.0", - "release": "20.el7", - "newVersion": "4.5.0", - "newRelease": "22.el7", - "arch": "x86_64", - "repository": "base" - }, - "xz": { - "name": "xz", - "version": "5.2.2", - "release": "1.el7", - "newVersion": "5.2.2", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "xz-libs": { - "name": "xz-libs", - "version": "5.2.2", - "release": "1.el7", - "newVersion": "5.2.2", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "416", - "name": "systemd-udevd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "376", - "name": "systemd-journal" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "553", - "name": "chronyd" - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - }, - "yum": { - "name": "yum", - "version": "3.4.3", - "release": "163.el7.centos", - "newVersion": "3.4.3", - "newRelease": "168.el7.centos", - "arch": "noarch", - "repository": "base" - }, - "yum-metadata-parser": { - "name": "yum-metadata-parser", - "version": "1.1.4", - "release": "10.el7", - "newVersion": "1.1.4", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "yum-plugin-fastestmirror": { - "name": "yum-plugin-fastestmirror", - "version": "1.1.31", - "release": "52.el7", - "newVersion": "1.1.31", - "newRelease": "54.el7_8", - "arch": "noarch", - "repository": "base" - }, - "yum-utils": { - "name": "yum-utils", - "version": "1.1.31", - "release": "52.el7", - "newVersion": "1.1.31", - "newRelease": "54.el7_8", - "arch": "noarch", - "repository": "base" - }, - "zlib": { - "name": "zlib", - "version": "1.2.7", - "release": "18.el7", - "newVersion": "1.2.7", - "newRelease": "19.el7_9", - "arch": "x86_64", - "repository": "updates", - "AffectedProcs": [ - { - "pid": "1049", - "name": "qmgr" - }, - { - "pid": "1045", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1", - "name": "systemd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "901", - "name": "tuned" - }, - { - "pid": "2684", - "name": "sshd" - }, - { - "pid": "416", - "name": "systemd-udevd" - }, - { - "pid": "538", - "name": "polkitd" - }, - { - "pid": "1161", - "name": "sshd" - }, - { - "pid": "495", - "name": "rpcbind", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "111", - "portReachableTo": [] - } - ] - }, - { - "pid": "1048", - "name": "pickup" - }, - { - "pid": "2687", - "name": "sshd" - }, - { - "pid": "543", - "name": "dbus-daemon" - }, - { - "pid": "843", - "name": "dhclient" - }, - { - "pid": "1158", - "name": "sshd" - }, - { - "pid": "1106", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "553", - "name": "chronyd" - }, - { - "pid": "1052", - "name": "rsyslogd" - } - ] - } - }, - "constant": { - "scan": { - "logDir": "/var/log/vuls", - "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", - "default": { - "port": "22", - "scanMode": [ - "fast" - ] - }, - "servers": { - "c7": { - "serverName": "c7", - "user": "centos", - "host": "54.249.18.65", - "port": "22", - "keyPath": "/home/ubuntu/.ssh/stg.pem", - "scanMode": [ - "fast-root" - ], - "wordpress": {} - } - }, - "cveDict": { - "Name": "cveDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", - "DebugSQL": false - }, - "ovalDict": { - "Name": "ovalDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", - "DebugSQL": false - }, - "gost": { - "Name": "gost", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", - "DebugSQL": false - }, - "exploit": { - "Name": "exploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", - "DebugSQL": false - }, - "metasploit": { - "Name": "metasploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", - "DebugSQL": false - } - }, - "report": { - "default": {}, - "cveDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "ovalDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "gost": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "exploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "metasploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - } - } - } -} diff --git a/integration/data/debian_10.json b/integration/data/debian_10.json deleted file mode 100755 index 63ed3801..00000000 --- a/integration/data/debian_10.json +++ /dev/null @@ -1,5631 +0,0 @@ -{ - "jsonVersion": 4, - "lang": "", - "serverUUID": "", - "serverName": "debian_10", - "family": "debian", - "release": "10", - "container": { - "containerID": "", - "name": "", - "image": "", - "type": "", - "uuid": "" - }, - "platform": { - "name": "aws", - "instanceID": "i-0545d194b9d8a7a45" - }, - "ipv4Addrs": [ - "192.168.0.175" - ], - "scannedAt": "2021-03-24T16:34:40.023094971+09:00", - "scanMode": "fast-root mode", - "scannedVersion": "v0.15.9", - "scannedRevision": "build-20210324_121008_fc3b438", - "scannedBy": "dev", - "scannedVia": "remote", - "scannedIpv4Addrs": [ - "172.21.0.1", - "172.19.0.1", - "172.18.0.1", - "172.17.0.1", - "172.20.0.1" - ], - "reportedAt": "0001-01-01T00:00:00Z", - "reportedVersion": "", - "reportedRevision": "", - "reportedBy": "", - "errors": [], - "warnings": [], - "scannedCves": {}, - "runningKernel": { - "release": "4.19.0-14-cloud-amd64", - "version": "4.19.171-2", - "rebootRequired": false - }, - "packages": { - "adduser": { - "name": "adduser", - "version": "3.118", - "release": "", - "newVersion": "3.118", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apparmor": { - "name": "apparmor", - "version": "2.13.2-10", - "release": "", - "newVersion": "2.13.2-10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apt": { - "name": "apt", - "version": "1.8.2.2", - "release": "", - "newVersion": "1.8.2.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apt-listchanges": { - "name": "apt-listchanges", - "version": "3.19", - "release": "", - "newVersion": "3.19", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apt-utils": { - "name": "apt-utils", - "version": "1.8.2.2", - "release": "", - "newVersion": "1.8.2.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "awscli": { - "name": "awscli", - "version": "1.16.113-1", - "release": "", - "newVersion": "1.16.113-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "base-files": { - "name": "base-files", - "version": "10.3+deb10u8", - "release": "", - "newVersion": "10.3+deb10u8", - "newRelease": "", - "arch": "", - "repository": "" - }, - "base-passwd": { - "name": "base-passwd", - "version": "3.5.46", - "release": "", - "newVersion": "3.5.46", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bash": { - "name": "bash", - "version": "5.0-4", - "release": "", - "newVersion": "5.0-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bash-completion": { - "name": "bash-completion", - "version": "1:2.8-6", - "release": "", - "newVersion": "1:2.8-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bind9-host": { - "name": "bind9-host", - "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", - "release": "", - "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "bsdmainutils": { - "name": "bsdmainutils", - "version": "11.1.2+b1", - "release": "", - "newVersion": "11.1.2+b1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bsdutils": { - "name": "bsdutils", - "version": "1:2.33.1-0.1", - "release": "", - "newVersion": "1:2.33.1-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bzip2": { - "name": "bzip2", - "version": "1.0.6-9.2~deb10u1", - "release": "", - "newVersion": "1.0.6-9.2~deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ca-certificates": { - "name": "ca-certificates", - "version": "20200601~deb10u2", - "release": "", - "newVersion": "20200601~deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "chrony": { - "name": "chrony", - "version": "3.4-4+deb10u1", - "release": "", - "newVersion": "3.4-4+deb10u1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "528", - "name": "chronyd" - }, - { - "pid": "530", - "name": "chronyd" - } - ] - }, - "cloud-guest-utils": { - "name": "cloud-guest-utils", - "version": "0.29-1", - "release": "", - "newVersion": "0.29-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-image-utils": { - "name": "cloud-image-utils", - "version": "0.29-1", - "release": "", - "newVersion": "0.29-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-init": { - "name": "cloud-init", - "version": "20.2-2~deb10u1", - "release": "", - "newVersion": "20.2-2~deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-initramfs-growroot": { - "name": "cloud-initramfs-growroot", - "version": "0.18.debian7", - "release": "", - "newVersion": "0.18.debian7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-utils": { - "name": "cloud-utils", - "version": "0.29-1", - "release": "", - "newVersion": "0.29-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "coreutils": { - "name": "coreutils", - "version": "8.30-3", - "release": "", - "newVersion": "8.30-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cpio": { - "name": "cpio", - "version": "2.12+dfsg-9", - "release": "", - "newVersion": "2.12+dfsg-9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cron": { - "name": "cron", - "version": "3.0pl1-134+deb10u1", - "release": "", - "newVersion": "3.0pl1-134+deb10u1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "520", - "name": "cron" - } - ] - }, - "curl": { - "name": "curl", - "version": "7.64.0-4+deb10u1", - "release": "", - "newVersion": "7.64.0-4+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dash": { - "name": "dash", - "version": "0.5.10.2-5", - "release": "", - "newVersion": "0.5.10.2-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dbus": { - "name": "dbus", - "version": "1.12.20-0+deb10u1", - "release": "", - "newVersion": "1.12.20-0+deb10u1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "521", - "name": "dbus-daemon" - } - ] - }, - "dctrl-tools": { - "name": "dctrl-tools", - "version": "2.24-3", - "release": "", - "newVersion": "2.24-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debconf": { - "name": "debconf", - "version": "1.5.71", - "release": "", - "newVersion": "1.5.71", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debian-archive-keyring": { - "name": "debian-archive-keyring", - "version": "2019.1", - "release": "", - "newVersion": "2019.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debian-goodies": { - "name": "debian-goodies", - "version": "0.84", - "release": "", - "newVersion": "0.84", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debianutils": { - "name": "debianutils", - "version": "4.8.6.1", - "release": "", - "newVersion": "4.8.6.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "diffutils": { - "name": "diffutils", - "version": "1:3.7-3", - "release": "", - "newVersion": "1:3.7-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dirmngr": { - "name": "dirmngr", - "version": "2.2.12-1+deb10u1", - "release": "", - "newVersion": "2.2.12-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "distro-info-data": { - "name": "distro-info-data", - "version": "0.41+deb10u3", - "release": "", - "newVersion": "0.41+deb10u3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dmsetup": { - "name": "dmsetup", - "version": "2:1.02.155-3", - "release": "", - "newVersion": "2:1.02.155-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "docutils-common": { - "name": "docutils-common", - "version": "0.14+dfsg-4", - "release": "", - "newVersion": "0.14+dfsg-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dpkg": { - "name": "dpkg", - "version": "1.19.7", - "release": "", - "newVersion": "1.19.7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "e2fsprogs": { - "name": "e2fsprogs", - "version": "1.44.5-1+deb10u3", - "release": "", - "newVersion": "1.44.5-1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "elfutils": { - "name": "elfutils", - "version": "0.176-1.1", - "release": "", - "newVersion": "0.176-1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ethtool": { - "name": "ethtool", - "version": "1:4.19-1", - "release": "", - "newVersion": "1:4.19-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "exim4-base": { - "name": "exim4-base", - "version": "4.92-8+deb10u4", - "release": "", - "newVersion": "4.92-8+deb10u4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "exim4-config": { - "name": "exim4-config", - "version": "4.92-8+deb10u4", - "release": "", - "newVersion": "4.92-8+deb10u4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "exim4-daemon-light": { - "name": "exim4-daemon-light", - "version": "4.92-8+deb10u4", - "release": "", - "newVersion": "4.92-8+deb10u4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "fdisk": { - "name": "fdisk", - "version": "2.33.1-0.1", - "release": "", - "newVersion": "2.33.1-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "file": { - "name": "file", - "version": "1:5.35-4+deb10u2", - "release": "", - "newVersion": "1:5.35-4+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "findutils": { - "name": "findutils", - "version": "4.6.0+git+20190209-2", - "release": "", - "newVersion": "4.6.0+git+20190209-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gcc-8-base": { - "name": "gcc-8-base", - "version": "8.3.0-6", - "release": "", - "newVersion": "8.3.0-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gdisk": { - "name": "gdisk", - "version": "1.0.3-1.1", - "release": "", - "newVersion": "1.0.3-1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "genisoimage": { - "name": "genisoimage", - "version": "9:1.1.11-3+b2", - "release": "", - "newVersion": "9:1.1.11-3+b2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "geoip-database": { - "name": "geoip-database", - "version": "20181108-1", - "release": "", - "newVersion": "20181108-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gettext-base": { - "name": "gettext-base", - "version": "0.19.8.1-9", - "release": "", - "newVersion": "0.19.8.1-9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gnupg": { - "name": "gnupg", - "version": "2.2.12-1+deb10u1", - "release": "", - "newVersion": "2.2.12-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gnupg-l10n": { - "name": "gnupg-l10n", - "version": "2.2.12-1+deb10u1", - "release": "", - "newVersion": "2.2.12-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gnupg-utils": { - "name": "gnupg-utils", - "version": "2.2.12-1+deb10u1", - "release": "", - "newVersion": "2.2.12-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg": { - "name": "gpg", - "version": "2.2.12-1+deb10u1", - "release": "", - "newVersion": "2.2.12-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg-agent": { - "name": "gpg-agent", - "version": "2.2.12-1+deb10u1", - "release": "", - "newVersion": "2.2.12-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg-wks-client": { - "name": "gpg-wks-client", - "version": "2.2.12-1+deb10u1", - "release": "", - "newVersion": "2.2.12-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg-wks-server": { - "name": "gpg-wks-server", - "version": "2.2.12-1+deb10u1", - "release": "", - "newVersion": "2.2.12-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpgconf": { - "name": "gpgconf", - "version": "2.2.12-1+deb10u1", - "release": "", - "newVersion": "2.2.12-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpgsm": { - "name": "gpgsm", - "version": "2.2.12-1+deb10u1", - "release": "", - "newVersion": "2.2.12-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpgv": { - "name": "gpgv", - "version": "2.2.12-1+deb10u1", - "release": "", - "newVersion": "2.2.12-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grep": { - "name": "grep", - "version": "3.3-1", - "release": "", - "newVersion": "3.3-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "groff-base": { - "name": "groff-base", - "version": "1.22.4-3", - "release": "", - "newVersion": "1.22.4-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub-cloud-amd64": { - "name": "grub-cloud-amd64", - "version": "0.0.4", - "release": "", - "newVersion": "0.0.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub-common": { - "name": "grub-common", - "version": "2.02+dfsg1-20+deb10u3", - "release": "", - "newVersion": "2.02+dfsg1-20+deb10u4", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "grub-efi-amd64-bin": { - "name": "grub-efi-amd64-bin", - "version": "2.02+dfsg1-20+deb10u3", - "release": "", - "newVersion": "2.02+dfsg1-20+deb10u4", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "grub-pc-bin": { - "name": "grub-pc-bin", - "version": "2.02+dfsg1-20+deb10u3", - "release": "", - "newVersion": "2.02+dfsg1-20+deb10u4", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "grub2-common": { - "name": "grub2-common", - "version": "2.02+dfsg1-20+deb10u3", - "release": "", - "newVersion": "2.02+dfsg1-20+deb10u4", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "guile-2.2-libs": { - "name": "guile-2.2-libs", - "version": "2.2.4+1-2+deb10u1", - "release": "", - "newVersion": "2.2.4+1-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gzip": { - "name": "gzip", - "version": "1.9-3", - "release": "", - "newVersion": "1.9-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "hostname": { - "name": "hostname", - "version": "3.21", - "release": "", - "newVersion": "3.21", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ifupdown": { - "name": "ifupdown", - "version": "0.8.35", - "release": "", - "newVersion": "0.8.35", - "newRelease": "", - "arch": "", - "repository": "" - }, - "init": { - "name": "init", - "version": "1.56+nmu1", - "release": "", - "newVersion": "1.56+nmu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "init-system-helpers": { - "name": "init-system-helpers", - "version": "1.56+nmu1", - "release": "", - "newVersion": "1.56+nmu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "initramfs-tools": { - "name": "initramfs-tools", - "version": "0.133+deb10u1", - "release": "", - "newVersion": "0.133+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "initramfs-tools-core": { - "name": "initramfs-tools-core", - "version": "0.133+deb10u1", - "release": "", - "newVersion": "0.133+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iproute2": { - "name": "iproute2", - "version": "4.20.0-2+deb10u1", - "release": "", - "newVersion": "4.20.0-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iptables": { - "name": "iptables", - "version": "1.8.2-4", - "release": "", - "newVersion": "1.8.2-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iputils-ping": { - "name": "iputils-ping", - "version": "3:20180629-2+deb10u1", - "release": "", - "newVersion": "3:20180629-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "isc-dhcp-client": { - "name": "isc-dhcp-client", - "version": "4.4.1-2", - "release": "", - "newVersion": "4.4.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iso-codes": { - "name": "iso-codes", - "version": "4.2-1", - "release": "", - "newVersion": "4.2-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "klibc-utils": { - "name": "klibc-utils", - "version": "2.0.6-1", - "release": "", - "newVersion": "2.0.6-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "kmod": { - "name": "kmod", - "version": "26-1", - "release": "", - "newVersion": "26-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "krb5-locales": { - "name": "krb5-locales", - "version": "1.17-3+deb10u1", - "release": "", - "newVersion": "1.17-3+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "less": { - "name": "less", - "version": "487-0.1+b1", - "release": "", - "newVersion": "487-0.1+b1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libacl1": { - "name": "libacl1", - "version": "2.2.53-4", - "release": "", - "newVersion": "2.2.53-4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "225", - "name": "systemd-journal" - }, - { - "pid": "606", - "name": "systemd" - }, - { - "pid": "524", - "name": "systemd-logind" - }, - { - "pid": "240", - "name": "systemd-udevd" - }, - { - "pid": "607", - "name": "(sd-pam)" - } - ] - }, - "libaio1": { - "name": "libaio1", - "version": "0.3.112-3", - "release": "", - "newVersion": "0.3.112-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libapparmor1": { - "name": "libapparmor1", - "version": "2.13.2-10", - "release": "", - "newVersion": "2.13.2-10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libapt-inst2.0": { - "name": "libapt-inst2.0", - "version": "1.8.2.2", - "release": "", - "newVersion": "1.8.2.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libapt-pkg5.0": { - "name": "libapt-pkg5.0", - "version": "1.8.2.2", - "release": "", - "newVersion": "1.8.2.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "536", - "name": "unattended-upgr" - } - ] - }, - "libargon2-1": { - "name": "libargon2-1", - "version": "0~20171227-0.2", - "release": "", - "newVersion": "0~20171227-0.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "225", - "name": "systemd-journal" - }, - { - "pid": "606", - "name": "systemd" - }, - { - "pid": "524", - "name": "systemd-logind" - }, - { - "pid": "607", - "name": "(sd-pam)" - } - ] - }, - "libasm1": { - "name": "libasm1", - "version": "0.176-1.1", - "release": "", - "newVersion": "0.176-1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libassuan0": { - "name": "libassuan0", - "version": "2.5.2-1", - "release": "", - "newVersion": "2.5.2-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libattr1": { - "name": "libattr1", - "version": "1:2.4.48-4", - "release": "", - "newVersion": "1:2.4.48-4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "225", - "name": "systemd-journal" - }, - { - "pid": "606", - "name": "systemd" - }, - { - "pid": "524", - "name": "systemd-logind" - }, - { - "pid": "240", - "name": "systemd-udevd" - }, - { - "pid": "607", - "name": "(sd-pam)" - } - ] - }, - "libaudit-common": { - "name": "libaudit-common", - "version": "1:2.8.4-3", - "release": "", - "newVersion": "1:2.8.4-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libaudit1": { - "name": "libaudit1", - "version": "1:2.8.4-3", - "release": "", - "newVersion": "1:2.8.4-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libbind9-161": { - "name": "libbind9-161", - "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", - "release": "", - "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "libblkid1": { - "name": "libblkid1", - "version": "2.33.1-0.1", - "release": "", - "newVersion": "2.33.1-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libbsd0": { - "name": "libbsd0", - "version": "0.9.1-2", - "release": "", - "newVersion": "0.9.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libbz2-1.0": { - "name": "libbz2-1.0", - "version": "1.0.6-9.2~deb10u1", - "release": "", - "newVersion": "1.0.6-9.2~deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libc-bin": { - "name": "libc-bin", - "version": "2.28-10", - "release": "", - "newVersion": "2.28-10", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "536", - "name": "unattended-upgr" - }, - { - "pid": "520", - "name": "cron" - }, - { - "pid": "529", - "name": "agetty" - }, - { - "pid": "533", - "name": "agetty" - } - ] - }, - "libc-l10n": { - "name": "libc-l10n", - "version": "2.28-10", - "release": "", - "newVersion": "2.28-10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libc6": { - "name": "libc6", - "version": "2.28-10", - "release": "", - "newVersion": "2.28-10", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "536", - "name": "unattended-upgr" - }, - { - "pid": "520", - "name": "cron" - }, - { - "pid": "529", - "name": "agetty" - }, - { - "pid": "533", - "name": "agetty" - }, - { - "pid": "1358", - "name": "bash" - }, - { - "pid": "1362", - "name": "su" - }, - { - "pid": "1363", - "name": "bash" - } - ] - }, - "libcap-ng0": { - "name": "libcap-ng0", - "version": "0.7.9-2", - "release": "", - "newVersion": "0.7.9-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcap2": { - "name": "libcap2", - "version": "1:2.25-2", - "release": "", - "newVersion": "1:2.25-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcap2-bin": { - "name": "libcap2-bin", - "version": "1:2.25-2", - "release": "", - "newVersion": "1:2.25-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcom-err2": { - "name": "libcom-err2", - "version": "1.44.5-1+deb10u3", - "release": "", - "newVersion": "1.44.5-1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcryptsetup12": { - "name": "libcryptsetup12", - "version": "2:2.1.0-5+deb10u2", - "release": "", - "newVersion": "2:2.1.0-5+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcurl3-gnutls": { - "name": "libcurl3-gnutls", - "version": "7.64.0-4+deb10u1", - "release": "", - "newVersion": "7.64.0-4+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcurl4": { - "name": "libcurl4", - "version": "7.64.0-4+deb10u1", - "release": "", - "newVersion": "7.64.0-4+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdb5.3": { - "name": "libdb5.3", - "version": "5.3.28+dfsg1-0.5", - "release": "", - "newVersion": "5.3.28+dfsg1-0.5", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libdbus-1-3": { - "name": "libdbus-1-3", - "version": "1.12.20-0+deb10u1", - "release": "", - "newVersion": "1.12.20-0+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdebconfclient0": { - "name": "libdebconfclient0", - "version": "0.249", - "release": "", - "newVersion": "0.249", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdevmapper1.02.1": { - "name": "libdevmapper1.02.1", - "version": "2:1.02.155-3", - "release": "", - "newVersion": "2:1.02.155-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdns-export1104": { - "name": "libdns-export1104", - "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", - "release": "", - "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "libdns1104": { - "name": "libdns1104", - "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", - "release": "", - "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "libdw1": { - "name": "libdw1", - "version": "0.176-1.1", - "release": "", - "newVersion": "0.176-1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libedit2": { - "name": "libedit2", - "version": "3.1-20181209-1", - "release": "", - "newVersion": "3.1-20181209-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libefiboot1": { - "name": "libefiboot1", - "version": "37-2+deb10u1", - "release": "", - "newVersion": "37-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libefivar1": { - "name": "libefivar1", - "version": "37-2+deb10u1", - "release": "", - "newVersion": "37-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libelf1": { - "name": "libelf1", - "version": "0.176-1.1", - "release": "", - "newVersion": "0.176-1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libestr0": { - "name": "libestr0", - "version": "0.1.10-2.1", - "release": "", - "newVersion": "0.1.10-2.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "522", - "name": "rsyslogd" - } - ] - }, - "libevent-2.1-6": { - "name": "libevent-2.1-6", - "version": "2.1.8-stable-4", - "release": "", - "newVersion": "2.1.8-stable-4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libexpat1": { - "name": "libexpat1", - "version": "2.2.6-2+deb10u1", - "release": "", - "newVersion": "2.2.6-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libext2fs2": { - "name": "libext2fs2", - "version": "1.44.5-1+deb10u3", - "release": "", - "newVersion": "1.44.5-1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfastjson4": { - "name": "libfastjson4", - "version": "0.99.8-2", - "release": "", - "newVersion": "0.99.8-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "522", - "name": "rsyslogd" - } - ] - }, - "libfdisk1": { - "name": "libfdisk1", - "version": "2.33.1-0.1", - "release": "", - "newVersion": "2.33.1-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libffi6": { - "name": "libffi6", - "version": "3.2.1-9", - "release": "", - "newVersion": "3.2.1-9", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libfile-which-perl": { - "name": "libfile-which-perl", - "version": "1.23-1", - "release": "", - "newVersion": "1.23-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfreetype6": { - "name": "libfreetype6", - "version": "2.9.1-3+deb10u2", - "release": "", - "newVersion": "2.9.1-3+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfribidi0": { - "name": "libfribidi0", - "version": "1.0.5-3.1+deb10u1", - "release": "", - "newVersion": "1.0.5-3.1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfstrm0": { - "name": "libfstrm0", - "version": "0.4.0-1", - "release": "", - "newVersion": "0.4.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfuse2": { - "name": "libfuse2", - "version": "2.9.9-1+deb10u1", - "release": "", - "newVersion": "2.9.9-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgc1c2": { - "name": "libgc1c2", - "version": "1:7.6.4-0.4", - "release": "", - "newVersion": "1:7.6.4-0.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgcc1": { - "name": "libgcc1", - "version": "1:8.3.0-6", - "release": "", - "newVersion": "1:8.3.0-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgcrypt20": { - "name": "libgcrypt20", - "version": "1.8.4-5", - "release": "", - "newVersion": "1.8.4-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgdbm-compat4": { - "name": "libgdbm-compat4", - "version": "1.18.1-4", - "release": "", - "newVersion": "1.18.1-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgdbm6": { - "name": "libgdbm6", - "version": "1.18.1-4", - "release": "", - "newVersion": "1.18.1-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgeoip1": { - "name": "libgeoip1", - "version": "1.6.12-1", - "release": "", - "newVersion": "1.6.12-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libglib2.0-0": { - "name": "libglib2.0-0", - "version": "2.58.3-2+deb10u2", - "release": "", - "newVersion": "2.58.3-2+deb10u2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "536", - "name": "unattended-upgr" - } - ] - }, - "libgmp10": { - "name": "libgmp10", - "version": "2:6.1.2+dfsg-4", - "release": "", - "newVersion": "2:6.1.2+dfsg-4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libgnutls-dane0": { - "name": "libgnutls-dane0", - "version": "3.6.7-4+deb10u6", - "release": "", - "newVersion": "3.6.7-4+deb10u6", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libgnutls30": { - "name": "libgnutls30", - "version": "3.6.7-4+deb10u6", - "release": "", - "newVersion": "3.6.7-4+deb10u6", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libgpg-error0": { - "name": "libgpg-error0", - "version": "1.35-1", - "release": "", - "newVersion": "1.35-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgpm2": { - "name": "libgpm2", - "version": "1.20.7-5", - "release": "", - "newVersion": "1.20.7-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgsasl7": { - "name": "libgsasl7", - "version": "1.8.0-8+b2", - "release": "", - "newVersion": "1.8.0-8+b2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgssapi-krb5-2": { - "name": "libgssapi-krb5-2", - "version": "1.17-3+deb10u1", - "release": "", - "newVersion": "1.17-3+deb10u1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "603", - "name": "sshd" - }, - { - "pid": "1357", - "name": "sshd" - }, - { - "pid": "538", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1351", - "name": "sshd" - }, - { - "pid": "615", - "name": "sshd" - } - ] - }, - "libhogweed4": { - "name": "libhogweed4", - "version": "3.4.1-1", - "release": "", - "newVersion": "3.4.1-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libicu63": { - "name": "libicu63", - "version": "63.1-6+deb10u1", - "release": "", - "newVersion": "63.1-6+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libidn11": { - "name": "libidn11", - "version": "1.33-2.2", - "release": "", - "newVersion": "1.33-2.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libidn2-0": { - "name": "libidn2-0", - "version": "2.0.5-1+deb10u1", - "release": "", - "newVersion": "2.0.5-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libip4tc0": { - "name": "libip4tc0", - "version": "1.8.2-4", - "release": "", - "newVersion": "1.8.2-4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "225", - "name": "systemd-journal" - }, - { - "pid": "606", - "name": "systemd" - }, - { - "pid": "524", - "name": "systemd-logind" - }, - { - "pid": "607", - "name": "(sd-pam)" - } - ] - }, - "libip6tc0": { - "name": "libip6tc0", - "version": "1.8.2-4", - "release": "", - "newVersion": "1.8.2-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libipc-system-simple-perl": { - "name": "libipc-system-simple-perl", - "version": "1.25-4", - "release": "", - "newVersion": "1.25-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libiptc0": { - "name": "libiptc0", - "version": "1.8.2-4", - "release": "", - "newVersion": "1.8.2-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libisc-export1100": { - "name": "libisc-export1100", - "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", - "release": "", - "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "libisc1100": { - "name": "libisc1100", - "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", - "release": "", - "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "libisccc161": { - "name": "libisccc161", - "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", - "release": "", - "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "libisccfg163": { - "name": "libisccfg163", - "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", - "release": "", - "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "libjson-c3": { - "name": "libjson-c3", - "version": "0.12.1+ds-2+deb10u1", - "release": "", - "newVersion": "0.12.1+ds-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "225", - "name": "systemd-journal" - }, - { - "pid": "606", - "name": "systemd" - }, - { - "pid": "524", - "name": "systemd-logind" - }, - { - "pid": "607", - "name": "(sd-pam)" - } - ] - }, - "libk5crypto3": { - "name": "libk5crypto3", - "version": "1.17-3+deb10u1", - "release": "", - "newVersion": "1.17-3+deb10u1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "603", - "name": "sshd" - }, - { - "pid": "1357", - "name": "sshd" - }, - { - "pid": "538", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1351", - "name": "sshd" - }, - { - "pid": "615", - "name": "sshd" - } - ] - }, - "libkeyutils1": { - "name": "libkeyutils1", - "version": "1.6-6", - "release": "", - "newVersion": "1.6-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libklibc": { - "name": "libklibc", - "version": "2.0.6-1", - "release": "", - "newVersion": "2.0.6-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libkmod2": { - "name": "libkmod2", - "version": "26-1", - "release": "", - "newVersion": "26-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "225", - "name": "systemd-journal" - }, - { - "pid": "606", - "name": "systemd" - }, - { - "pid": "524", - "name": "systemd-logind" - }, - { - "pid": "240", - "name": "systemd-udevd" - }, - { - "pid": "607", - "name": "(sd-pam)" - } - ] - }, - "libkrb5-3": { - "name": "libkrb5-3", - "version": "1.17-3+deb10u1", - "release": "", - "newVersion": "1.17-3+deb10u1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "603", - "name": "sshd" - }, - { - "pid": "1357", - "name": "sshd" - }, - { - "pid": "538", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1351", - "name": "sshd" - }, - { - "pid": "615", - "name": "sshd" - } - ] - }, - "libkrb5support0": { - "name": "libkrb5support0", - "version": "1.17-3+deb10u1", - "release": "", - "newVersion": "1.17-3+deb10u1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "603", - "name": "sshd" - }, - { - "pid": "1357", - "name": "sshd" - }, - { - "pid": "538", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1351", - "name": "sshd" - }, - { - "pid": "615", - "name": "sshd" - } - ] - }, - "libksba8": { - "name": "libksba8", - "version": "1.3.5-2", - "release": "", - "newVersion": "1.3.5-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libkyotocabinet16v5": { - "name": "libkyotocabinet16v5", - "version": "1.2.76-4.2+b1", - "release": "", - "newVersion": "1.2.76-4.2+b1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libldap-2.4-2": { - "name": "libldap-2.4-2", - "version": "2.4.47+dfsg-3+deb10u5", - "release": "", - "newVersion": "2.4.47+dfsg-3+deb10u6", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "libldap-common": { - "name": "libldap-common", - "version": "2.4.47+dfsg-3+deb10u5", - "release": "", - "newVersion": "2.4.47+dfsg-3+deb10u6", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "liblmdb0": { - "name": "liblmdb0", - "version": "0.9.22-1", - "release": "", - "newVersion": "0.9.22-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblognorm5": { - "name": "liblognorm5", - "version": "2.0.5-1", - "release": "", - "newVersion": "2.0.5-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libltdl7": { - "name": "libltdl7", - "version": "2.4.6-9", - "release": "", - "newVersion": "2.4.6-9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblwres161": { - "name": "liblwres161", - "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", - "release": "", - "newVersion": "1:9.11.5.P4+dfsg-5.1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "liblz4-1": { - "name": "liblz4-1", - "version": "1.8.3-1", - "release": "", - "newVersion": "1.8.3-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "225", - "name": "systemd-journal" - }, - { - "pid": "603", - "name": "sshd" - }, - { - "pid": "606", - "name": "systemd" - }, - { - "pid": "536", - "name": "unattended-upgr" - }, - { - "pid": "1357", - "name": "sshd" - }, - { - "pid": "538", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1351", - "name": "sshd" - }, - { - "pid": "524", - "name": "systemd-logind" - }, - { - "pid": "522", - "name": "rsyslogd" - }, - { - "pid": "615", - "name": "sshd" - }, - { - "pid": "521", - "name": "dbus-daemon" - }, - { - "pid": "607", - "name": "(sd-pam)" - } - ] - }, - "liblzma5": { - "name": "liblzma5", - "version": "5.2.4-1", - "release": "", - "newVersion": "5.2.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblzo2-2": { - "name": "liblzo2-2", - "version": "2.10-0.1", - "release": "", - "newVersion": "2.10-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmagic-mgc": { - "name": "libmagic-mgc", - "version": "1:5.35-4+deb10u2", - "release": "", - "newVersion": "1:5.35-4+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmagic1": { - "name": "libmagic1", - "version": "1:5.35-4+deb10u2", - "release": "", - "newVersion": "1:5.35-4+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmailutils5": { - "name": "libmailutils5", - "version": "1:3.5-4", - "release": "", - "newVersion": "1:3.5-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmariadb3": { - "name": "libmariadb3", - "version": "1:10.3.27-0+deb10u1", - "release": "", - "newVersion": "1:10.3.27-0+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmnl0": { - "name": "libmnl0", - "version": "1.0.4-2", - "release": "", - "newVersion": "1.0.4-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmount1": { - "name": "libmount1", - "version": "2.33.1-0.1", - "release": "", - "newVersion": "2.33.1-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmpdec2": { - "name": "libmpdec2", - "version": "2.4.2-2", - "release": "", - "newVersion": "2.4.2-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libncurses6": { - "name": "libncurses6", - "version": "6.1+20181013-2+deb10u2", - "release": "", - "newVersion": "6.1+20181013-2+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libncursesw6": { - "name": "libncursesw6", - "version": "6.1+20181013-2+deb10u2", - "release": "", - "newVersion": "6.1+20181013-2+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnetfilter-conntrack3": { - "name": "libnetfilter-conntrack3", - "version": "1.0.7-1", - "release": "", - "newVersion": "1.0.7-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnettle6": { - "name": "libnettle6", - "version": "3.4.1-1", - "release": "", - "newVersion": "3.4.1-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "528", - "name": "chronyd" - }, - { - "pid": "530", - "name": "chronyd" - } - ] - }, - "libnewt0.52": { - "name": "libnewt0.52", - "version": "0.52.20-8", - "release": "", - "newVersion": "0.52.20-8", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnfnetlink0": { - "name": "libnfnetlink0", - "version": "1.0.1-3+b1", - "release": "", - "newVersion": "1.0.1-3+b1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnftnl11": { - "name": "libnftnl11", - "version": "1.1.2-2", - "release": "", - "newVersion": "1.1.2-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnghttp2-14": { - "name": "libnghttp2-14", - "version": "1.36.0-2+deb10u1", - "release": "", - "newVersion": "1.36.0-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnpth0": { - "name": "libnpth0", - "version": "1.6-1", - "release": "", - "newVersion": "1.6-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libntlm0": { - "name": "libntlm0", - "version": "1.5-1+deb10u1", - "release": "", - "newVersion": "1.5-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libp11-kit0": { - "name": "libp11-kit0", - "version": "0.23.15-2+deb10u1", - "release": "", - "newVersion": "0.23.15-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libpam-modules": { - "name": "libpam-modules", - "version": "1.3.1-5", - "release": "", - "newVersion": "1.3.1-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpam-modules-bin": { - "name": "libpam-modules-bin", - "version": "1.3.1-5", - "release": "", - "newVersion": "1.3.1-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpam-runtime": { - "name": "libpam-runtime", - "version": "1.3.1-5", - "release": "", - "newVersion": "1.3.1-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpam-systemd": { - "name": "libpam-systemd", - "version": "241-7~deb10u6", - "release": "", - "newVersion": "241-7~deb10u6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpam0g": { - "name": "libpam0g", - "version": "1.3.1-5", - "release": "", - "newVersion": "1.3.1-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpcap0.8": { - "name": "libpcap0.8", - "version": "1.8.1-6", - "release": "", - "newVersion": "1.8.1-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpci3": { - "name": "libpci3", - "version": "1:3.5.2-1", - "release": "", - "newVersion": "1:3.5.2-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpcre2-8-0": { - "name": "libpcre2-8-0", - "version": "10.32-5", - "release": "", - "newVersion": "10.32-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpcre3": { - "name": "libpcre3", - "version": "2:8.39-12", - "release": "", - "newVersion": "2:8.39-12", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libperl5.28": { - "name": "libperl5.28", - "version": "5.28.1-6+deb10u1", - "release": "", - "newVersion": "5.28.1-6+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpipeline1": { - "name": "libpipeline1", - "version": "1.5.1-2", - "release": "", - "newVersion": "1.5.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpng16-16": { - "name": "libpng16-16", - "version": "1.6.36-6", - "release": "", - "newVersion": "1.6.36-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpopt0": { - "name": "libpopt0", - "version": "1.16-12", - "release": "", - "newVersion": "1.16-12", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libprocps7": { - "name": "libprocps7", - "version": "2:3.3.15-2", - "release": "", - "newVersion": "2:3.3.15-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libprotobuf-c1": { - "name": "libprotobuf-c1", - "version": "1.3.1-1+b1", - "release": "", - "newVersion": "1.3.1-1+b1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpsl5": { - "name": "libpsl5", - "version": "0.20.2-2", - "release": "", - "newVersion": "0.20.2-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpython-stdlib": { - "name": "libpython-stdlib", - "version": "2.7.16-1", - "release": "", - "newVersion": "2.7.16-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpython2-stdlib": { - "name": "libpython2-stdlib", - "version": "2.7.16-1", - "release": "", - "newVersion": "2.7.16-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpython2.7": { - "name": "libpython2.7", - "version": "2.7.16-2+deb10u1", - "release": "", - "newVersion": "2.7.16-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpython2.7-minimal": { - "name": "libpython2.7-minimal", - "version": "2.7.16-2+deb10u1", - "release": "", - "newVersion": "2.7.16-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpython2.7-stdlib": { - "name": "libpython2.7-stdlib", - "version": "2.7.16-2+deb10u1", - "release": "", - "newVersion": "2.7.16-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpython3-stdlib": { - "name": "libpython3-stdlib", - "version": "3.7.3-1", - "release": "", - "newVersion": "3.7.3-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpython3.7-minimal": { - "name": "libpython3.7-minimal", - "version": "3.7.3-2+deb10u2", - "release": "", - "newVersion": "3.7.3-2+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpython3.7-stdlib": { - "name": "libpython3.7-stdlib", - "version": "3.7.3-2+deb10u2", - "release": "", - "newVersion": "3.7.3-2+deb10u2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "536", - "name": "unattended-upgr" - } - ] - }, - "libreadline7": { - "name": "libreadline7", - "version": "7.0-5", - "release": "", - "newVersion": "7.0-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "librtmp1": { - "name": "librtmp1", - "version": "2.4+20151223.gitfa8646d.1-2", - "release": "", - "newVersion": "2.4+20151223.gitfa8646d.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsasl2-2": { - "name": "libsasl2-2", - "version": "2.1.27+dfsg-1+deb10u1", - "release": "", - "newVersion": "2.1.27+dfsg-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsasl2-modules": { - "name": "libsasl2-modules", - "version": "2.1.27+dfsg-1+deb10u1", - "release": "", - "newVersion": "2.1.27+dfsg-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsasl2-modules-db": { - "name": "libsasl2-modules-db", - "version": "2.1.27+dfsg-1+deb10u1", - "release": "", - "newVersion": "2.1.27+dfsg-1+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libseccomp2": { - "name": "libseccomp2", - "version": "2.3.3-4", - "release": "", - "newVersion": "2.3.3-4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "225", - "name": "systemd-journal" - }, - { - "pid": "606", - "name": "systemd" - }, - { - "pid": "524", - "name": "systemd-logind" - }, - { - "pid": "528", - "name": "chronyd" - }, - { - "pid": "530", - "name": "chronyd" - }, - { - "pid": "607", - "name": "(sd-pam)" - } - ] - }, - "libselinux1": { - "name": "libselinux1", - "version": "2.8-1+b1", - "release": "", - "newVersion": "2.8-1+b1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsemanage-common": { - "name": "libsemanage-common", - "version": "2.8-2", - "release": "", - "newVersion": "2.8-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsemanage1": { - "name": "libsemanage1", - "version": "2.8-2", - "release": "", - "newVersion": "2.8-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsepol1": { - "name": "libsepol1", - "version": "2.8-1", - "release": "", - "newVersion": "2.8-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libslang2": { - "name": "libslang2", - "version": "2.3.2-2", - "release": "", - "newVersion": "2.3.2-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsmartcols1": { - "name": "libsmartcols1", - "version": "2.33.1-0.1", - "release": "", - "newVersion": "2.33.1-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsqlite3-0": { - "name": "libsqlite3-0", - "version": "3.27.2-3+deb10u1", - "release": "", - "newVersion": "3.27.2-3+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libss2": { - "name": "libss2", - "version": "1.44.5-1+deb10u3", - "release": "", - "newVersion": "1.44.5-1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libssh2-1": { - "name": "libssh2-1", - "version": "1.8.0-2.1", - "release": "", - "newVersion": "1.8.0-2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libssl1.1": { - "name": "libssl1.1", - "version": "1.1.1d-0+deb10u4", - "release": "", - "newVersion": "1.1.1d-0+deb10u5", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "225", - "name": "systemd-journal" - }, - { - "pid": "603", - "name": "sshd" - }, - { - "pid": "606", - "name": "systemd" - }, - { - "pid": "1357", - "name": "sshd" - }, - { - "pid": "421", - "name": "dhclient" - }, - { - "pid": "538", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1351", - "name": "sshd" - }, - { - "pid": "524", - "name": "systemd-logind" - }, - { - "pid": "343", - "name": "dhclient" - }, - { - "pid": "615", - "name": "sshd" - }, - { - "pid": "240", - "name": "systemd-udevd" - }, - { - "pid": "607", - "name": "(sd-pam)" - } - ] - }, - "libstdc++6": { - "name": "libstdc++6", - "version": "8.3.0-6", - "release": "", - "newVersion": "8.3.0-6", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "536", - "name": "unattended-upgr" - } - ] - }, - "libsystemd0": { - "name": "libsystemd0", - "version": "241-7~deb10u6", - "release": "", - "newVersion": "241-7~deb10u6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libtasn1-6": { - "name": "libtasn1-6", - "version": "4.13-3", - "release": "", - "newVersion": "4.13-3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libtinfo6": { - "name": "libtinfo6", - "version": "6.1+20181013-2+deb10u2", - "release": "", - "newVersion": "6.1+20181013-2+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libuchardet0": { - "name": "libuchardet0", - "version": "0.0.6-3", - "release": "", - "newVersion": "0.0.6-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libudev1": { - "name": "libudev1", - "version": "241-7~deb10u6", - "release": "", - "newVersion": "241-7~deb10u6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libunbound8": { - "name": "libunbound8", - "version": "1.9.0-2+deb10u2", - "release": "", - "newVersion": "1.9.0-2+deb10u2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libunistring2": { - "name": "libunistring2", - "version": "0.9.10-1", - "release": "", - "newVersion": "0.9.10-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2627", - "name": "exim4", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - } - ] - }, - "libutempter0": { - "name": "libutempter0", - "version": "1.1.6-3", - "release": "", - "newVersion": "1.1.6-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libuuid1": { - "name": "libuuid1", - "version": "2.33.1-0.1", - "release": "", - "newVersion": "2.33.1-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libwrap0": { - "name": "libwrap0", - "version": "7.6.q-28", - "release": "", - "newVersion": "7.6.q-28", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxml2": { - "name": "libxml2", - "version": "2.9.4+dfsg1-7+deb10u1", - "release": "", - "newVersion": "2.9.4+dfsg1-7+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxtables12": { - "name": "libxtables12", - "version": "1.8.2-4", - "release": "", - "newVersion": "1.8.2-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libyaml-0-2": { - "name": "libyaml-0-2", - "version": "0.2.1-1", - "release": "", - "newVersion": "0.2.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libzstd1": { - "name": "libzstd1", - "version": "1.3.8+dfsg-3", - "release": "", - "newVersion": "1.3.8+dfsg-3+deb10u2", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main", - "AffectedProcs": [ - { - "pid": "536", - "name": "unattended-upgr" - } - ] - }, - "linux-base": { - "name": "linux-base", - "version": "4.6", - "release": "", - "newVersion": "4.6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "linux-image-4.19.0-14-cloud-amd64": { - "name": "linux-image-4.19.0-14-cloud-amd64", - "version": "4.19.171-2", - "release": "", - "newVersion": "4.19.171-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "linux-image-cloud-amd64": { - "name": "linux-image-cloud-amd64", - "version": "4.19+105+deb10u9", - "release": "", - "newVersion": "4.19+105+deb10u9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "locales": { - "name": "locales", - "version": "2.28-10", - "release": "", - "newVersion": "2.28-10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "login": { - "name": "login", - "version": "1:4.5-1.1", - "release": "", - "newVersion": "1:4.5-1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "logrotate": { - "name": "logrotate", - "version": "3.14.0-4", - "release": "", - "newVersion": "3.14.0-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lsb-base": { - "name": "lsb-base", - "version": "10.2019051400", - "release": "", - "newVersion": "10.2019051400", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lsb-release": { - "name": "lsb-release", - "version": "10.2019051400", - "release": "", - "newVersion": "10.2019051400", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lsof": { - "name": "lsof", - "version": "4.91+dfsg-1", - "release": "", - "newVersion": "4.91+dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mailutils": { - "name": "mailutils", - "version": "1:3.5-4", - "release": "", - "newVersion": "1:3.5-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mailutils-common": { - "name": "mailutils-common", - "version": "1:3.5-4", - "release": "", - "newVersion": "1:3.5-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "man-db": { - "name": "man-db", - "version": "2.8.5-2", - "release": "", - "newVersion": "2.8.5-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "manpages": { - "name": "manpages", - "version": "4.16-2", - "release": "", - "newVersion": "4.16-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mariadb-common": { - "name": "mariadb-common", - "version": "1:10.3.27-0+deb10u1", - "release": "", - "newVersion": "1:10.3.27-0+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mawk": { - "name": "mawk", - "version": "1.3.3-17+b3", - "release": "", - "newVersion": "1.3.3-17+b3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mime-support": { - "name": "mime-support", - "version": "3.62", - "release": "", - "newVersion": "3.62", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mount": { - "name": "mount", - "version": "2.33.1-0.1", - "release": "", - "newVersion": "2.33.1-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mysql-common": { - "name": "mysql-common", - "version": "5.8+1.0.5", - "release": "", - "newVersion": "5.8+1.0.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "nano": { - "name": "nano", - "version": "3.2-3", - "release": "", - "newVersion": "3.2-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ncurses-base": { - "name": "ncurses-base", - "version": "6.1+20181013-2+deb10u2", - "release": "", - "newVersion": "6.1+20181013-2+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ncurses-bin": { - "name": "ncurses-bin", - "version": "6.1+20181013-2+deb10u2", - "release": "", - "newVersion": "6.1+20181013-2+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "net-tools": { - "name": "net-tools", - "version": "1.60+git20180626.aebd88e-1", - "release": "", - "newVersion": "1.60+git20180626.aebd88e-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "netbase": { - "name": "netbase", - "version": "5.6", - "release": "", - "newVersion": "5.6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "openssh-client": { - "name": "openssh-client", - "version": "1:7.9p1-10+deb10u2", - "release": "", - "newVersion": "1:7.9p1-10+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "openssh-server": { - "name": "openssh-server", - "version": "1:7.9p1-10+deb10u2", - "release": "", - "newVersion": "1:7.9p1-10+deb10u2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "603", - "name": "sshd" - }, - { - "pid": "1357", - "name": "sshd" - }, - { - "pid": "538", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1351", - "name": "sshd" - }, - { - "pid": "615", - "name": "sshd" - } - ] - }, - "openssh-sftp-server": { - "name": "openssh-sftp-server", - "version": "1:7.9p1-10+deb10u2", - "release": "", - "newVersion": "1:7.9p1-10+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "openssl": { - "name": "openssl", - "version": "1.1.1d-0+deb10u4", - "release": "", - "newVersion": "1.1.1d-0+deb10u5", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "passwd": { - "name": "passwd", - "version": "1:4.5-1.1", - "release": "", - "newVersion": "1:4.5-1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "pciutils": { - "name": "pciutils", - "version": "1:3.5.2-1", - "release": "", - "newVersion": "1:3.5.2-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "perl": { - "name": "perl", - "version": "5.28.1-6+deb10u1", - "release": "", - "newVersion": "5.28.1-6+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "perl-base": { - "name": "perl-base", - "version": "5.28.1-6+deb10u1", - "release": "", - "newVersion": "5.28.1-6+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "perl-modules-5.28": { - "name": "perl-modules-5.28", - "version": "5.28.1-6+deb10u1", - "release": "", - "newVersion": "5.28.1-6+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "pinentry-curses": { - "name": "pinentry-curses", - "version": "1.1.0-2", - "release": "", - "newVersion": "1.1.0-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "popularity-contest": { - "name": "popularity-contest", - "version": "1.67", - "release": "", - "newVersion": "1.67", - "newRelease": "", - "arch": "", - "repository": "" - }, - "procps": { - "name": "procps", - "version": "2:3.3.15-2", - "release": "", - "newVersion": "2:3.3.15-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "psmisc": { - "name": "psmisc", - "version": "23.2-1", - "release": "", - "newVersion": "23.2-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "publicsuffix": { - "name": "publicsuffix", - "version": "20190415.1030-1", - "release": "", - "newVersion": "20190415.1030-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python": { - "name": "python", - "version": "2.7.16-1", - "release": "", - "newVersion": "2.7.16-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-apt-common": { - "name": "python-apt-common", - "version": "1.8.4.3", - "release": "", - "newVersion": "1.8.4.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-boto": { - "name": "python-boto", - "version": "2.44.0-1.1", - "release": "", - "newVersion": "2.44.0-1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-certifi": { - "name": "python-certifi", - "version": "2018.8.24-1", - "release": "", - "newVersion": "2018.8.24-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-chardet": { - "name": "python-chardet", - "version": "3.0.4-3", - "release": "", - "newVersion": "3.0.4-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-idna": { - "name": "python-idna", - "version": "2.6-1", - "release": "", - "newVersion": "2.6-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-minimal": { - "name": "python-minimal", - "version": "2.7.16-1", - "release": "", - "newVersion": "2.7.16-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-pkg-resources": { - "name": "python-pkg-resources", - "version": "40.8.0-1", - "release": "", - "newVersion": "40.8.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-requests": { - "name": "python-requests", - "version": "2.21.0-1", - "release": "", - "newVersion": "2.21.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-six": { - "name": "python-six", - "version": "1.12.0-1", - "release": "", - "newVersion": "1.12.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-urllib3": { - "name": "python-urllib3", - "version": "1.24.1-1", - "release": "", - "newVersion": "1.24.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python2": { - "name": "python2", - "version": "2.7.16-1", - "release": "", - "newVersion": "2.7.16-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python2-minimal": { - "name": "python2-minimal", - "version": "2.7.16-1", - "release": "", - "newVersion": "2.7.16-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python2.7": { - "name": "python2.7", - "version": "2.7.16-2+deb10u1", - "release": "", - "newVersion": "2.7.16-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python2.7-minimal": { - "name": "python2.7-minimal", - "version": "2.7.16-2+deb10u1", - "release": "", - "newVersion": "2.7.16-2+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3": { - "name": "python3", - "version": "3.7.3-1", - "release": "", - "newVersion": "3.7.3-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-apt": { - "name": "python3-apt", - "version": "1.8.4.3", - "release": "", - "newVersion": "1.8.4.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "536", - "name": "unattended-upgr" - } - ] - }, - "python3-asn1crypto": { - "name": "python3-asn1crypto", - "version": "0.24.0-1", - "release": "", - "newVersion": "0.24.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-blinker": { - "name": "python3-blinker", - "version": "1.4+dfsg1-0.2", - "release": "", - "newVersion": "1.4+dfsg1-0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-boto": { - "name": "python3-boto", - "version": "2.44.0-1.1", - "release": "", - "newVersion": "2.44.0-1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-botocore": { - "name": "python3-botocore", - "version": "1.12.103+repack-1", - "release": "", - "newVersion": "1.12.103+repack-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-certifi": { - "name": "python3-certifi", - "version": "2018.8.24-1", - "release": "", - "newVersion": "2018.8.24-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-cffi-backend": { - "name": "python3-cffi-backend", - "version": "1.12.2-1", - "release": "", - "newVersion": "1.12.2-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-chardet": { - "name": "python3-chardet", - "version": "3.0.4-3", - "release": "", - "newVersion": "3.0.4-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-colorama": { - "name": "python3-colorama", - "version": "0.3.7-1", - "release": "", - "newVersion": "0.3.7-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-configobj": { - "name": "python3-configobj", - "version": "5.0.6-3", - "release": "", - "newVersion": "5.0.6-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-cryptography": { - "name": "python3-cryptography", - "version": "2.6.1-3+deb10u2", - "release": "", - "newVersion": "2.6.1-3+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-dateutil": { - "name": "python3-dateutil", - "version": "2.7.3-3", - "release": "", - "newVersion": "2.7.3-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-dbus": { - "name": "python3-dbus", - "version": "1.2.8-3", - "release": "", - "newVersion": "1.2.8-3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "536", - "name": "unattended-upgr" - } - ] - }, - "python3-debconf": { - "name": "python3-debconf", - "version": "1.5.71", - "release": "", - "newVersion": "1.5.71", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-debian": { - "name": "python3-debian", - "version": "0.1.35", - "release": "", - "newVersion": "0.1.35", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-debianbts": { - "name": "python3-debianbts", - "version": "2.8.2", - "release": "", - "newVersion": "2.8.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-distro-info": { - "name": "python3-distro-info", - "version": "0.21", - "release": "", - "newVersion": "0.21", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-docutils": { - "name": "python3-docutils", - "version": "0.14+dfsg-4", - "release": "", - "newVersion": "0.14+dfsg-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-httplib2": { - "name": "python3-httplib2", - "version": "0.11.3-2", - "release": "", - "newVersion": "0.11.3-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-idna": { - "name": "python3-idna", - "version": "2.6-1", - "release": "", - "newVersion": "2.6-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jinja2": { - "name": "python3-jinja2", - "version": "2.10-2", - "release": "", - "newVersion": "2.10-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jmespath": { - "name": "python3-jmespath", - "version": "0.9.4-1", - "release": "", - "newVersion": "0.9.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-json-pointer": { - "name": "python3-json-pointer", - "version": "1.10-1", - "release": "", - "newVersion": "1.10-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jsonpatch": { - "name": "python3-jsonpatch", - "version": "1.21-1", - "release": "", - "newVersion": "1.21-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jsonschema": { - "name": "python3-jsonschema", - "version": "2.6.0-4", - "release": "", - "newVersion": "2.6.0-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jwt": { - "name": "python3-jwt", - "version": "1.7.0-2", - "release": "", - "newVersion": "1.7.0-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-markupsafe": { - "name": "python3-markupsafe", - "version": "1.1.0-1", - "release": "", - "newVersion": "1.1.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-minimal": { - "name": "python3-minimal", - "version": "3.7.3-1", - "release": "", - "newVersion": "3.7.3-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-oauthlib": { - "name": "python3-oauthlib", - "version": "2.1.0-1", - "release": "", - "newVersion": "2.1.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pkg-resources": { - "name": "python3-pkg-resources", - "version": "40.8.0-1", - "release": "", - "newVersion": "40.8.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pyasn1": { - "name": "python3-pyasn1", - "version": "0.4.2-3", - "release": "", - "newVersion": "0.4.2-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pycurl": { - "name": "python3-pycurl", - "version": "7.43.0.2-0.1", - "release": "", - "newVersion": "7.43.0.2-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pysimplesoap": { - "name": "python3-pysimplesoap", - "version": "1.16.2-1", - "release": "", - "newVersion": "1.16.2-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-reportbug": { - "name": "python3-reportbug", - "version": "7.5.3~deb10u1", - "release": "", - "newVersion": "7.5.3~deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-requests": { - "name": "python3-requests", - "version": "2.21.0-1", - "release": "", - "newVersion": "2.21.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-roman": { - "name": "python3-roman", - "version": "2.0.0-3", - "release": "", - "newVersion": "2.0.0-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-rsa": { - "name": "python3-rsa", - "version": "4.0-2", - "release": "", - "newVersion": "4.0-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-s3transfer": { - "name": "python3-s3transfer", - "version": "0.2.0-1", - "release": "", - "newVersion": "0.2.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-six": { - "name": "python3-six", - "version": "1.12.0-1", - "release": "", - "newVersion": "1.12.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-urllib3": { - "name": "python3-urllib3", - "version": "1.24.1-1", - "release": "", - "newVersion": "1.24.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-yaml": { - "name": "python3-yaml", - "version": "3.13-2", - "release": "", - "newVersion": "3.13-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3.7": { - "name": "python3.7", - "version": "3.7.3-2+deb10u2", - "release": "", - "newVersion": "3.7.3-2+deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3.7-minimal": { - "name": "python3.7-minimal", - "version": "3.7.3-2+deb10u2", - "release": "", - "newVersion": "3.7.3-2+deb10u2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "536", - "name": "unattended-upgr" - } - ] - }, - "qemu-utils": { - "name": "qemu-utils", - "version": "1:3.1+dfsg-8+deb10u8", - "release": "", - "newVersion": "1:3.1+dfsg-8+deb10u8", - "newRelease": "", - "arch": "", - "repository": "" - }, - "readline-common": { - "name": "readline-common", - "version": "7.0-5", - "release": "", - "newVersion": "7.0-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "reportbug": { - "name": "reportbug", - "version": "7.5.3~deb10u1", - "release": "", - "newVersion": "7.5.3~deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "rsyslog": { - "name": "rsyslog", - "version": "8.1901.0-1", - "release": "", - "newVersion": "8.1901.0-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "522", - "name": "rsyslogd" - } - ] - }, - "screen": { - "name": "screen", - "version": "4.6.2-3", - "release": "", - "newVersion": "4.6.2-3+deb10u1", - "newRelease": "", - "arch": "", - "repository": "buster/updates/main" - }, - "sed": { - "name": "sed", - "version": "4.7-1", - "release": "", - "newVersion": "4.7-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sensible-utils": { - "name": "sensible-utils", - "version": "0.0.12", - "release": "", - "newVersion": "0.0.12", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sgml-base": { - "name": "sgml-base", - "version": "1.29", - "release": "", - "newVersion": "1.29", - "newRelease": "", - "arch": "", - "repository": "" - }, - "socat": { - "name": "socat", - "version": "1.7.3.2-2", - "release": "", - "newVersion": "1.7.3.2-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sudo": { - "name": "sudo", - "version": "1.8.27-1+deb10u3", - "release": "", - "newVersion": "1.8.27-1+deb10u3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1361", - "name": "sudo" - } - ] - }, - "systemd": { - "name": "systemd", - "version": "241-7~deb10u6", - "release": "", - "newVersion": "241-7~deb10u6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "systemd-sysv": { - "name": "systemd-sysv", - "version": "241-7~deb10u6", - "release": "", - "newVersion": "241-7~deb10u6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sysvinit-utils": { - "name": "sysvinit-utils", - "version": "2.93-8", - "release": "", - "newVersion": "2.93-8", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tar": { - "name": "tar", - "version": "1.30+dfsg-6", - "release": "", - "newVersion": "1.30+dfsg-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tcpdump": { - "name": "tcpdump", - "version": "4.9.3-1~deb10u2", - "release": "", - "newVersion": "4.9.3-1~deb10u2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "traceroute": { - "name": "traceroute", - "version": "1:2.1.0-2", - "release": "", - "newVersion": "1:2.1.0-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tzdata": { - "name": "tzdata", - "version": "2021a-0+deb10u1", - "release": "", - "newVersion": "2021a-0+deb10u1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ucf": { - "name": "ucf", - "version": "3.0038+nmu1", - "release": "", - "newVersion": "3.0038+nmu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "udev": { - "name": "udev", - "version": "241-7~deb10u6", - "release": "", - "newVersion": "241-7~deb10u6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "unattended-upgrades": { - "name": "unattended-upgrades", - "version": "1.11.2", - "release": "", - "newVersion": "1.11.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "util-linux": { - "name": "util-linux", - "version": "2.33.1-0.1", - "release": "", - "newVersion": "2.33.1-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "uuid-runtime": { - "name": "uuid-runtime", - "version": "2.33.1-0.1", - "release": "", - "newVersion": "2.33.1-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim": { - "name": "vim", - "version": "2:8.1.0875-5", - "release": "", - "newVersion": "2:8.1.0875-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim-common": { - "name": "vim-common", - "version": "2:8.1.0875-5", - "release": "", - "newVersion": "2:8.1.0875-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim-runtime": { - "name": "vim-runtime", - "version": "2:8.1.0875-5", - "release": "", - "newVersion": "2:8.1.0875-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim-tiny": { - "name": "vim-tiny", - "version": "2:8.1.0875-5", - "release": "", - "newVersion": "2:8.1.0875-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "wget": { - "name": "wget", - "version": "1.20.1-1.1", - "release": "", - "newVersion": "1.20.1-1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "whiptail": { - "name": "whiptail", - "version": "0.52.20-8", - "release": "", - "newVersion": "0.52.20-8", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xml-core": { - "name": "xml-core", - "version": "0.18+nmu1", - "release": "", - "newVersion": "0.18+nmu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xxd": { - "name": "xxd", - "version": "2:8.1.0875-5", - "release": "", - "newVersion": "2:8.1.0875-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xz-utils": { - "name": "xz-utils", - "version": "5.2.4-1", - "release": "", - "newVersion": "5.2.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "zlib1g": { - "name": "zlib1g", - "version": "1:1.2.11.dfsg-1", - "release": "", - "newVersion": "1:1.2.11.dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - } - }, - "SrcPackages": { - "acl": { - "name": "acl", - "version": "2.2.53-4", - "arch": "", - "binaryNames": [ - "libacl1" - ] - }, - "argon2": { - "name": "argon2", - "version": "0~20171227-0.2", - "arch": "", - "binaryNames": [ - "libargon2-1" - ] - }, - "asn1crypto": { - "name": "asn1crypto", - "version": "0.24.0-1", - "arch": "", - "binaryNames": [ - "python3-asn1crypto" - ] - }, - "attr": { - "name": "attr", - "version": "1:2.4.48-4", - "arch": "", - "binaryNames": [ - "libattr1" - ] - }, - "audit": { - "name": "audit", - "version": "1:2.8.4-3", - "arch": "", - "binaryNames": [ - "libaudit-common", - "libaudit1" - ] - }, - "bind9": { - "name": "bind9", - "version": "1:9.11.5.P4+dfsg-5.1+deb10u2", - "arch": "", - "binaryNames": [ - "bind9-host", - "libbind9-161", - "libdns-export1104", - "libdns1104", - "libisc-export1100", - "libisc1100", - "libisccc161", - "libisccfg163", - "liblwres161" - ] - }, - "blinker": { - "name": "blinker", - "version": "1.4+dfsg1-0.2", - "arch": "", - "binaryNames": [ - "python3-blinker" - ] - }, - "cdebconf": { - "name": "cdebconf", - "version": "0.249", - "arch": "", - "binaryNames": [ - "libdebconfclient0" - ] - }, - "cdrkit": { - "name": "cdrkit", - "version": "9:1.1.11-3", - "arch": "", - "binaryNames": [ - "genisoimage" - ] - }, - "chardet": { - "name": "chardet", - "version": "3.0.4-3", - "arch": "", - "binaryNames": [ - "python-chardet", - "python3-chardet" - ] - }, - "cloud-initramfs-tools": { - "name": "cloud-initramfs-tools", - "version": "0.18.debian7", - "arch": "", - "binaryNames": [ - "cloud-initramfs-growroot" - ] - }, - "configobj": { - "name": "configobj", - "version": "5.0.6-3", - "arch": "", - "binaryNames": [ - "python3-configobj" - ] - }, - "cryptsetup": { - "name": "cryptsetup", - "version": "2:2.1.0-5+deb10u2", - "arch": "", - "binaryNames": [ - "libcryptsetup12" - ] - }, - "cyrus-sasl2": { - "name": "cyrus-sasl2", - "version": "2.1.27+dfsg-1+deb10u1", - "arch": "", - "binaryNames": [ - "libsasl2-2", - "libsasl2-modules", - "libsasl2-modules-db" - ] - }, - "db5.3": { - "name": "db5.3", - "version": "5.3.28+dfsg1-0.5", - "arch": "", - "binaryNames": [ - "libdb5.3" - ] - }, - "dbus-python": { - "name": "dbus-python", - "version": "1.2.8-3", - "arch": "", - "binaryNames": [ - "python3-dbus" - ] - }, - "distro-info": { - "name": "distro-info", - "version": "0.21", - "arch": "", - "binaryNames": [ - "python3-distro-info" - ] - }, - "efivar": { - "name": "efivar", - "version": "37-2+deb10u1", - "arch": "", - "binaryNames": [ - "libefiboot1", - "libefivar1" - ] - }, - "exim4": { - "name": "exim4", - "version": "4.92-8+deb10u4", - "arch": "", - "binaryNames": [ - "exim4-base", - "exim4-config", - "exim4-daemon-light" - ] - }, - "expat": { - "name": "expat", - "version": "2.2.6-2+deb10u1", - "arch": "", - "binaryNames": [ - "libexpat1" - ] - }, - "freetype": { - "name": "freetype", - "version": "2.9.1-3+deb10u2", - "arch": "", - "binaryNames": [ - "libfreetype6" - ] - }, - "fribidi": { - "name": "fribidi", - "version": "1.0.5-3.1+deb10u1", - "arch": "", - "binaryNames": [ - "libfribidi0" - ] - }, - "fstrm": { - "name": "fstrm", - "version": "0.4.0-1", - "arch": "", - "binaryNames": [ - "libfstrm0" - ] - }, - "fuse": { - "name": "fuse", - "version": "2.9.9-1+deb10u1", - "arch": "", - "binaryNames": [ - "libfuse2" - ] - }, - "gcc-8": { - "name": "gcc-8", - "version": "8.3.0-6", - "arch": "", - "binaryNames": [ - "gcc-8-base", - "libgcc1", - "libstdc++6" - ] - }, - "gdbm": { - "name": "gdbm", - "version": "1.18.1-4", - "arch": "", - "binaryNames": [ - "libgdbm-compat4", - "libgdbm6" - ] - }, - "geoip": { - "name": "geoip", - "version": "1.6.12-1", - "arch": "", - "binaryNames": [ - "libgeoip1" - ] - }, - "gettext": { - "name": "gettext", - "version": "0.19.8.1-9", - "arch": "", - "binaryNames": [ - "gettext-base" - ] - }, - "glib2.0": { - "name": "glib2.0", - "version": "2.58.3-2+deb10u2", - "arch": "", - "binaryNames": [ - "libglib2.0-0" - ] - }, - "glibc": { - "name": "glibc", - "version": "2.28-10", - "arch": "", - "binaryNames": [ - "libc-bin", - "libc-l10n", - "libc6", - "locales" - ] - }, - "gmp": { - "name": "gmp", - "version": "2:6.1.2+dfsg-4", - "arch": "", - "binaryNames": [ - "libgmp10" - ] - }, - "gnupg2": { - "name": "gnupg2", - "version": "2.2.12-1+deb10u1", - "arch": "", - "binaryNames": [ - "dirmngr", - "gnupg", - "gnupg-l10n", - "gnupg-utils", - "gpg", - "gpg-agent", - "gpg-wks-client", - "gpg-wks-server", - "gpgconf", - "gpgsm", - "gpgv" - ] - }, - "gnutls28": { - "name": "gnutls28", - "version": "3.6.7-4+deb10u6", - "arch": "", - "binaryNames": [ - "libgnutls-dane0", - "libgnutls30" - ] - }, - "gpm": { - "name": "gpm", - "version": "1.20.7-5", - "arch": "", - "binaryNames": [ - "libgpm2" - ] - }, - "groff": { - "name": "groff", - "version": "1.22.4-3", - "arch": "", - "binaryNames": [ - "groff-base" - ] - }, - "grub-cloud": { - "name": "grub-cloud", - "version": "0.0.4", - "arch": "", - "binaryNames": [ - "grub-cloud-amd64" - ] - }, - "grub2": { - "name": "grub2", - "version": "2.02+dfsg1-20+deb10u3", - "arch": "", - "binaryNames": [ - "grub-common", - "grub-efi-amd64-bin", - "grub-pc-bin", - "grub2-common" - ] - }, - "gsasl": { - "name": "gsasl", - "version": "1.8.0-8", - "arch": "", - "binaryNames": [ - "libgsasl7" - ] - }, - "guile-2.2": { - "name": "guile-2.2", - "version": "2.2.4+1-2+deb10u1", - "arch": "", - "binaryNames": [ - "guile-2.2-libs" - ] - }, - "icu": { - "name": "icu", - "version": "63.1-6+deb10u1", - "arch": "", - "binaryNames": [ - "libicu63" - ] - }, - "iputils": { - "name": "iputils", - "version": "3:20180629-2+deb10u1", - "arch": "", - "binaryNames": [ - "iputils-ping" - ] - }, - "isc-dhcp": { - "name": "isc-dhcp", - "version": "4.4.1-2", - "arch": "", - "binaryNames": [ - "isc-dhcp-client" - ] - }, - "jinja2": { - "name": "jinja2", - "version": "2.10-2", - "arch": "", - "binaryNames": [ - "python3-jinja2" - ] - }, - "json-c": { - "name": "json-c", - "version": "0.12.1+ds-2+deb10u1", - "arch": "", - "binaryNames": [ - "libjson-c3" - ] - }, - "keyutils": { - "name": "keyutils", - "version": "1.6-6", - "arch": "", - "binaryNames": [ - "libkeyutils1" - ] - }, - "klibc": { - "name": "klibc", - "version": "2.0.6-1", - "arch": "", - "binaryNames": [ - "klibc-utils", - "libklibc" - ] - }, - "krb5": { - "name": "krb5", - "version": "1.17-3+deb10u1", - "arch": "", - "binaryNames": [ - "krb5-locales", - "libgssapi-krb5-2", - "libk5crypto3", - "libkrb5-3", - "libkrb5support0" - ] - }, - "kyotocabinet": { - "name": "kyotocabinet", - "version": "1.2.76-4.2", - "arch": "", - "binaryNames": [ - "libkyotocabinet16v5" - ] - }, - "libaio": { - "name": "libaio", - "version": "0.3.112-3", - "arch": "", - "binaryNames": [ - "libaio1" - ] - }, - "libassuan": { - "name": "libassuan", - "version": "2.5.2-1", - "arch": "", - "binaryNames": [ - "libassuan0" - ] - }, - "libbsd": { - "name": "libbsd", - "version": "0.9.1-2", - "arch": "", - "binaryNames": [ - "libbsd0" - ] - }, - "libcap-ng": { - "name": "libcap-ng", - "version": "0.7.9-2", - "arch": "", - "binaryNames": [ - "libcap-ng0" - ] - }, - "libedit": { - "name": "libedit", - "version": "3.1-20181209-1", - "arch": "", - "binaryNames": [ - "libedit2" - ] - }, - "libestr": { - "name": "libestr", - "version": "0.1.10-2.1", - "arch": "", - "binaryNames": [ - "libestr0" - ] - }, - "libevent": { - "name": "libevent", - "version": "2.1.8-stable-4", - "arch": "", - "binaryNames": [ - "libevent-2.1-6" - ] - }, - "libfastjson": { - "name": "libfastjson", - "version": "0.99.8-2", - "arch": "", - "binaryNames": [ - "libfastjson4" - ] - }, - "libffi": { - "name": "libffi", - "version": "3.2.1-9", - "arch": "", - "binaryNames": [ - "libffi6" - ] - }, - "libgc": { - "name": "libgc", - "version": "1:7.6.4-0.4", - "arch": "", - "binaryNames": [ - "libgc1c2" - ] - }, - "libgpg-error": { - "name": "libgpg-error", - "version": "1.35-1", - "arch": "", - "binaryNames": [ - "libgpg-error0" - ] - }, - "libidn": { - "name": "libidn", - "version": "1.33-2.2", - "arch": "", - "binaryNames": [ - "libidn11" - ] - }, - "libidn2": { - "name": "libidn2", - "version": "2.0.5-1+deb10u1", - "arch": "", - "binaryNames": [ - "libidn2-0" - ] - }, - "libksba": { - "name": "libksba", - "version": "1.3.5-2", - "arch": "", - "binaryNames": [ - "libksba8" - ] - }, - "liblognorm": { - "name": "liblognorm", - "version": "2.0.5-1", - "arch": "", - "binaryNames": [ - "liblognorm5" - ] - }, - "libmnl": { - "name": "libmnl", - "version": "1.0.4-2", - "arch": "", - "binaryNames": [ - "libmnl0" - ] - }, - "libnetfilter-conntrack": { - "name": "libnetfilter-conntrack", - "version": "1.0.7-1", - "arch": "", - "binaryNames": [ - "libnetfilter-conntrack3" - ] - }, - "libnfnetlink": { - "name": "libnfnetlink", - "version": "1.0.1-3", - "arch": "", - "binaryNames": [ - "libnfnetlink0" - ] - }, - "libnftnl": { - "name": "libnftnl", - "version": "1.1.2-2", - "arch": "", - "binaryNames": [ - "libnftnl11" - ] - }, - "libntlm": { - "name": "libntlm", - "version": "1.5-1+deb10u1", - "arch": "", - "binaryNames": [ - "libntlm0" - ] - }, - "libpcap": { - "name": "libpcap", - "version": "1.8.1-6", - "arch": "", - "binaryNames": [ - "libpcap0.8" - ] - }, - "libpipeline": { - "name": "libpipeline", - "version": "1.5.1-2", - "arch": "", - "binaryNames": [ - "libpipeline1" - ] - }, - "libpng1.6": { - "name": "libpng1.6", - "version": "1.6.36-6", - "arch": "", - "binaryNames": [ - "libpng16-16" - ] - }, - "libpsl": { - "name": "libpsl", - "version": "0.20.2-2", - "arch": "", - "binaryNames": [ - "libpsl5" - ] - }, - "libseccomp": { - "name": "libseccomp", - "version": "2.3.3-4", - "arch": "", - "binaryNames": [ - "libseccomp2" - ] - }, - "libselinux": { - "name": "libselinux", - "version": "2.8-1", - "arch": "", - "binaryNames": [ - "libselinux1" - ] - }, - "libsemanage": { - "name": "libsemanage", - "version": "2.8-2", - "arch": "", - "binaryNames": [ - "libsemanage-common", - "libsemanage1" - ] - }, - "libsepol": { - "name": "libsepol", - "version": "2.8-1", - "arch": "", - "binaryNames": [ - "libsepol1" - ] - }, - "libssh2": { - "name": "libssh2", - "version": "1.8.0-2.1", - "arch": "", - "binaryNames": [ - "libssh2-1" - ] - }, - "libtool": { - "name": "libtool", - "version": "2.4.6-9", - "arch": "", - "binaryNames": [ - "libltdl7" - ] - }, - "libunistring": { - "name": "libunistring", - "version": "0.9.10-1", - "arch": "", - "binaryNames": [ - "libunistring2" - ] - }, - "libutempter": { - "name": "libutempter", - "version": "1.1.6-3", - "arch": "", - "binaryNames": [ - "libutempter0" - ] - }, - "libyaml": { - "name": "libyaml", - "version": "0.2.1-1", - "arch": "", - "binaryNames": [ - "libyaml-0-2" - ] - }, - "libzstd": { - "name": "libzstd", - "version": "1.3.8+dfsg-3", - "arch": "", - "binaryNames": [ - "libzstd1" - ] - }, - "linux-latest": { - "name": "linux-latest", - "version": "105+deb10u9", - "arch": "", - "binaryNames": [ - "linux-image-cloud-amd64" - ] - }, - "linux-signed-amd64": { - "name": "linux-signed-amd64", - "version": "4.19.171+2", - "arch": "", - "binaryNames": [ - "linux-image-4.19.0-14-cloud-amd64" - ] - }, - "lmdb": { - "name": "lmdb", - "version": "0.9.22-1", - "arch": "", - "binaryNames": [ - "liblmdb0" - ] - }, - "lsb": { - "name": "lsb", - "version": "10.2019051400", - "arch": "", - "binaryNames": [ - "lsb-base", - "lsb-release" - ] - }, - "lvm2": { - "name": "lvm2", - "version": "2.03.02-3", - "arch": "", - "binaryNames": [ - "dmsetup", - "libdevmapper1.02.1" - ] - }, - "lz4": { - "name": "lz4", - "version": "1.8.3-1", - "arch": "", - "binaryNames": [ - "liblz4-1" - ] - }, - "lzo2": { - "name": "lzo2", - "version": "2.10-0.1", - "arch": "", - "binaryNames": [ - "liblzo2-2" - ] - }, - "mariadb-10.3": { - "name": "mariadb-10.3", - "version": "1:10.3.27-0+deb10u1", - "arch": "", - "binaryNames": [ - "libmariadb3", - "mariadb-common" - ] - }, - "markupsafe": { - "name": "markupsafe", - "version": "1.1.0-1", - "arch": "", - "binaryNames": [ - "python3-markupsafe" - ] - }, - "mpdecimal": { - "name": "mpdecimal", - "version": "2.4.2-2", - "arch": "", - "binaryNames": [ - "libmpdec2" - ] - }, - "mysql-defaults": { - "name": "mysql-defaults", - "version": "1.0.5", - "arch": "", - "binaryNames": [ - "mysql-common" - ] - }, - "ncurses": { - "name": "ncurses", - "version": "6.1+20181013-2+deb10u2", - "arch": "", - "binaryNames": [ - "libncurses6", - "libncursesw6", - "libtinfo6", - "ncurses-base", - "ncurses-bin" - ] - }, - "nettle": { - "name": "nettle", - "version": "3.4.1-1", - "arch": "", - "binaryNames": [ - "libhogweed4", - "libnettle6" - ] - }, - "newt": { - "name": "newt", - "version": "0.52.20-8", - "arch": "", - "binaryNames": [ - "libnewt0.52", - "whiptail" - ] - }, - "nghttp2": { - "name": "nghttp2", - "version": "1.36.0-2+deb10u1", - "arch": "", - "binaryNames": [ - "libnghttp2-14" - ] - }, - "npth": { - "name": "npth", - "version": "1.6-1", - "arch": "", - "binaryNames": [ - "libnpth0" - ] - }, - "openldap": { - "name": "openldap", - "version": "2.4.47+dfsg-3+deb10u5", - "arch": "", - "binaryNames": [ - "libldap-2.4-2", - "libldap-common" - ] - }, - "openssh": { - "name": "openssh", - "version": "1:7.9p1-10+deb10u2", - "arch": "", - "binaryNames": [ - "openssh-client", - "openssh-server", - "openssh-sftp-server" - ] - }, - "p11-kit": { - "name": "p11-kit", - "version": "0.23.15-2+deb10u1", - "arch": "", - "binaryNames": [ - "libp11-kit0" - ] - }, - "pam": { - "name": "pam", - "version": "1.3.1-5", - "arch": "", - "binaryNames": [ - "libpam-modules", - "libpam-modules-bin", - "libpam-runtime", - "libpam0g" - ] - }, - "pcre2": { - "name": "pcre2", - "version": "10.32-5", - "arch": "", - "binaryNames": [ - "libpcre2-8-0" - ] - }, - "pcre3": { - "name": "pcre3", - "version": "2:8.39-12", - "arch": "", - "binaryNames": [ - "libpcre3" - ] - }, - "pinentry": { - "name": "pinentry", - "version": "1.1.0-2", - "arch": "", - "binaryNames": [ - "pinentry-curses" - ] - }, - "popt": { - "name": "popt", - "version": "1.16-12", - "arch": "", - "binaryNames": [ - "libpopt0" - ] - }, - "protobuf-c": { - "name": "protobuf-c", - "version": "1.3.1-1", - "arch": "", - "binaryNames": [ - "libprotobuf-c1" - ] - }, - "pyasn1": { - "name": "pyasn1", - "version": "0.4.2-3", - "arch": "", - "binaryNames": [ - "python3-pyasn1" - ] - }, - "pycurl": { - "name": "pycurl", - "version": "7.43.0.2-0.1", - "arch": "", - "binaryNames": [ - "python3-pycurl" - ] - }, - "pyjwt": { - "name": "pyjwt", - "version": "1.7.0-2", - "arch": "", - "binaryNames": [ - "python3-jwt" - ] - }, - "pysimplesoap": { - "name": "pysimplesoap", - "version": "1.16.2-1", - "arch": "", - "binaryNames": [ - "python3-pysimplesoap" - ] - }, - "python-apt": { - "name": "python-apt", - "version": "1.8.4.3", - "arch": "", - "binaryNames": [ - "python-apt-common", - "python3-apt" - ] - }, - "python-botocore": { - "name": "python-botocore", - "version": "1.12.103+repack-1", - "arch": "", - "binaryNames": [ - "python3-botocore" - ] - }, - "python-cffi": { - "name": "python-cffi", - "version": "1.12.2-1", - "arch": "", - "binaryNames": [ - "python3-cffi-backend" - ] - }, - "python-colorama": { - "name": "python-colorama", - "version": "0.3.7-1", - "arch": "", - "binaryNames": [ - "python3-colorama" - ] - }, - "python-cryptography": { - "name": "python-cryptography", - "version": "2.6.1-3+deb10u2", - "arch": "", - "binaryNames": [ - "python3-cryptography" - ] - }, - "python-dateutil": { - "name": "python-dateutil", - "version": "2.7.3-3", - "arch": "", - "binaryNames": [ - "python3-dateutil" - ] - }, - "python-debian": { - "name": "python-debian", - "version": "0.1.35", - "arch": "", - "binaryNames": [ - "python3-debian" - ] - }, - "python-debianbts": { - "name": "python-debianbts", - "version": "2.8.2", - "arch": "", - "binaryNames": [ - "python3-debianbts" - ] - }, - "python-defaults": { - "name": "python-defaults", - "version": "2.7.16-1", - "arch": "", - "binaryNames": [ - "libpython-stdlib", - "libpython2-stdlib", - "python", - "python-minimal", - "python2", - "python2-minimal" - ] - }, - "python-docutils": { - "name": "python-docutils", - "version": "0.14+dfsg-4", - "arch": "", - "binaryNames": [ - "docutils-common", - "python3-docutils" - ] - }, - "python-httplib2": { - "name": "python-httplib2", - "version": "0.11.3-2", - "arch": "", - "binaryNames": [ - "python3-httplib2" - ] - }, - "python-jmespath": { - "name": "python-jmespath", - "version": "0.9.4-1", - "arch": "", - "binaryNames": [ - "python3-jmespath" - ] - }, - "python-json-patch": { - "name": "python-json-patch", - "version": "1.21-1", - "arch": "", - "binaryNames": [ - "python3-jsonpatch" - ] - }, - "python-json-pointer": { - "name": "python-json-pointer", - "version": "1.10-1", - "arch": "", - "binaryNames": [ - "python3-json-pointer" - ] - }, - "python-jsonschema": { - "name": "python-jsonschema", - "version": "2.6.0-4", - "arch": "", - "binaryNames": [ - "python3-jsonschema" - ] - }, - "python-oauthlib": { - "name": "python-oauthlib", - "version": "2.1.0-1", - "arch": "", - "binaryNames": [ - "python3-oauthlib" - ] - }, - "python-roman": { - "name": "python-roman", - "version": "2.0.0-3", - "arch": "", - "binaryNames": [ - "python3-roman" - ] - }, - "python-rsa": { - "name": "python-rsa", - "version": "4.0-2", - "arch": "", - "binaryNames": [ - "python3-rsa" - ] - }, - "python-s3transfer": { - "name": "python-s3transfer", - "version": "0.2.0-1", - "arch": "", - "binaryNames": [ - "python3-s3transfer" - ] - }, - "python-setuptools": { - "name": "python-setuptools", - "version": "40.8.0-1", - "arch": "", - "binaryNames": [ - "python-pkg-resources", - "python3-pkg-resources" - ] - }, - "python3-defaults": { - "name": "python3-defaults", - "version": "3.7.3-1", - "arch": "", - "binaryNames": [ - "libpython3-stdlib", - "python3", - "python3-minimal" - ] - }, - "pyyaml": { - "name": "pyyaml", - "version": "3.13-2", - "arch": "", - "binaryNames": [ - "python3-yaml" - ] - }, - "qemu": { - "name": "qemu", - "version": "1:3.1+dfsg-8+deb10u8", - "arch": "", - "binaryNames": [ - "qemu-utils" - ] - }, - "readline": { - "name": "readline", - "version": "7.0-5", - "arch": "", - "binaryNames": [ - "libreadline7", - "readline-common" - ] - }, - "requests": { - "name": "requests", - "version": "2.21.0-1", - "arch": "", - "binaryNames": [ - "python-requests", - "python3-requests" - ] - }, - "rtmpdump": { - "name": "rtmpdump", - "version": "2.4+20151223.gitfa8646d.1-2", - "arch": "", - "binaryNames": [ - "librtmp1" - ] - }, - "shadow": { - "name": "shadow", - "version": "1:4.5-1.1", - "arch": "", - "binaryNames": [ - "login", - "passwd" - ] - }, - "six": { - "name": "six", - "version": "1.12.0-1", - "arch": "", - "binaryNames": [ - "python-six", - "python3-six" - ] - }, - "slang2": { - "name": "slang2", - "version": "2.3.2-2", - "arch": "", - "binaryNames": [ - "libslang2" - ] - }, - "sqlite3": { - "name": "sqlite3", - "version": "3.27.2-3+deb10u1", - "arch": "", - "binaryNames": [ - "libsqlite3-0" - ] - }, - "sysvinit": { - "name": "sysvinit", - "version": "2.93-8", - "arch": "", - "binaryNames": [ - "sysvinit-utils" - ] - }, - "tcp-wrappers": { - "name": "tcp-wrappers", - "version": "7.6.q-28", - "arch": "", - "binaryNames": [ - "libwrap0" - ] - }, - "uchardet": { - "name": "uchardet", - "version": "0.0.6-3", - "arch": "", - "binaryNames": [ - "libuchardet0" - ] - }, - "unbound": { - "name": "unbound", - "version": "1.9.0-2+deb10u2", - "arch": "", - "binaryNames": [ - "libunbound8" - ] - }, - "zlib": { - "name": "zlib", - "version": "1:1.2.11.dfsg-1", - "arch": "", - "binaryNames": [ - "zlib1g" - ] - } - }, - "constant": { - "scan": { - "logDir": "/var/log/vuls", - "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", - "default": { - "port": "22", - "scanMode": [ - "fast" - ] - }, - "servers": { - "deb10": { - "serverName": "deb10", - "user": "admin", - "host": "52.199.253.40", - "port": "22", - "keyPath": "/home/ubuntu/.ssh/stg.pem", - "scanMode": [ - "fast-root" - ], - "wordpress": {} - } - }, - "cveDict": { - "Name": "cveDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", - "DebugSQL": false - }, - "ovalDict": { - "Name": "ovalDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", - "DebugSQL": false - }, - "gost": { - "Name": "gost", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", - "DebugSQL": false - }, - "exploit": { - "Name": "exploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", - "DebugSQL": false - }, - "metasploit": { - "Name": "metasploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", - "DebugSQL": false - } - }, - "report": { - "default": {}, - "cveDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "ovalDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "gost": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "exploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "metasploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - } - } - } -} diff --git a/integration/data/lockfile/Cargo.lock b/integration/data/lockfile/Cargo.lock new file mode 100644 index 00000000..28075922 --- /dev/null +++ b/integration/data/lockfile/Cargo.lock @@ -0,0 +1,4231 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "Inflector" +version = "0.11.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" +dependencies = [ + "lazy_static", + "regex", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "ahash" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e" + +[[package]] +name = "ahash" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f200cbb1e856866d9eade941cf3aa0c5d7dd36f74311c4273b494f4ef036957" +dependencies = [ + "getrandom 0.2.2", + "once_cell", + "version_check", +] + +[[package]] +name = "aho-corasick" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" +dependencies = [ + "memchr", +] + +[[package]] +name = "alloc-no-stdlib" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5192ec435945d87bc2f70992b4d818154b5feede43c09fb7592146374eac90a6" + +[[package]] +name = "alloc-stdlib" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2" +dependencies = [ + "alloc-no-stdlib", +] + +[[package]] +name = "ansi_term" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" +dependencies = [ + "winapi 0.3.9", +] + +[[package]] +name = "anyhow" +version = "1.0.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b" + +[[package]] +name = "anymap" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344" + +[[package]] +name = "arrayvec" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" +dependencies = [ + "serde", +] + +[[package]] +name = "ash" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06063a002a77d2734631db74e8f4ce7148b77fe522e6bca46f2ae7774fd48112" +dependencies = [ + "libloading", +] + +[[package]] +name = "ast_node" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93f52ce8fac3d0e6720a92b0576d737c01b1b5db4dd786e962e5925f00bf755" +dependencies = [ + "darling", + "pmutil", + "proc-macro2 1.0.26", + "quote 1.0.9", + "swc_macros_common", + "syn 1.0.65", +] + +[[package]] +name = "async-compression" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443ccbb270374a2b1055fc72da40e1f237809cd6bb0e97e66d264cd138473a6" +dependencies = [ + "brotli", + "flate2", + "futures-core", + "memchr", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "async-stream" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a26cb53174ddd320edfff199a853f93d571f48eeb4dde75e67a9a3dbb7b7e5e" +dependencies = [ + "async-stream-impl", + "futures-core", +] + +[[package]] +name = "async-stream-impl" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db134ba52475c060f3329a8ef0f8786d6b872ed01515d4b79c162e5798da1340" +dependencies = [ + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "async-trait" +version = "0.1.50" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b98e84bbb4cbcdd97da190ba0c58a1bb0de2c1fdf67d159e192ed766aeca722" +dependencies = [ + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "atty" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" +dependencies = [ + "hermit-abi", + "libc", + "winapi 0.3.9", +] + +[[package]] +name = "auto_impl" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42cbf586c80ada5e5ccdecae80d3ef0854f224e2dd74435f8d87e6831b8d0a38" +dependencies = [ + "proc-macro-error", + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "autocfg" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" + +[[package]] +name = "base64" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" + +[[package]] +name = "base64" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" + +[[package]] +name = "bencher" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dfdb4953a096c551ce9ace855a604d702e6e62d77fac690575ae347571717f5" + +[[package]] +name = "bit-set" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e11e16035ea35e4e5997b393eacbf6f63983188f7a2ad25bfb13465f5ad59de" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" + +[[package]] +name = "bitflags" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" + +[[package]] +name = "block" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" + +[[package]] +name = "block-buffer" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" +dependencies = [ + "generic-array", +] + +[[package]] +name = "brotli" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f29919120f08613aadcd4383764e00526fc9f18b6c0895814faeed0dd78613e" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", +] + +[[package]] +name = "brotli-decompressor" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1052e1c3b8d4d80eb84a8b94f0a1498797b5fb96314c001156a1c761940ef4ec" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", +] + +[[package]] +name = "build_const" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ae4235e6dac0694637c763029ecea1a2ec9e4e06ec2729bd21ba4d9c863eb7" + +[[package]] +name = "bumpalo" +version = "3.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63396b8a4b9de3f4fdfb320ab6080762242f66a8ef174c49d8e19b674db4cdbe" + +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] +name = "bytes" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040" + +[[package]] +name = "cc" +version = "1.0.67" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd" +dependencies = [ + "jobserver", +] + +[[package]] +name = "cfg-if" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "cfg_aliases" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" + +[[package]] +name = "chrono" +version = "0.4.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" +dependencies = [ + "libc", + "num-integer", + "num-traits", + "time", + "winapi 0.3.9", +] + +[[package]] +name = "clap" +version = "2.33.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" +dependencies = [ + "ansi_term", + "atty", + "bitflags", + "strsim 0.8.0", + "textwrap", + "unicode-width", + "vec_map", +] + +[[package]] +name = "cocoa-foundation" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318" +dependencies = [ + "bitflags", + "block", + "core-foundation", + "core-graphics-types", + "foreign-types", + "libc", + "objc", +] + +[[package]] +name = "codespan-reporting" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" +dependencies = [ + "termcolor", + "unicode-width", +] + +[[package]] +name = "convert_case" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" + +[[package]] +name = "copyless" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2df960f5d869b2dd8532793fde43eb5427cceb126c929747a26823ab0eeb536" + +[[package]] +name = "core-foundation" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b" + +[[package]] +name = "core-graphics-types" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" +dependencies = [ + "bitflags", + "core-foundation", + "foreign-types", + "libc", +] + +[[package]] +name = "cpuid-bool" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634" + +[[package]] +name = "crc" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb" +dependencies = [ + "build_const", +] + +[[package]] +name = "crc32fast" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" +dependencies = [ + "cfg-if 1.0.0", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4" +dependencies = [ + "cfg-if 1.0.0", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4feb231f0d4d6af81aed15928e58ecf5816aa62a2393e2c82f46973e92a9a278" +dependencies = [ + "autocfg", + "cfg-if 1.0.0", + "lazy_static", +] + +[[package]] +name = "d3d12" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "091ed1b25fe47c7ff129fc440c23650b6114f36aa00bc7212cc8041879294428" +dependencies = [ + "bitflags", + "libloading", + "winapi 0.3.9", +] + +[[package]] +name = "darling" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2 1.0.26", + "quote 1.0.9", + "strsim 0.9.3", + "syn 1.0.65", +] + +[[package]] +name = "darling_macro" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72" +dependencies = [ + "darling_core", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "dashmap" +version = "4.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" +dependencies = [ + "cfg-if 1.0.0", + "num_cpus", +] + +[[package]] +name = "data-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57" + +[[package]] +name = "data-url" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d33fe99ccedd6e84bc035f1931bb2e6be79739d6242bd895e7311c886c50dc9c" +dependencies = [ + "matches", +] + +[[package]] +name = "deno" +version = "1.10.1" +dependencies = [ + "atty", + "base64 0.13.0", + "byteorder", + "chrono", + "clap", + "data-url", + "deno_core", + "deno_doc", + "deno_lint", + "deno_runtime", + "dissimilar", + "dprint-plugin-json", + "dprint-plugin-markdown", + "dprint-plugin-typescript", + "encoding_rs", + "env_logger", + "exec", + "fancy-regex", + "filetime", + "fwdansi", + "http", + "indexmap", + "jsonc-parser", + "lazy_static", + "libc", + "log", + "lspower", + "nix", + "notify", + "num_cpus", + "os_pipe", + "percent-encoding", + "pin-project", + "regex", + "ring", + "rustyline", + "rustyline-derive", + "semver-parser 0.10.2", + "serde", + "shell-escape", + "sourcemap", + "swc_bundler", + "swc_common", + "swc_ecmascript", + "tempfile", + "termcolor", + "test_util", + "text-size", + "tokio", + "tokio-rustls", + "tower-test", + "trust-dns-client", + "trust-dns-server", + "uuid", + "walkdir", + "winapi 0.3.9", + "winres", +] + +[[package]] +name = "deno_console" +version = "0.6.0" +dependencies = [ + "deno_core", +] + +[[package]] +name = "deno_core" +version = "0.87.0" +dependencies = [ + "anyhow", + "bencher", + "futures", + "indexmap", + "lazy_static", + "libc", + "log", + "pin-project", + "rusty_v8", + "serde", + "serde_json", + "serde_v8", + "tokio", + "url", +] + +[[package]] +name = "deno_crypto" +version = "0.20.0" +dependencies = [ + "deno_core", + "rand 0.8.3", +] + +[[package]] +name = "deno_doc" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f050e292220872fe7fd0cfe43038ad2bb42c69959812ca0752ccca4a67d6ced7" +dependencies = [ + "futures", + "lazy_static", + "regex", + "serde", + "serde_json", + "swc_common", + "swc_ecmascript", + "termcolor", +] + +[[package]] +name = "deno_fetch" +version = "0.28.0" +dependencies = [ + "bytes", + "data-url", + "deno_core", + "deno_file", + "http", + "reqwest", + "serde", + "tokio", + "tokio-stream", + "tokio-util", +] + +[[package]] +name = "deno_file" +version = "0.5.0" +dependencies = [ + "deno_core", + "uuid", +] + +[[package]] +name = "deno_lint" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "498a31b9bc51c684d9072075b7030ef65a9b1f62986c8dce9fbaf377039d3cd9" +dependencies = [ + "anyhow", + "derive_more", + "dprint-swc-ecma-ast-view", + "if_chain", + "log", + "once_cell", + "regex", + "serde", + "serde_json", + "swc_atoms", + "swc_common", + "swc_ecmascript", +] + +[[package]] +name = "deno_runtime" +version = "0.14.0" +dependencies = [ + "atty", + "bytes", + "deno_console", + "deno_core", + "deno_crypto", + "deno_fetch", + "deno_file", + "deno_timers", + "deno_url", + "deno_web", + "deno_webgpu", + "deno_webidl", + "deno_websocket", + "deno_webstorage", + "dlopen", + "encoding_rs", + "filetime", + "fwdansi", + "http", + "hyper", + "indexmap", + "lazy_static", + "libc", + "log", + "nix", + "notify", + "percent-encoding", + "regex", + "ring", + "rustls", + "serde", + "sys-info", + "termcolor", + "test_util", + "tokio", + "tokio-util", + "trust-dns-proto", + "trust-dns-resolver", + "uuid", + "webpki", + "webpki-roots", + "winapi 0.3.9", + "winres", +] + +[[package]] +name = "deno_timers" +version = "0.4.0" +dependencies = [ + "deno_core", + "tokio", +] + +[[package]] +name = "deno_url" +version = "0.6.0" +dependencies = [ + "bencher", + "deno_core", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "deno_web" +version = "0.36.0" +dependencies = [ + "deno_core", + "futures", +] + +[[package]] +name = "deno_webgpu" +version = "0.7.0" +dependencies = [ + "deno_core", + "serde", + "tokio", + "wgpu-core", + "wgpu-types", +] + +[[package]] +name = "deno_webidl" +version = "0.6.0" +dependencies = [ + "deno_core", +] + +[[package]] +name = "deno_websocket" +version = "0.11.0" +dependencies = [ + "deno_core", + "http", + "serde", + "tokio", + "tokio-rustls", + "tokio-tungstenite", + "webpki", + "webpki-roots", +] + +[[package]] +name = "deno_webstorage" +version = "0.1.0" +dependencies = [ + "deno_core", + "rusqlite", + "serde", +] + +[[package]] +name = "derive_more" +version = "0.99.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f82b1b72f1263f214c0f823371768776c4f5841b942c9883aa8e5ec584fd0ba6" +dependencies = [ + "convert_case", + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "digest" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" +dependencies = [ + "generic-array", +] + +[[package]] +name = "dissimilar" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc4b29f4b9bb94bf267d57269fd0706d343a160937108e9619fe380645428abb" + +[[package]] +name = "dlopen" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71e80ad39f814a9abe68583cd50a2d45c8a67561c3361ab8da240587dda80937" +dependencies = [ + "dlopen_derive", + "lazy_static", + "libc", + "winapi 0.3.9", +] + +[[package]] +name = "dlopen_derive" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f236d9e1b1fbd81cea0f9cbdc8dcc7e8ebcd80e6659cd7cb2ad5f6c05946c581" +dependencies = [ + "libc", + "quote 0.6.13", + "syn 0.15.44", +] + +[[package]] +name = "dprint-core" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9eef318dc38909f86fa9723ae9b2fd564554bd8115acbf6f67b89bb9d4101da" +dependencies = [ + "bumpalo", + "fnv", + "serde", +] + +[[package]] +name = "dprint-plugin-json" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c68efe8956dface56c5a37120711d076a03c8be02617010d53afd00e46f445d" +dependencies = [ + "dprint-core", + "jsonc-parser", + "serde", +] + +[[package]] +name = "dprint-plugin-markdown" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03143dc4349c85a344418d64d70e9d6cd34cadf6cc720b11f8e85a63f0448916" +dependencies = [ + "dprint-core", + "pulldown-cmark", + "regex", + "serde", +] + +[[package]] +name = "dprint-plugin-typescript" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f6b0797c8e735b4f1e5c8c70d359d0626ae8d85e6d7e1518323f75eb640f3e" +dependencies = [ + "dprint-core", + "dprint-swc-ecma-ast-view", + "fnv", + "serde", + "swc_common", + "swc_ecmascript", +] + +[[package]] +name = "dprint-swc-ecma-ast-view" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "405e63217a351c2f84a052e539d36f18d170842838d1acdc02723832f34c840e" +dependencies = [ + "bumpalo", + "fnv", + "num-bigint", + "swc_atoms", + "swc_common", + "swc_ecmascript", +] + +[[package]] +name = "either" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" + +[[package]] +name = "encoding_rs" +version = "0.8.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065" +dependencies = [ + "cfg-if 1.0.0", +] + +[[package]] +name = "endian-type" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" + +[[package]] +name = "enum-as-inner" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c5f0096a91d210159eceb2ff5e1c4da18388a170e1e3ce948aac9c8fdbbf595" +dependencies = [ + "heck", + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "enum_kind" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78b940da354ae81ef0926c5eaa428207b8f4f091d3956c891dfbd124162bed99" +dependencies = [ + "pmutil", + "proc-macro2 1.0.26", + "swc_macros_common", + "syn 1.0.65", +] + +[[package]] +name = "env_logger" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17392a012ea30ef05a610aa97dfb49496e71c9f676b27879922ea5bdf60d9d3f" +dependencies = [ + "atty", + "humantime", + "log", + "regex", + "termcolor", +] + +[[package]] +name = "errno" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e2b2decb0484e15560df3210cf0d78654bb0864b2c138977c07e377a1bae0e2" +dependencies = [ + "kernel32-sys", + "libc", + "winapi 0.2.8", +] + +[[package]] +name = "errno" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa68f2fb9cae9d37c9b2b3584aba698a2e97f72d7aef7b9f7aa71d8b54ce46fe" +dependencies = [ + "errno-dragonfly", + "libc", + "winapi 0.3.9", +] + +[[package]] +name = "errno-dragonfly" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067" +dependencies = [ + "gcc", + "libc", +] + +[[package]] +name = "exec" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "886b70328cba8871bfc025858e1de4be16b1d5088f2ba50b57816f4210672615" +dependencies = [ + "errno 0.2.7", + "libc", +] + +[[package]] +name = "fallible-iterator" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" + +[[package]] +name = "fallible-streaming-iterator" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" + +[[package]] +name = "fancy-regex" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe09872bd11351a75f22b24c3769fc863e8212d926d6db46b94ad710d14cc5cc" +dependencies = [ + "bit-set", + "regex", +] + +[[package]] +name = "filetime" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "redox_syscall", + "winapi 0.3.9", +] + +[[package]] +name = "fixedbitset" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d" + +[[package]] +name = "flate2" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0" +dependencies = [ + "cfg-if 1.0.0", + "crc32fast", + "libc", + "miniz_oxide", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "form_urlencoded" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" +dependencies = [ + "matches", + "percent-encoding", +] + +[[package]] +name = "from_variant" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0951635027ca477be98f8774abd6f0345233439d63f307e47101acb40c7cc63d" +dependencies = [ + "pmutil", + "proc-macro2 1.0.26", + "swc_macros_common", + "syn 1.0.65", +] + +[[package]] +name = "fs2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" +dependencies = [ + "libc", + "winapi 0.3.9", +] + +[[package]] +name = "fsevent" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97f347202c95c98805c216f9e1df210e8ebaec9fdb2365700a43c10797a35e63" +dependencies = [ + "bitflags", + "fsevent-sys", +] + +[[package]] +name = "fsevent-sys" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a29c77f1ca394c3e73a9a5d24cfcabb734682d9634fc398f2204a63c994120" +dependencies = [ + "libc", +] + +[[package]] +name = "fslock" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b14c83e47c73f7d62d907ae24a1a98e9132df3c33eb6c54fcf4bce0dbc41d5af" +dependencies = [ + "libc", + "winapi 0.3.9", +] + +[[package]] +name = "futures" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d5813545e459ad3ca1bff9915e9ad7f1a47dc6a91b627ce321d5863b7dd253" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce79c6a52a299137a6013061e0cf0e688fce5d7f1bc60125f520912fdb29ec25" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "098cd1c6dda6ca01650f1a37a794245eb73181d0d4d4e955e2f3c37db7af1815" + +[[package]] +name = "futures-executor" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10f6cb7042eda00f0049b1d2080aa4b93442997ee507eb3828e8bd7577f94c9d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "365a1a1fb30ea1c03a830fdb2158f5236833ac81fa0ad12fe35b29cddc35cb04" + +[[package]] +name = "futures-macro" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "668c6733a182cd7deb4f1de7ba3bf2120823835b3bcfbeacf7d2c4a773c1bb8b" +dependencies = [ + "proc-macro-hack", + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "futures-sink" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c5629433c555de3d82861a7a4e3794a4c40040390907cfbfd7143a92a426c23" + +[[package]] +name = "futures-task" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba7aa51095076f3ba6d9a1f702f74bd05ec65f555d70d2033d55ba8d69f581bc" + +[[package]] +name = "futures-util" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c144ad54d60f23927f0a6b6d816e4271278b64f005ad65e4e35291d2de9c025" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "proc-macro-hack", + "proc-macro-nested", + "slab", +] + +[[package]] +name = "fwdansi" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08c1f5787fe85505d1f7777268db5103d80a7a374d2316a7ce262e57baf8f208" +dependencies = [ + "memchr", + "termcolor", +] + +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + +[[package]] +name = "gcc" +version = "0.3.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" + +[[package]] +name = "generic-array" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "wasi 0.9.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "wasi 0.10.0+wasi-snapshot-preview1", +] + +[[package]] +name = "gfx-auxil" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ccf8711c9994dfa34337466bee3ae1462e172874c432ce4eb120ab2e98d39cf" +dependencies = [ + "fxhash", + "gfx-hal", + "spirv_cross", +] + +[[package]] +name = "gfx-backend-dx11" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f839f27f8c8a6dc553ccca7f5b35a42009432bc25db9688bba7061cd394161f" +dependencies = [ + "arrayvec", + "bitflags", + "gfx-auxil", + "gfx-hal", + "libloading", + "log", + "parking_lot", + "range-alloc", + "raw-window-handle", + "smallvec", + "spirv_cross", + "thunderdome", + "winapi 0.3.9", + "wio", +] + +[[package]] +name = "gfx-backend-dx12" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3937738b0da5839bba4e33980d29f9a06dbce184d04a3a08c9a949e7953700e3" +dependencies = [ + "arrayvec", + "bit-set", + "bitflags", + "d3d12", + "gfx-auxil", + "gfx-hal", + "log", + "parking_lot", + "range-alloc", + "raw-window-handle", + "smallvec", + "spirv_cross", + "thunderdome", + "winapi 0.3.9", +] + +[[package]] +name = "gfx-backend-empty" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ac55ada4bfcd35479b3421eea324d36d7da5f724e2f66ecb36d4efdb7041a5e" +dependencies = [ + "gfx-hal", + "log", + "raw-window-handle", +] + +[[package]] +name = "gfx-backend-gl" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0caa03d6e0b7b4f202aea1f20c3f3288cfa06d92d24cea9d69c9a7627967244a" +dependencies = [ + "arrayvec", + "bitflags", + "fxhash", + "gfx-hal", + "glow", + "js-sys", + "khronos-egl", + "libloading", + "log", + "naga", + "parking_lot", + "raw-window-handle", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "gfx-backend-metal" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96a809b746d8063ade971cfb3f188e2b0d655926979823d80be7590390f4b911" +dependencies = [ + "arrayvec", + "bitflags", + "block", + "cocoa-foundation", + "copyless", + "foreign-types", + "fxhash", + "gfx-hal", + "log", + "metal", + "naga", + "objc", + "parking_lot", + "profiling", + "range-alloc", + "raw-window-handle", + "storage-map", +] + +[[package]] +name = "gfx-backend-vulkan" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a353fc6fdb42ec646de49bbb74e4870e37a7e680caf33f3ac0615c30b1146d94" +dependencies = [ + "arrayvec", + "ash", + "byteorder", + "core-graphics-types", + "gfx-hal", + "inplace_it", + "log", + "naga", + "objc", + "parking_lot", + "raw-window-handle", + "smallvec", + "winapi 0.3.9", +] + +[[package]] +name = "gfx-hal" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d285bfd566f6b9134af908446ca350c0a1047495dfb9bbd826e701e8ee1d259" +dependencies = [ + "bitflags", + "naga", + "raw-window-handle", + "thiserror", +] + +[[package]] +name = "glow" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b80b98efaa8a34fce11d60dd2ce2760d5d83c373cbcc73bb87c2a3a84a54108" +dependencies = [ + "js-sys", + "slotmap", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "gpu-alloc" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc76088804bb65a6f3b880bea9306fdaeffb25ebb453105fafa691282ee9fdba" +dependencies = [ + "bitflags", + "gpu-alloc-types", +] + +[[package]] +name = "gpu-alloc-types" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54804d0d6bc9d7f26db4eaec1ad10def69b599315f487d32c334a80d1efe67a5" +dependencies = [ + "bitflags", +] + +[[package]] +name = "gpu-descriptor" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8a70f1e87a3840ed6a3e99e02c2b861e4dbdf26f0d07e38f42ea5aff46cfce2" +dependencies = [ + "bitflags", + "gpu-descriptor-types", + "hashbrown", +] + +[[package]] +name = "gpu-descriptor-types" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "363e3677e55ad168fef68cf9de3a4a310b53124c5e784c53a1d70e92d23f2126" +dependencies = [ + "bitflags", +] + +[[package]] +name = "h2" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "825343c4eef0b63f541f8903f395dc5beb362a979b5799a84062527ef1e37726" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" +dependencies = [ + "ahash 0.4.7", +] + +[[package]] +name = "hashlink" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d99cf782f0dc4372d26846bec3de7804ceb5df083c2d4462c0b8d2330e894fa8" +dependencies = [ + "hashbrown", +] + +[[package]] +name = "heck" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "hermit-abi" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c" +dependencies = [ + "libc", +] + +[[package]] +name = "hostname" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" +dependencies = [ + "libc", + "match_cfg", + "winapi 0.3.9", +] + +[[package]] +name = "http" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dfb77c123b4e2f72a2069aeae0b4b4949cc7e966df277813fc16347e7549737" +dependencies = [ + "bytes", + "http", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a1ce40d6fc9764887c2fdc7305c3dcc429ba11ff981c1509416afd5697e4437" + +[[package]] +name = "httpdate" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05842d0d43232b23ccb7060ecb0f0626922c21f30012e97b767b30afd4a5d4b9" + +[[package]] +name = "humantime" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" + +[[package]] +name = "hyper" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e5f105c494081baa3bf9e200b279e27ec1623895cd504c7dbef8d0b080fcf54" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project", + "socket2 0.4.0", + "tokio", + "tower-service", + "tracing", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64" +dependencies = [ + "futures-util", + "hyper", + "log", + "rustls", + "tokio", + "tokio-rustls", + "webpki", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" +dependencies = [ + "matches", + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "if_chain" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f7280c75fb2e2fc47080ec80ccc481376923acb04501957fc38f935c3de5088" + +[[package]] +name = "indexmap" +version = "1.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3" +dependencies = [ + "autocfg", + "hashbrown", + "serde", +] + +[[package]] +name = "inotify" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d19f57db1baad9d09e43a3cd76dcf82ebdafd37d75c9498b87762dba77c93f15" +dependencies = [ + "bitflags", + "inotify-sys", + "libc", +] + +[[package]] +name = "inotify-sys" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" +dependencies = [ + "libc", +] + +[[package]] +name = "inplace_it" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90953f308a79fe6d62a4643e51f848fbfddcd05975a38e69fdf4ab86a7baf7ca" + +[[package]] +name = "input_buffer" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f97967975f448f1a7ddb12b0bc41069d09ed6a1c161a92687e057325db35d413" +dependencies = [ + "bytes", +] + +[[package]] +name = "instant" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" +dependencies = [ + "cfg-if 1.0.0", +] + +[[package]] +name = "ipconfig" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7" +dependencies = [ + "socket2 0.3.19", + "widestring", + "winapi 0.3.9", + "winreg 0.6.2", +] + +[[package]] +name = "ipnet" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47be2f14c678be2fdcab04ab1171db51b2762ce6f0a8ee87c8dd4a04ed216135" + +[[package]] +name = "is-macro" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a322dd16d960e322c3d92f541b4c1a4f0a2e81e1fdeee430d8cecc8b72e8015f" +dependencies = [ + "Inflector", + "pmutil", + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "itoa" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" + +[[package]] +name = "jobserver" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "972f5ae5d1cb9c6ae417789196c803205313edde988685da5e3aae0827b9e7fd" +dependencies = [ + "libc", +] + +[[package]] +name = "js-sys" +version = "0.3.49" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc15e39392125075f60c95ba416f5381ff6c3a948ff02ab12464715adf56c821" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "jsonc-parser" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cb8a8eb6349c33f5ff1c6f12d09936f048c039411c9a08cd54a378fbf1905e2" +dependencies = [ + "serde_json", +] + +[[package]] +name = "kernel32-sys" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" +dependencies = [ + "winapi 0.2.8", + "winapi-build", +] + +[[package]] +name = "khronos-egl" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c2352bd1d0bceb871cb9d40f24360c8133c11d7486b68b5381c1dd1a32015e3" +dependencies = [ + "libc", + "libloading", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "libc" +version = "0.2.94" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18794a8ad5b29321f790b55d93dfba91e125cb1a9edbd4f8e3150acc771c1a5e" + +[[package]] +name = "libloading" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f84d96438c15fcd6c3f244c8fce01d1e2b9c6b5623e9c711dc9286d8fc92d6a" +dependencies = [ + "cfg-if 1.0.0", + "winapi 0.3.9", +] + +[[package]] +name = "libsqlite3-sys" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19cb1effde5f834799ac5e5ef0e40d45027cd74f271b1de786ba8abb30e2164d" +dependencies = [ + "cc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "linked-hash-map" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3" + +[[package]] +name = "lock_api" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" +dependencies = [ + "cfg-if 1.0.0", + "serde", +] + +[[package]] +name = "lru-cache" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" +dependencies = [ + "linked-hash-map", +] + +[[package]] +name = "lsp-types" +version = "0.88.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8e8e042772e4e10b3785822f63c82399d0dd233825de44d2596f7fa86e023e0" +dependencies = [ + "bitflags", + "serde", + "serde_json", + "serde_repr", + "url", +] + +[[package]] +name = "lspower" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b269785ce828ea93b4181cd55736a1ac96d7f67691cb6a6078f9ad84f36a8b91" +dependencies = [ + "anyhow", + "async-trait", + "auto_impl", + "bytes", + "dashmap", + "futures", + "httparse", + "log", + "lsp-types", + "lspower-macros", + "serde", + "serde_json", + "thiserror", + "tokio", + "tokio-util", + "tower-service", + "twoway", +] + +[[package]] +name = "lspower-macros" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d52f49eb53fa09a33715797d47bf4f9adbe69216ea03e1e4c3d56133b2d872c" +dependencies = [ + "heck", + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "malloc_buf" +version = "0.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" +dependencies = [ + "libc", +] + +[[package]] +name = "match_cfg" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" + +[[package]] +name = "matches" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" + +[[package]] +name = "memchr" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc" + +[[package]] +name = "metal" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c12e48c737ee9a55e8bb2352bcde588f79ae308d3529ee888f7cc0f469b5777" +dependencies = [ + "bitflags", + "block", + "cocoa-foundation", + "foreign-types", + "log", + "objc", +] + +[[package]] +name = "mime" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" + +[[package]] +name = "miniz_oxide" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" +dependencies = [ + "adler", + "autocfg", +] + +[[package]] +name = "mio" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf80d3e903b34e0bd7282b218398aec54e082c840d9baf8339e0080a0c542956" +dependencies = [ + "libc", + "log", + "miow", + "ntapi", + "winapi 0.3.9", +] + +[[package]] +name = "miow" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" +dependencies = [ + "winapi 0.3.9", +] + +[[package]] +name = "naga" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a462414ac6a74a8fcc2c6d235d9a92b288f22682c016cf725e75d0c9470fb515" +dependencies = [ + "bit-set", + "bitflags", + "codespan-reporting", + "fxhash", + "log", + "num-traits", + "petgraph", + "spirv_headers", + "thiserror", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" + +[[package]] +name = "nibble_vec" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43" +dependencies = [ + "smallvec", +] + +[[package]] +name = "nix" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa9b4819da1bc61c0ea48b63b7bc8604064dd43013e7cc325df098d49cd7c18a" +dependencies = [ + "bitflags", + "cc", + "cfg-if 1.0.0", + "libc", +] + +[[package]] +name = "notify" +version = "5.0.0-pre.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ebe7699a0f8c5759450716ee03d231685c22b4fe8f406c42c22e0ad94d40ce7" +dependencies = [ + "anymap", + "bitflags", + "crossbeam-channel", + "filetime", + "fsevent", + "fsevent-sys", + "inotify", + "libc", + "mio", + "walkdir", + "winapi 0.3.9", +] + +[[package]] +name = "ntapi" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44" +dependencies = [ + "winapi 0.3.9", +] + +[[package]] +name = "num-bigint" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", + "serde", +] + +[[package]] +name = "num-integer" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" +dependencies = [ + "autocfg", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "objc" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" +dependencies = [ + "malloc_buf", + "objc_exception", +] + +[[package]] +name = "objc_exception" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" +dependencies = [ + "cc", +] + +[[package]] +name = "once_cell" +version = "1.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3" + +[[package]] +name = "opaque-debug" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" + +[[package]] +name = "os_pipe" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213" +dependencies = [ + "libc", + "winapi 0.3.9", +] + +[[package]] +name = "owning_ref" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "parking_lot" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb" +dependencies = [ + "instant", + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018" +dependencies = [ + "cfg-if 1.0.0", + "instant", + "libc", + "redox_syscall", + "smallvec", + "winapi 0.3.9", +] + +[[package]] +name = "percent-encoding" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" + +[[package]] +name = "pest" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53" +dependencies = [ + "ucd-trie", +] + +[[package]] +name = "petgraph" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7" +dependencies = [ + "fixedbitset", + "indexmap", +] + +[[package]] +name = "phf" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" +dependencies = [ + "phf_macros", + "phf_shared", + "proc-macro-hack", +] + +[[package]] +name = "phf_generator" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" +dependencies = [ + "phf_shared", + "rand 0.7.3", +] + +[[package]] +name = "phf_macros" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" +dependencies = [ + "phf_generator", + "phf_shared", + "proc-macro-hack", + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "phf_shared" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" +dependencies = [ + "siphasher", +] + +[[package]] +name = "pin-project" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7509cc106041c40a4518d2af7a61530e1eed0e6285296a3d8c5472806ccc4a4" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48c950132583b500556b1efd71d45b319029f2b71518d979fcc208e16b42426f" +dependencies = [ + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkg-config" +version = "0.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c" + +[[package]] +name = "pmutil" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3894e5d549cccbe44afecf72922f277f603cd4bb0219c8342631ef18fffbe004" +dependencies = [ + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "ppv-lite86" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2 1.0.26", + "quote 1.0.9", + "version_check", +] + +[[package]] +name = "proc-macro-hack" +version = "0.5.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" + +[[package]] +name = "proc-macro-nested" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" + +[[package]] +name = "proc-macro2" +version = "0.4.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" +dependencies = [ + "unicode-xid 0.1.0", +] + +[[package]] +name = "proc-macro2" +version = "1.0.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec" +dependencies = [ + "unicode-xid 0.2.2", +] + +[[package]] +name = "profiling" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3a66d5e88679f2720126c11ee29da07a08f094eac52306b066edd7d393752d6" + +[[package]] +name = "pty" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f50f3d255966981eb4e4c5df3e983e6f7d163221f547406d83b6a460ff5c5ee8" +dependencies = [ + "errno 0.1.8", + "libc", +] + +[[package]] +name = "pulldown-cmark" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8" +dependencies = [ + "bitflags", + "memchr", + "unicase", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quote" +version = "0.6.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" +dependencies = [ + "proc-macro2 0.4.30", +] + +[[package]] +name = "quote" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" +dependencies = [ + "proc-macro2 1.0.26", +] + +[[package]] +name = "radix_fmt" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce082a9940a7ace2ad4a8b7d0b1eac6aa378895f18be598230c5f2284ac05426" + +[[package]] +name = "radix_trie" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd" +dependencies = [ + "endian-type", + "nibble_vec", +] + +[[package]] +name = "rand" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" +dependencies = [ + "getrandom 0.1.16", + "libc", + "rand_chacha 0.2.2", + "rand_core 0.5.1", + "rand_hc 0.2.0", + "rand_pcg", +] + +[[package]] +name = "rand" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e" +dependencies = [ + "libc", + "rand_chacha 0.3.0", + "rand_core 0.6.2", + "rand_hc 0.3.0", +] + +[[package]] +name = "rand_chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" +dependencies = [ + "ppv-lite86", + "rand_core 0.5.1", +] + +[[package]] +name = "rand_chacha" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.2", +] + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +dependencies = [ + "getrandom 0.1.16", +] + +[[package]] +name = "rand_core" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7" +dependencies = [ + "getrandom 0.2.2", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "rand_hc" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73" +dependencies = [ + "rand_core 0.6.2", +] + +[[package]] +name = "rand_pcg" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "range-alloc" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e935c45e09cc6dcf00d2f0b2d630a58f4095320223d47fc68918722f0538b6" + +[[package]] +name = "raw-window-handle" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a441a7a6c80ad6473bd4b74ec1c9a4c951794285bf941c2126f607c72e48211" +dependencies = [ + "libc", +] + +[[package]] +name = "redox_syscall" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85dd92e586f7355c633911e11f77f3d12f04b1b1bd76a198bd34ae3af8341ef2" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9251239e129e16308e70d853559389de218ac275b515068abc96829d05b948a" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", + "thread_local", +] + +[[package]] +name = "regex-syntax" +version = "0.6.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" + +[[package]] +name = "relative-path" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65aff7c83039e88c1c0b4bedf8dfa93d6ec84d5fc2945b37c1fa4186f46c5f94" + +[[package]] +name = "remove_dir_all" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" +dependencies = [ + "winapi 0.3.9", +] + +[[package]] +name = "reqwest" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2296f2fac53979e8ccbc4a1136b25dcefd37be9ed7e4a1f6b05a6029c84ff124" +dependencies = [ + "async-compression", + "base64 0.13.0", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "http", + "http-body", + "hyper", + "hyper-rustls", + "ipnet", + "js-sys", + "lazy_static", + "log", + "mime", + "percent-encoding", + "pin-project-lite", + "rustls", + "serde", + "serde_urlencoded", + "tokio", + "tokio-rustls", + "tokio-util", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "webpki-roots", + "winreg 0.7.0", +] + +[[package]] +name = "resolv-conf" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" +dependencies = [ + "hostname", + "quick-error", +] + +[[package]] +name = "retain_mut" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53552c6c49e1e13f1a203ef0080ab3bbef0beb570a528993e83df057a9d9bba1" + +[[package]] +name = "ring" +version = "0.16.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +dependencies = [ + "cc", + "libc", + "once_cell", + "spin", + "untrusted", + "web-sys", + "winapi 0.3.9", +] + +[[package]] +name = "ron" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "064ea8613fb712a19faf920022ec8ddf134984f100090764a4e1d768f3827f1f" +dependencies = [ + "base64 0.13.0", + "bitflags", + "serde", +] + +[[package]] +name = "rusqlite" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbc783b7ddae608338003bac1fa00b6786a75a9675fbd8e87243ecfdea3f6ed2" +dependencies = [ + "bitflags", + "fallible-iterator", + "fallible-streaming-iterator", + "hashlink", + "libsqlite3-sys", + "memchr", + "smallvec", +] + +[[package]] +name = "rustc_version" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +dependencies = [ + "semver", +] + +[[package]] +name = "rustls" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" +dependencies = [ + "base64 0.13.0", + "log", + "ring", + "sct", + "webpki", +] + +[[package]] +name = "rusty_v8" +version = "0.22.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda4f5a0179977a62af1a34eb5092e0a75069e9744709ed11617d6562778e6e9" +dependencies = [ + "bitflags", + "fslock", + "lazy_static", + "libc", + "which", +] + +[[package]] +name = "rustyline" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e1b597fcd1eeb1d6b25b493538e5aa19629eb08932184b85fef931ba87e893" +dependencies = [ + "bitflags", + "cfg-if 1.0.0", + "fs2", + "libc", + "log", + "memchr", + "nix", + "radix_trie", + "scopeguard", + "smallvec", + "unicode-segmentation", + "unicode-width", + "utf8parse", + "winapi 0.3.9", +] + +[[package]] +name = "rustyline-derive" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db9dfbf470021de34cfaf6983067f460ea19164934a7c2d4b92eec0968eb95f1" +dependencies = [ + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "ryu" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "scoped-tls" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" + +[[package]] +name = "scopeguard" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" + +[[package]] +name = "sct" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" +dependencies = [ + "ring", + "untrusted", +] + +[[package]] +name = "semver" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" +dependencies = [ + "semver-parser 0.7.0", +] + +[[package]] +name = "semver-parser" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" + +[[package]] +name = "semver-parser" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" +dependencies = [ + "pest", +] + +[[package]] +name = "serde" +version = "1.0.125" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.125" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d" +dependencies = [ + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "serde_json" +version = "1.0.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79" +dependencies = [ + "indexmap", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_repr" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dc6b7951b17b051f3210b063f12cc17320e2fe30ae05b0fe2a3abb068551c76" +dependencies = [ + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_v8" +version = "0.4.0" +dependencies = [ + "bencher", + "rusty_v8", + "serde", + "serde_json", +] + +[[package]] +name = "sha-1" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfebf75d25bd900fd1e7d11501efab59bc846dbc76196839663e6637bba9f25f" +dependencies = [ + "block-buffer", + "cfg-if 1.0.0", + "cpuid-bool", + "digest", + "opaque-debug", +] + +[[package]] +name = "shell-escape" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f" + +[[package]] +name = "signal-hook-registry" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16f1d0fef1604ba8f7a073c7e701f213e056707210e9020af4528e0101ce11a6" +dependencies = [ + "libc", +] + +[[package]] +name = "siphasher" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbce6d4507c7e4a3962091436e56e95290cb71fa302d0d270e32130b75fbff27" + +[[package]] +name = "slab" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527" + +[[package]] +name = "slotmap" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c46a3482db8f247956e464d783693ece164ca056e6e67563ee5505bdb86452cd" + +[[package]] +name = "smallvec" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e" + +[[package]] +name = "socket2" +version = "0.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "winapi 0.3.9", +] + +[[package]] +name = "socket2" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e3dfc207c526015c632472a77be09cf1b6e46866581aecae5cc38fb4235dea2" +dependencies = [ + "libc", + "winapi 0.3.9", +] + +[[package]] +name = "sourcemap" +version = "6.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e031f2463ecbdd5f34c950f89f5c1e1032f22c0f8e3dc4bdb2e8b6658cf61eb" +dependencies = [ + "base64 0.11.0", + "if_chain", + "lazy_static", + "regex", + "rustc_version", + "serde", + "serde_json", + "url", +] + +[[package]] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + +[[package]] +name = "spirv_cross" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60647fadbf83c4a72f0d7ea67a7ca3a81835cf442b8deae5c134c3e0055b2e14" +dependencies = [ + "cc", + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "spirv_headers" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f5b132530b1ac069df335577e3581765995cba5a13995cdbbdbc8fb057c532c" +dependencies = [ + "bitflags", + "num-traits", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "storage-map" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "418bb14643aa55a7841d5303f72cf512cfb323b8cc221d51580500a1ca75206c" +dependencies = [ + "lock_api", +] + +[[package]] +name = "string_cache" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ddb1139b5353f96e429e1a5e19fbaf663bddedaa06d1dbd49f82e352601209a" +dependencies = [ + "lazy_static", + "new_debug_unreachable", + "phf_shared", + "precomputed-hash", + "serde", +] + +[[package]] +name = "string_cache_codegen" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97" +dependencies = [ + "phf_generator", + "phf_shared", + "proc-macro2 1.0.26", + "quote 1.0.9", +] + +[[package]] +name = "string_enum" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f584cc881e9e5f1fd6bf827b0444aa94c30d8fe6378cf241071b5f5700b2871f" +dependencies = [ + "pmutil", + "proc-macro2 1.0.26", + "quote 1.0.9", + "swc_macros_common", + "syn 1.0.65", +] + +[[package]] +name = "strsim" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" + +[[package]] +name = "strsim" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c" + +[[package]] +name = "swc_atoms" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7bcdb70cb6ecee568e5acfda1a8c6e851ecf49443e5fb51f1b13613b5d04d2b0" +dependencies = [ + "string_cache", + "string_cache_codegen", +] + +[[package]] +name = "swc_bundler" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "308f9e44090ddf4f24b3346653cea5711dcbce598af0beef550edeeb4b1f8ad3" +dependencies = [ + "ahash 0.7.2", + "anyhow", + "crc", + "fxhash", + "indexmap", + "is-macro", + "log", + "once_cell", + "petgraph", + "radix_fmt", + "relative-path", + "retain_mut", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_ecma_codegen", + "swc_ecma_parser", + "swc_ecma_transforms", + "swc_ecma_utils", + "swc_ecma_visit", +] + +[[package]] +name = "swc_common" +version = "0.10.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2061abb9f67dcef7abd6c874c72be6c90e8eca8b799fd769fd696c14af526929" +dependencies = [ + "ast_node", + "cfg-if 0.1.10", + "either", + "from_variant", + "fxhash", + "log", + "num-bigint", + "once_cell", + "owning_ref", + "scoped-tls", + "serde", + "sourcemap", + "string_cache", + "swc_eq_ignore_macros", + "swc_visit", + "unicode-width", +] + +[[package]] +name = "swc_ecma_ast" +version = "0.43.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8418b0b8a387a1ea919e5bc21d79897c0b24832cae9fd4974d9e2ae8a58df81e" +dependencies = [ + "is-macro", + "num-bigint", + "serde", + "string_enum", + "swc_atoms", + "swc_common", +] + +[[package]] +name = "swc_ecma_codegen" +version = "0.52.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f62df17607eee6c488fdd24d192911db862b2af68a6ea72e166bb699f8a417a" +dependencies = [ + "bitflags", + "num-bigint", + "sourcemap", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_ecma_codegen_macros", + "swc_ecma_parser", +] + +[[package]] +name = "swc_ecma_codegen_macros" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51af418026cb4ea588e2b15fa206c44e09a3184b718e12a0919729c7c3ad20d3" +dependencies = [ + "pmutil", + "proc-macro2 1.0.26", + "quote 1.0.9", + "swc_macros_common", + "syn 1.0.65", +] + +[[package]] +name = "swc_ecma_dep_graph" +version = "0.22.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21a89e5228102803d8cd61dc8fa2bbf04b3d92f4c33b88be87ff88e453e9a6d0" +dependencies = [ + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_ecma_visit", +] + +[[package]] +name = "swc_ecma_parser" +version = "0.54.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd24742a8ab30029226dfdf7116bba00a39b9a04da36b762edc999d239a03c7e" +dependencies = [ + "either", + "enum_kind", + "fxhash", + "log", + "num-bigint", + "serde", + "smallvec", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_ecma_visit", + "unicode-xid 0.2.2", +] + +[[package]] +name = "swc_ecma_transforms" +version = "0.47.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3494813dd593a7b354d33ddfcae468efb5f4e80bdde0c906e26e7d93121dc932" +dependencies = [ + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_ecma_parser", + "swc_ecma_transforms_base", + "swc_ecma_transforms_optimization", + "swc_ecma_transforms_proposal", + "swc_ecma_transforms_react", + "swc_ecma_transforms_typescript", + "swc_ecma_utils", + "swc_ecma_visit", + "unicode-xid 0.2.2", +] + +[[package]] +name = "swc_ecma_transforms_base" +version = "0.12.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df07ce581a0126aba73a5e52af421daf0f4d986ce54bd1fc88cc691fe58afa7c" +dependencies = [ + "fxhash", + "once_cell", + "phf", + "scoped-tls", + "smallvec", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_ecma_parser", + "swc_ecma_utils", + "swc_ecma_visit", +] + +[[package]] +name = "swc_ecma_transforms_optimization" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8574e9c20238a027546f7ec2f74644e52a61125acd7e7182d29fde905bf0ca41" +dependencies = [ + "dashmap", + "fxhash", + "indexmap", + "log", + "once_cell", + "retain_mut", + "serde_json", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_ecma_parser", + "swc_ecma_transforms_base", + "swc_ecma_utils", + "swc_ecma_visit", +] + +[[package]] +name = "swc_ecma_transforms_proposal" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "299f631d0910207dea416d366bafe047c49c961de78948a4765e2c60226bc9bd" +dependencies = [ + "either", + "fxhash", + "serde", + "smallvec", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_ecma_parser", + "swc_ecma_transforms_base", + "swc_ecma_utils", + "swc_ecma_visit", +] + +[[package]] +name = "swc_ecma_transforms_react" +version = "0.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "470735c64c3b6a42966808bbb3c95c5b5fc90a062aa659012180b6ff0cb7d7b6" +dependencies = [ + "base64 0.13.0", + "dashmap", + "indexmap", + "once_cell", + "regex", + "serde", + "sha-1", + "string_enum", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_ecma_parser", + "swc_ecma_transforms_base", + "swc_ecma_utils", + "swc_ecma_visit", +] + +[[package]] +name = "swc_ecma_transforms_typescript" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c46e69c7e1b21ee12b33158ac2ed6b449d65a866d58c64a752aa33cb22a57cab" +dependencies = [ + "fxhash", + "serde", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_ecma_parser", + "swc_ecma_transforms_base", + "swc_ecma_utils", + "swc_ecma_visit", +] + +[[package]] +name = "swc_ecma_utils" +version = "0.34.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "476b09bb911caf1485a314e50758503a7d7a807d8db467022b59bdd81014a26c" +dependencies = [ + "once_cell", + "scoped-tls", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_ecma_visit", + "unicode-xid 0.2.2", +] + +[[package]] +name = "swc_ecma_visit" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81e54a3b94a33507346193c1f56d8251b3d9bc1381214174f982e6f091716dfe" +dependencies = [ + "num-bigint", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_visit", +] + +[[package]] +name = "swc_ecmascript" +version = "0.33.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fad428a7b5e0c493521bc18b9b4d943f42aa13f386b15e3c9535eeb65412d8b2" +dependencies = [ + "swc_ecma_ast", + "swc_ecma_codegen", + "swc_ecma_dep_graph", + "swc_ecma_parser", + "swc_ecma_transforms", + "swc_ecma_utils", + "swc_ecma_visit", +] + +[[package]] +name = "swc_eq_ignore_macros" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c8f200a2eaed938e7c1a685faaa66e6d42fa9e17da5f62572d3cbc335898f5e" +dependencies = [ + "pmutil", + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "swc_macros_common" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08ed2e930f5a1a4071fe62c90fd3a296f6030e5d94bfe13993244423caf59a78" +dependencies = [ + "pmutil", + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "swc_visit" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "583cfe83f6002e1118559308b88181f34b5936b403b72548cd0259bfcf0ca39e" +dependencies = [ + "either", + "swc_visit_macros", +] + +[[package]] +name = "swc_visit_macros" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3b2825fee79f10d0166e8e650e79c7a862fb991db275743083f07555d7641f0" +dependencies = [ + "Inflector", + "pmutil", + "proc-macro2 1.0.26", + "quote 1.0.9", + "swc_macros_common", + "syn 1.0.65", +] + +[[package]] +name = "syn" +version = "0.15.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" +dependencies = [ + "proc-macro2 0.4.30", + "quote 0.6.13", + "unicode-xid 0.1.0", +] + +[[package]] +name = "syn" +version = "1.0.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3a1d708c221c5a612956ef9f75b37e454e88d1f7b899fbd3a18d4252012d663" +dependencies = [ + "proc-macro2 1.0.26", + "quote 1.0.9", + "unicode-xid 0.2.2", +] + +[[package]] +name = "sys-info" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33fcecee49339531cf6bd84ecf3ed94f9c8ef4a7e700f2a1cac9cc1ca485383a" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "tempfile" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "rand 0.8.3", + "redox_syscall", + "remove_dir_all", + "winapi 0.3.9", +] + +[[package]] +name = "termcolor" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "test_plugin" +version = "0.0.1" +dependencies = [ + "deno_core", + "futures", + "serde", + "test_util", +] + +[[package]] +name = "test_util" +version = "0.1.0" +dependencies = [ + "async-stream", + "bytes", + "futures", + "hyper", + "lazy_static", + "os_pipe", + "pty", + "regex", + "serde", + "tempfile", + "tokio", + "tokio-rustls", + "tokio-tungstenite", +] + +[[package]] +name = "text-size" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "288cb548dbe72b652243ea797201f3d481a0609a967980fcc5b2315ea811560a" + +[[package]] +name = "textwrap" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" +dependencies = [ + "unicode-width", +] + +[[package]] +name = "thiserror" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0f4a65597094d4483ddaed134f409b2cb7c1beccf25201a9f73c719254fa98e" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7765189610d8241a44529806d6fd1f2e0a08734313a35d5b3a556f92b381f3c0" +dependencies = [ + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "thread_local" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd" +dependencies = [ + "once_cell", +] + +[[package]] +name = "thunderdome" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87b4947742c93ece24a0032141d9caa3d853752e694a57e35029dd2bd08673e0" + +[[package]] +name = "time" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" +dependencies = [ + "libc", + "wasi 0.10.0+wasi-snapshot-preview1", + "winapi 0.3.9", +] + +[[package]] +name = "tinyvec" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" + +[[package]] +name = "tokio" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83f0c8e7c0addab50b663055baf787d0af7f413a46e6e7fb9559a4e4db7137a5" +dependencies = [ + "autocfg", + "bytes", + "libc", + "memchr", + "mio", + "num_cpus", + "once_cell", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "tokio-macros", + "winapi 0.3.9", +] + +[[package]] +name = "tokio-macros" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caf7b11a536f46a809a8a9f0bb4237020f70ecbf115b842360afb127ea2fda57" +dependencies = [ + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", +] + +[[package]] +name = "tokio-rustls" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6" +dependencies = [ + "rustls", + "tokio", + "webpki", +] + +[[package]] +name = "tokio-stream" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e177a5d8c3bf36de9ebe6d58537d8879e964332f93fb3339e43f618c81361af0" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-test" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f58403903e94d4bc56805e46597fced893410b2e753e229d3f7f22423ea03f67" +dependencies = [ + "async-stream", + "bytes", + "futures-core", + "tokio", + "tokio-stream", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e96bb520beab540ab664bd5a9cfeaa1fcd846fa68c830b42e2c8963071251d2" +dependencies = [ + "futures-util", + "log", + "pin-project", + "rustls", + "tokio", + "tokio-rustls", + "tungstenite", + "webpki", + "webpki-roots", +] + +[[package]] +name = "tokio-util" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "940a12c99365c31ea8dd9ba04ec1be183ffe4920102bb7122c2f515437601e8e" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "log", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" +dependencies = [ + "serde", +] + +[[package]] +name = "tower-layer" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62" + +[[package]] +name = "tower-service" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" + +[[package]] +name = "tower-test" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4546773ffeab9e4ea02b8872faa49bb616a80a7da66afc2f32688943f97efa7" +dependencies = [ + "futures-util", + "pin-project", + "tokio", + "tokio-test", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tracing" +version = "0.1.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d" +dependencies = [ + "cfg-if 1.0.0", + "pin-project-lite", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "trust-dns-client" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f557e7009d16747a0363f9127588c3c236f279b4caa1177d703221a258dd3f3" +dependencies = [ + "cfg-if 1.0.0", + "chrono", + "data-encoding", + "futures-channel", + "futures-util", + "lazy_static", + "log", + "radix_trie", + "rand 0.8.3", + "thiserror", + "tokio", + "trust-dns-proto", +] + +[[package]] +name = "trust-dns-proto" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "952a078337565ba39007de99b151770f41039253a31846f0a3d5cd5a4ac8eedf" +dependencies = [ + "async-trait", + "cfg-if 1.0.0", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna", + "ipnet", + "lazy_static", + "log", + "rand 0.8.3", + "serde", + "smallvec", + "thiserror", + "tinyvec", + "tokio", + "url", +] + +[[package]] +name = "trust-dns-resolver" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da9c97f7d103e0f94dbe384a57908833505ae5870126492f166821b7cf685589" +dependencies = [ + "cfg-if 1.0.0", + "futures-util", + "ipconfig", + "lazy_static", + "log", + "lru-cache", + "parking_lot", + "resolv-conf", + "serde", + "smallvec", + "thiserror", + "tokio", + "trust-dns-proto", +] + +[[package]] +name = "trust-dns-server" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c7f4ae792a675921c8cdea0e32ad5c4105c6054c9cbec0a80281f8b65325c46" +dependencies = [ + "async-trait", + "bytes", + "cfg-if 1.0.0", + "chrono", + "enum-as-inner", + "env_logger", + "futures-executor", + "futures-util", + "log", + "serde", + "thiserror", + "tokio", + "toml", + "trust-dns-client", + "trust-dns-proto", +] + +[[package]] +name = "try-lock" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" + +[[package]] +name = "tungstenite" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fe8dada8c1a3aeca77d6b51a4f1314e0f4b8e438b7b1b71e3ddaca8080e4093" +dependencies = [ + "base64 0.13.0", + "byteorder", + "bytes", + "http", + "httparse", + "input_buffer", + "log", + "rand 0.8.3", + "rustls", + "sha-1", + "thiserror", + "url", + "utf-8", + "webpki", + "webpki-roots", +] + +[[package]] +name = "twoway" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b40075910de3a912adbd80b5d8bad6ad10a23eeb1f5bf9d4006839e899ba5bc" +dependencies = [ + "memchr", + "unchecked-index", +] + +[[package]] +name = "typenum" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06" + +[[package]] +name = "ucd-trie" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c" + +[[package]] +name = "unchecked-index" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c" + +[[package]] +name = "unicase" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" +dependencies = [ + "version_check", +] + +[[package]] +name = "unicode-bidi" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eeb8be209bb1c96b7c177c7420d26e04eccacb0eeae6b980e35fcb74678107e0" +dependencies = [ + "matches", +] + +[[package]] +name = "unicode-normalization" +version = "0.1.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07fbfce1c8a97d547e8b5334978438d9d6ec8c20e38f56d4a4374d181493eaef" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-segmentation" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796" + +[[package]] +name = "unicode-width" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" + +[[package]] +name = "unicode-xid" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" + +[[package]] +name = "unicode-xid" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" + +[[package]] +name = "untrusted" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" + +[[package]] +name = "url" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ccd964113622c8e9322cfac19eb1004a07e636c545f325da085d5cdde6f1f8b" +dependencies = [ + "form_urlencoded", + "idna", + "matches", + "percent-encoding", + "serde", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8parse" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372" + +[[package]] +name = "uuid" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" +dependencies = [ + "getrandom 0.2.2", + "serde", +] + +[[package]] +name = "vcpkg" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbdbff6266a24120518560b5dc983096efb98462e51d0d68169895b237be3e5d" + +[[package]] +name = "vec_map" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" + +[[package]] +name = "version_check" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" + +[[package]] +name = "walkdir" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" +dependencies = [ + "same-file", + "winapi 0.3.9", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" +dependencies = [ + "log", + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "wasi" +version = "0.10.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" + +[[package]] +name = "wasm-bindgen" +version = "0.2.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fe8f61dba8e5d645a4d8132dc7a0a66861ed5e1045d2c0ed940fab33bac0fbe" +dependencies = [ + "cfg-if 1.0.0", + "serde", + "serde_json", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "046ceba58ff062da072c7cb4ba5b22a37f00a302483f7e2a6cdc18fedbdc1fd3" +dependencies = [ + "bumpalo", + "lazy_static", + "log", + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73157efb9af26fb564bb59a009afd1c7c334a44db171d280690d0c3faaec3468" +dependencies = [ + "cfg-if 1.0.0", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ef9aa01d36cda046f797c57959ff5f3c615c9cc63997a8d545831ec7976819b" +dependencies = [ + "quote 1.0.9", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96eb45c1b2ee33545a813a92dbb53856418bf7eb54ab34f7f7ff1448a5b3735d" +dependencies = [ + "proc-macro2 1.0.26", + "quote 1.0.9", + "syn 1.0.65", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7148f4696fb4960a346eaa60bbfb42a1ac4ebba21f750f75fc1375b098d5ffa" + +[[package]] +name = "web-sys" +version = "0.3.49" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59fe19d70f5dacc03f6e46777213facae5ac3801575d56ca6cbd4c93dcd12310" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webpki" +version = "0.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" +dependencies = [ + "ring", + "untrusted", +] + +[[package]] +name = "webpki-roots" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940" +dependencies = [ + "webpki", +] + +[[package]] +name = "wgpu-core" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59abd59fe91fe502fe2dd8777bcac414069199af22dd2a92a1bb635f9f251425" +dependencies = [ + "arrayvec", + "bitflags", + "cfg_aliases", + "copyless", + "fxhash", + "gfx-backend-dx11", + "gfx-backend-dx12", + "gfx-backend-empty", + "gfx-backend-gl", + "gfx-backend-metal", + "gfx-backend-vulkan", + "gfx-hal", + "gpu-alloc", + "gpu-descriptor", + "log", + "naga", + "parking_lot", + "profiling", + "ron", + "serde", + "smallvec", + "thiserror", + "wgpu-types", +] + +[[package]] +name = "wgpu-types" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa248d90c8e6832269b8955bf800e8241f942c25e18a235b7752226804d21556" +dependencies = [ + "bitflags", + "serde", +] + +[[package]] +name = "which" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe" +dependencies = [ + "either", + "libc", +] + +[[package]] +name = "widestring" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c" + +[[package]] +name = "winapi" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-build" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +dependencies = [ + "winapi 0.3.9", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "winreg" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" +dependencies = [ + "winapi 0.3.9", +] + +[[package]] +name = "winreg" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69" +dependencies = [ + "winapi 0.3.9", +] + +[[package]] +name = "winres" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff4fb510bbfe5b8992ff15f77a2e6fe6cf062878f0eda00c0f44963a807ca5dc" +dependencies = [ + "toml", +] + +[[package]] +name = "wio" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5" +dependencies = [ + "winapi 0.3.9", +] diff --git a/integration/data/lockfile/Gemfile.lock b/integration/data/lockfile/Gemfile.lock new file mode 100644 index 00000000..5beb00e3 --- /dev/null +++ b/integration/data/lockfile/Gemfile.lock @@ -0,0 +1,311 @@ +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.2.6) + actionpack (= 4.2.6) + actionview (= 4.2.6) + activejob (= 4.2.6) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 1.0, >= 1.0.5) + actionpack (4.2.6) + actionview (= 4.2.6) + activesupport (= 4.2.6) + rack (~> 1.6) + rack-test (~> 0.6.2) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionpack-action_caching (1.1.1) + actionpack (>= 4.0.0, < 5.0) + actionpack-xml_parser (1.0.2) + actionpack (>= 4.0.0, < 5) + actionview (4.2.6) + activesupport (= 4.2.6) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + activejob (4.2.6) + activesupport (= 4.2.6) + globalid (>= 0.3.0) + activemodel (4.2.6) + activesupport (= 4.2.6) + builder (~> 3.1) + activerecord (4.2.6) + activemodel (= 4.2.6) + activesupport (= 4.2.6) + arel (~> 6.0) + activesupport (4.2.6) + i18n (~> 0.7) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + addressable (2.4.0) + arel (6.0.3) + bourbon (4.2.7) + sass (~> 3.4) + thor (~> 0.19) + builder (3.2.2) + byebug (8.2.4) + capistrano (3.4.1) + i18n + rake (>= 10.0.0) + sshkit (~> 1.3) + capistrano-bundler (1.1.4) + capistrano (~> 3.1) + sshkit (~> 1.2) + capistrano-passenger (0.2.0) + capistrano (~> 3.0) + capistrano-rails (1.1.6) + capistrano (~> 3.1) + capistrano-bundler (~> 1.1) + capybara (2.7.0) + addressable + mime-types (>= 1.16) + nokogiri (>= 1.3.3) + rack (>= 1.0.0) + rack-test (>= 0.5.4) + xpath (~> 2.0) + childprocess (0.5.9) + ffi (~> 1.0, >= 1.0.11) + coderay (1.1.1) + concurrent-ruby (1.0.1) + css_parser (1.3.7) + addressable + daemons (1.2.3) + database_cleaner (1.5.2) + diff-lcs (1.2.5) + docile (1.1.5) + erubis (2.7.0) + eventmachine (1.2.0.1) + faraday (0.8.11) + multipart-post (~> 1.2.0) + faraday_middleware (0.9.2) + faraday (>= 0.7.4, < 0.10) + ffi (1.9.10) + fuubar (2.0.0) + rspec (~> 3.0) + ruby-progressbar (~> 1.4) + gemoji (1.5.0) + globalid (0.3.6) + activesupport (>= 4.1.0) + hashie (1.2.0) + headless (2.2.3) + htmlentities (4.3.1) + i18n (0.7.0) + inifile (3.0.0) + jquery-rails (3.1.4) + railties (>= 3.0, < 5.0) + thor (>= 0.14, < 2.0) + json (1.8.3) + le (2.7.1) + loofah (2.0.3) + nokogiri (>= 1.5.9) + mail (2.6.4) + mime-types (>= 1.16, < 4) + metaclass (0.0.4) + method_source (0.8.2) + mime-types (3.0) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0221) + mini_portile2 (2.0.0) + minitest (5.8.4) + mocha (1.1.0) + metaclass (~> 0.0.1) + multi_json (1.11.2) + multipart-post (1.2.0) + net-ldap (0.12.1) + net-scp (1.2.1) + net-ssh (>= 2.6.5) + net-ssh (3.1.1) + nokogiri (1.6.7.2) + mini_portile2 (~> 2.0.0.rc2) + pg (0.18.4) + power_assert (0.2.7) + protected_attributes (1.1.3) + activemodel (>= 4.0.1, < 5.0) + pry (0.10.3) + coderay (~> 1.1.0) + method_source (~> 0.8.1) + slop (~> 3.4) + pry-byebug (3.3.0) + byebug (~> 8.0) + pry (~> 0.10) + pry-nav (0.2.4) + pry (>= 0.9.10, < 0.11.0) + rack (1.6.4) + rack-openid (1.4.2) + rack (>= 1.1.0) + ruby-openid (>= 2.1.8) + rack-test (0.6.3) + rack (>= 1.0) + rails (4.2.6) + actionmailer (= 4.2.6) + actionpack (= 4.2.6) + actionview (= 4.2.6) + activejob (= 4.2.6) + activemodel (= 4.2.6) + activerecord (= 4.2.6) + activesupport (= 4.2.6) + bundler (>= 1.3.0, < 2.0) + railties (= 4.2.6) + sprockets-rails + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.7) + activesupport (>= 4.2.0.beta, < 5.0) + nokogiri (~> 1.6.0) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + railties (4.2.6) + actionpack (= 4.2.6) + activesupport (= 4.2.6) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (11.1.2) + rbpdf (1.19.0) + htmlentities (= 4.3.1) + rbpdf-font (~> 1.19.0) + rbpdf-font (1.19.0) + rdoc (4.2.2) + json (~> 1.4) + redcarpet (3.3.4) + request_store (1.0.5) + rmagick (2.15.4) + roadie (3.1.1) + css_parser (~> 1.3.4) + nokogiri (>= 1.5.0, < 1.7.0) + roadie-rails (1.1.1) + railties (>= 3.0, < 5.1) + roadie (~> 3.1) + rspec (3.4.0) + rspec-core (~> 3.4.0) + rspec-expectations (~> 3.4.0) + rspec-mocks (~> 3.4.0) + rspec-core (3.4.4) + rspec-support (~> 3.4.0) + rspec-expectations (3.4.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.4.0) + rspec-mocks (3.4.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.4.0) + rspec-rails (3.4.2) + actionpack (>= 3.0, < 4.3) + activesupport (>= 3.0, < 4.3) + railties (>= 3.0, < 4.3) + rspec-core (~> 3.4.0) + rspec-expectations (~> 3.4.0) + rspec-mocks (~> 3.4.0) + rspec-support (~> 3.4.0) + rspec-support (3.4.1) + ruby-openid (2.3.0) + ruby-progressbar (1.7.5) + rubyzip (1.2.0) + sass (3.4.22) + selenium-webdriver (2.53.0) + childprocess (~> 0.5) + rubyzip (~> 1.0) + websocket (~> 1.0) + simplecov (0.9.2) + docile (~> 1.1.0) + multi_json (~> 1.0) + simplecov-html (~> 0.9.0) + simplecov-html (0.9.0) + simplecov-rcov (0.2.3) + simplecov (>= 0.4.1) + slim (3.0.6) + temple (~> 0.7.3) + tilt (>= 1.3.3, < 2.1) + slop (3.6.0) + sprockets (3.6.0) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.0.4) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + sshkit (1.9.0) + net-scp (>= 1.1.2) + net-ssh (>= 2.8.0) + temple (0.7.6) + test-unit (3.1.8) + power_assert + thin (1.6.4) + daemons (~> 1.0, >= 1.0.9) + eventmachine (~> 1.0, >= 1.0.4) + rack (~> 1.0) + thor (0.19.1) + thread_safe (0.3.5) + tilt (2.0.2) + transifex-ruby-fork-jg (0.1.0) + faraday (~> 0.8.0) + faraday_middleware (~> 0.9.0) + hashie (~> 1.2.0) + tzinfo (1.2.2) + thread_safe (~> 0.1) + websocket (1.2.3) + xpath (2.0.0) + nokogiri (~> 1.3) + yard (0.8.7.6) + +PLATFORMS + ruby + +DEPENDENCIES + actionpack-action_caching + actionpack-xml_parser + activerecord-jdbc-adapter (~> 1.3.2) + activerecord-jdbcpostgresql-adapter + bourbon + builder (>= 3.0.4) + capistrano (~> 3.1) + capistrano-bundler (~> 1.1.2) + capistrano-passenger + capistrano-rails (~> 1.1) + capybara + coderay (~> 1.1.0) + database_cleaner + fuubar + gemoji (= 1.5.0) + headless + inifile + jquery-rails (~> 3.1.4) + le + mime-types (~> 3.0) + minitest + mocha + net-ldap (~> 0.12.0) + nokogiri (>= 1.6.7.2) + pg (~> 0.18.1) + protected_attributes + pry + pry-byebug + pry-nav + rack-openid + rails (= 4.2.6) + rails-dom-testing + rails-html-sanitizer (>= 1.0.3) + rbpdf (~> 1.19.0) + rdoc (>= 2.4.2) + redcarpet (~> 3.3.2) + request_store (= 1.0.5) + rmagick (>= 2.14.0) + roadie-rails + rspec (~> 3.0) + rspec-rails + ruby-openid (~> 2.3.0) + sass + selenium-webdriver + simplecov (~> 0.9.1) + simplecov-rcov + slim + test-unit + thin + transifex-ruby-fork-jg (= 0.1.0) + tzinfo-data + yard + +BUNDLED WITH + 1.11.2 diff --git a/integration/data/lockfile/Pipfile.lock b/integration/data/lockfile/Pipfile.lock new file mode 100644 index 00000000..6be45ca2 --- /dev/null +++ b/integration/data/lockfile/Pipfile.lock @@ -0,0 +1,650 @@ +{ + "_meta": { + "hash": { + "sha256": "947e36f68d4acdd1ec855ae6f4a38c54c59773bf89725674a97dc4d5d4f512ca" + }, + "pipfile-spec": 6, + "requires": { + "python_version": "3.9" + }, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "babel": { + "hashes": [ + "sha256:9d35c22fcc79893c3ecc85ac4a56cde1ecf3f19c540bba0922308a6c06ca6fa5", + "sha256:da031ab54472314f210b0adcff1588ee5d1d1d0ba4dbd07b94dba82bde791e05" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==0.9.0" + }, + "certifi": { + "hashes": [ + "sha256:1a4995114262bffbc2413b159f2a1a480c969de6e6eb13ee966d470af86af59c", + "sha256:719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830" + ], + "version": "==2020.12.5" + }, + "chardet": { + "hashes": [ + "sha256:0d6f53a15db4120f2b08c94f11e7d93d2c911ee118b6b30a04ec3ee8310179fa", + "sha256:f864054d66fd9118f2e67044ac8981a54775ec5b67aed0441892edb553d21da5" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==4.0.0" + }, + "click": { + "hashes": [ + "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a", + "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==7.1.2" + }, + "flask": { + "hashes": [ + "sha256:4efa1ae2d7c9865af48986de8aeb8504bf32c7f3d6fdc9353d34b21f4b127060", + "sha256:8a4fdd8936eba2512e9c85df320a37e694c93945b33ef33c89946a340a238557" + ], + "index": "pypi", + "version": "==0.1.2" + }, + "flask-talisman": { + "hashes": [ + "sha256:468131464a249274ed226efc21b372518f442487e58918ccab8357eaa638fd1f", + "sha256:eaa754f4b771dfbe473843391d69643b79e3a38c865790011ac5e4179c68e3ec" + ], + "index": "pypi", + "version": "==0.7.0" + }, + "gunicorn": { + "hashes": [ + "sha256:1904bb2b8a43658807108d59c3f3d56c2b6121a701161de0ddf9ad140073c626", + "sha256:cd4a810dd51bf497552cf3f863b575dabd73d6ad6a91075b65936b151cbf4f9c" + ], + "index": "pypi", + "version": "==20.0.4" + }, + "idna": { + "hashes": [ + "sha256:b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6", + "sha256:b97d804b1e9b523befed77c48dacec60e6dcb0b5391d57af6a65a312a90648c0" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==2.10" + }, + "itsdangerous": { + "hashes": [ + "sha256:321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19", + "sha256:b12271b2047cb23eeb98c8b5622e2e5c5e9abd9784a153e9d8ef9cb4dd09d749" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.1.0" + }, + "jinja2": { + "hashes": [ + "sha256:03e47ad063331dd6a3f04a43eddca8a966a26ba0c5b7207a9a9e4e08f1b29419", + "sha256:a6d58433de0ae800347cab1fa3043cebbabe8baa9d29e668f1c768cb87a333c6" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==0.11.3" + }, + "markupsafe": { + "hashes": [ + "sha256:00bc623926325b26bb9605ae9eae8a215691f33cae5df11ca5424f06f2d1f473", + "sha256:09027a7803a62ca78792ad89403b1b7a73a01c8cb65909cd876f7fcebd79b161", + "sha256:09c4b7f37d6c648cb13f9230d847adf22f8171b1ccc4d5682398e77f40309235", + "sha256:1027c282dad077d0bae18be6794e6b6b8c91d58ed8a8d89a89d59693b9131db5", + "sha256:13d3144e1e340870b25e7b10b98d779608c02016d5184cfb9927a9f10c689f42", + "sha256:195d7d2c4fbb0ee8139a6cf67194f3973a6b3042d742ebe0a9ed36d8b6f0c07f", + "sha256:22c178a091fc6630d0d045bdb5992d2dfe14e3259760e713c490da5323866c39", + "sha256:24982cc2533820871eba85ba648cd53d8623687ff11cbb805be4ff7b4c971aff", + "sha256:29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b", + "sha256:2beec1e0de6924ea551859edb9e7679da6e4870d32cb766240ce17e0a0ba2014", + "sha256:3b8a6499709d29c2e2399569d96719a1b21dcd94410a586a18526b143ec8470f", + "sha256:43a55c2930bbc139570ac2452adf3d70cdbb3cfe5912c71cdce1c2c6bbd9c5d1", + "sha256:46c99d2de99945ec5cb54f23c8cd5689f6d7177305ebff350a58ce5f8de1669e", + "sha256:500d4957e52ddc3351cabf489e79c91c17f6e0899158447047588650b5e69183", + "sha256:535f6fc4d397c1563d08b88e485c3496cf5784e927af890fb3c3aac7f933ec66", + "sha256:596510de112c685489095da617b5bcbbac7dd6384aeebeda4df6025d0256a81b", + "sha256:62fe6c95e3ec8a7fad637b7f3d372c15ec1caa01ab47926cfdf7a75b40e0eac1", + "sha256:6788b695d50a51edb699cb55e35487e430fa21f1ed838122d722e0ff0ac5ba15", + "sha256:6dd73240d2af64df90aa7c4e7481e23825ea70af4b4922f8ede5b9e35f78a3b1", + "sha256:6f1e273a344928347c1290119b493a1f0303c52f5a5eae5f16d74f48c15d4a85", + "sha256:6fffc775d90dcc9aed1b89219549b329a9250d918fd0b8fa8d93d154918422e1", + "sha256:717ba8fe3ae9cc0006d7c451f0bb265ee07739daf76355d06366154ee68d221e", + "sha256:79855e1c5b8da654cf486b830bd42c06e8780cea587384cf6545b7d9ac013a0b", + "sha256:7c1699dfe0cf8ff607dbdcc1e9b9af1755371f92a68f706051cc8c37d447c905", + "sha256:7fed13866cf14bba33e7176717346713881f56d9d2bcebab207f7a036f41b850", + "sha256:84dee80c15f1b560d55bcfe6d47b27d070b4681c699c572af2e3c7cc90a3b8e0", + "sha256:88e5fcfb52ee7b911e8bb6d6aa2fd21fbecc674eadd44118a9cc3863f938e735", + "sha256:8defac2f2ccd6805ebf65f5eeb132adcf2ab57aa11fdf4c0dd5169a004710e7d", + "sha256:98bae9582248d6cf62321dcb52aaf5d9adf0bad3b40582925ef7c7f0ed85fceb", + "sha256:98c7086708b163d425c67c7a91bad6e466bb99d797aa64f965e9d25c12111a5e", + "sha256:9add70b36c5666a2ed02b43b335fe19002ee5235efd4b8a89bfcf9005bebac0d", + "sha256:9bf40443012702a1d2070043cb6291650a0841ece432556f784f004937f0f32c", + "sha256:a6a744282b7718a2a62d2ed9d993cad6f5f585605ad352c11de459f4108df0a1", + "sha256:acf08ac40292838b3cbbb06cfe9b2cb9ec78fce8baca31ddb87aaac2e2dc3bc2", + "sha256:ade5e387d2ad0d7ebf59146cc00c8044acbd863725f887353a10df825fc8ae21", + "sha256:b00c1de48212e4cc9603895652c5c410df699856a2853135b3967591e4beebc2", + "sha256:b1282f8c00509d99fef04d8ba936b156d419be841854fe901d8ae224c59f0be5", + "sha256:b1dba4527182c95a0db8b6060cc98ac49b9e2f5e64320e2b56e47cb2831978c7", + "sha256:b2051432115498d3562c084a49bba65d97cf251f5a331c64a12ee7e04dacc51b", + "sha256:b7d644ddb4dbd407d31ffb699f1d140bc35478da613b441c582aeb7c43838dd8", + "sha256:ba59edeaa2fc6114428f1637ffff42da1e311e29382d81b339c1817d37ec93c6", + "sha256:bf5aa3cbcfdf57fa2ee9cd1822c862ef23037f5c832ad09cfea57fa846dec193", + "sha256:c8716a48d94b06bb3b2524c2b77e055fb313aeb4ea620c8dd03a105574ba704f", + "sha256:caabedc8323f1e93231b52fc32bdcde6db817623d33e100708d9a68e1f53b26b", + "sha256:cd5df75523866410809ca100dc9681e301e3c27567cf498077e8551b6d20e42f", + "sha256:cdb132fc825c38e1aeec2c8aa9338310d29d337bebbd7baa06889d09a60a1fa2", + "sha256:d53bc011414228441014aa71dbec320c66468c1030aae3a6e29778a3382d96e5", + "sha256:d73a845f227b0bfe8a7455ee623525ee656a9e2e749e4742706d80a6065d5e2c", + "sha256:d9be0ba6c527163cbed5e0857c451fcd092ce83947944d6c14bc95441203f032", + "sha256:e249096428b3ae81b08327a63a485ad0878de3fb939049038579ac0ef61e17e7", + "sha256:e8313f01ba26fbbe36c7be1966a7b7424942f670f38e666995b88d012765b9be", + "sha256:feb7b34d6325451ef96bc0e36e1a6c0c1c64bc1fbec4b854f4529e51887b1621" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.1.1" + }, + "omise": { + "hashes": [ + "sha256:15d5f0ae466d6d5fda7d53f99fd92c08be86d3b4e8162ae7e75ff2246e35d57c", + "sha256:d4fa58da2aae4e08ece622db8b27fe24158a7ecb2d50acf90b5496d7bdd3a73f" + ], + "index": "pypi", + "version": "==0.11.0" + }, + "py-money": { + "hashes": [ + "sha256:6c0f3597022a7d16fe65273c046614b7f30dd63aa0a0765ac7044092e2959014", + "sha256:e2ba7fe399a2986913753735874063c5cb816941bba737db7ec1353a04321338" + ], + "index": "pypi", + "version": "==0.5.0" + }, + "python-dotenv": { + "hashes": [ + "sha256:0c8d1b80d1a1e91717ea7d526178e3882732420b03f08afea0406db6402e220e", + "sha256:587825ed60b1711daea4832cf37524dfd404325b7db5e25ebe88c495c9f807a0" + ], + "index": "pypi", + "version": "==0.15.0" + }, + "pytz": { + "hashes": [ + "sha256:83a4a90894bf38e243cf052c8b58f381bfe9a7a483f6a9cab140bc7f702ac4da", + "sha256:eb10ce3e7736052ed3623d49975ce333bcd712c7bb19a58b9e2089d4057d0798" + ], + "version": "==2021.1" + }, + "requests": { + "hashes": [ + "sha256:27973dd4a904a4f13b263a19c866c13b92a39ed1c964655f025f3f8d3d75b804", + "sha256:c210084e36a42ae6b9219e00e48287def368a26d03a048ddad7bfee44f75871e" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==2.25.1" + }, + "six": { + "hashes": [ + "sha256:30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259", + "sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.15.0" + }, + "urllib3": { + "hashes": [ + "sha256:1b465e494e3e0d8939b50680403e3aedaa2bc434b7d5af64dfd3c958d7f5ae80", + "sha256:de3eedaad74a2683334e282005cd8d7f22f4d55fa690a2a1020a416cb0a47e73" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'", + "version": "==0.26.3" + }, + "werkzeug": { + "hashes": [ + "sha256:2de2a5db0baeae7b2d2664949077c2ac63fbd16d98da0ff71837f7d1dea3fd43", + "sha256:6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==1.0.1" + } + }, + "develop": { + "appdirs": { + "hashes": [ + "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41", + "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128" + ], + "version": "==1.4.4" + }, + "astroid": { + "hashes": [ + "sha256:2f4078c2a41bf377eea06d71c9d2ba4eb8f6b1af2135bec27bbbb7d8f12bb703", + "sha256:bc58d83eb610252fd8de6363e39d4f1d0619c894b0ed24603b881c02e64c7386" + ], + "markers": "python_version >= '3.5'", + "version": "==2.4.2" + }, + "attrs": { + "hashes": [ + "sha256:31b2eced602aa8423c2aea9c76a724617ed67cf9513173fd3a4f03e3a929c7e6", + "sha256:832aa3cde19744e49938b91fea06d69ecb9e649c93ba974535d08ad92164f700" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==20.3.0" + }, + "autopep8": { + "hashes": [ + "sha256:9e136c472c475f4ee4978b51a88a494bfcd4e3ed17950a44a988d9e434837bea", + "sha256:cae4bc0fb616408191af41d062d7ec7ef8679c7f27b068875ca3a9e2878d5443" + ], + "index": "pypi", + "version": "==1.5.5" + }, + "black": { + "hashes": [ + "sha256:1c02557aa099101b9d21496f8a914e9ed2222ef70336404eeeac8edba836fbea" + ], + "markers": "python_version >= '3.6'", + "version": "==20.8b1" + }, + "click": { + "hashes": [ + "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a", + "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==7.1.2" + }, + "flake8": { + "hashes": [ + "sha256:749dbbd6bfd0cf1318af27bf97a14e28e5ff548ef8e5b1566ccfb25a11e7c839", + "sha256:aadae8761ec651813c24be05c6f7b4680857ef6afaae4651a4eccaef97ce6c3b" + ], + "version": "==3.8.4" + }, + "iniconfig": { + "hashes": [ + "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3", + "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32" + ], + "version": "==1.1.1" + }, + "isort": { + "hashes": [ + "sha256:c729845434366216d320e936b8ad6f9d681aab72dc7cbc2d51bedc3582f3ad1e", + "sha256:fff4f0c04e1825522ce6949973e83110a6e907750cd92d128b0d14aaaadbffdc" + ], + "markers": "python_version >= '3.6' and python_version < '4.0'", + "version": "==5.7.0" + }, + "jedi": { + "hashes": [ + "sha256:86ed7d9b750603e4ba582ea8edc678657fb4007894a12bcf6f4bb97892f31d20", + "sha256:98cc583fa0f2f8304968199b01b6b4b94f469a1f4a74c1560506ca2a211378b5" + ], + "index": "pypi", + "version": "==0.17.2" + }, + "lazy-object-proxy": { + "hashes": [ + "sha256:0c4b206227a8097f05c4dbdd323c50edf81f15db3b8dc064d08c62d37e1a504d", + "sha256:194d092e6f246b906e8f70884e620e459fc54db3259e60cf69a4d66c3fda3449", + "sha256:1be7e4c9f96948003609aa6c974ae59830a6baecc5376c25c92d7d697e684c08", + "sha256:4677f594e474c91da97f489fea5b7daa17b5517190899cf213697e48d3902f5a", + "sha256:48dab84ebd4831077b150572aec802f303117c8cc5c871e182447281ebf3ac50", + "sha256:5541cada25cd173702dbd99f8e22434105456314462326f06dba3e180f203dfd", + "sha256:59f79fef100b09564bc2df42ea2d8d21a64fdcda64979c0fa3db7bdaabaf6239", + "sha256:8d859b89baf8ef7f8bc6b00aa20316483d67f0b1cbf422f5b4dc56701c8f2ffb", + "sha256:9254f4358b9b541e3441b007a0ea0764b9d056afdeafc1a5569eee1cc6c1b9ea", + "sha256:9651375199045a358eb6741df3e02a651e0330be090b3bc79f6d0de31a80ec3e", + "sha256:97bb5884f6f1cdce0099f86b907aa41c970c3c672ac8b9c8352789e103cf3156", + "sha256:9b15f3f4c0f35727d3a0fba4b770b3c4ebbb1fa907dbcc046a1d2799f3edd142", + "sha256:a2238e9d1bb71a56cd710611a1614d1194dc10a175c1e08d75e1a7bcc250d442", + "sha256:a6ae12d08c0bf9909ce12385803a543bfe99b95fe01e752536a60af2b7797c62", + "sha256:ca0a928a3ddbc5725be2dd1cf895ec0a254798915fb3a36af0964a0a4149e3db", + "sha256:cb2c7c57005a6804ab66f106ceb8482da55f5314b7fcb06551db1edae4ad1531", + "sha256:d74bb8693bf9cf75ac3b47a54d716bbb1a92648d5f781fc799347cfc95952383", + "sha256:d945239a5639b3ff35b70a88c5f2f491913eb94871780ebfabb2568bd58afc5a", + "sha256:eba7011090323c1dadf18b3b689845fd96a61ba0a1dfbd7f24b921398affc357", + "sha256:efa1909120ce98bbb3777e8b6f92237f5d5c8ea6758efea36a473e1d38f7d3e4", + "sha256:f3900e8a5de27447acbf900b4750b0ddfd7ec1ea7fbaf11dfa911141bc522af0" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.4.3" + }, + "mccabe": { + "hashes": [ + "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42", + "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f" + ], + "version": "==0.6.1" + }, + "mypy": { + "hashes": [ + "sha256:0d2fc8beb99cd88f2d7e20d69131353053fbecea17904ee6f0348759302c52fa", + "sha256:2b216eacca0ec0ee124af9429bfd858d5619a0725ee5f88057e6e076f9eb1a7b", + "sha256:319ee5c248a7c3f94477f92a729b7ab06bf8a6d04447ef3aa8c9ba2aa47c6dcf", + "sha256:3e0c159a7853e3521e3f582adb1f3eac66d0b0639d434278e2867af3a8c62653", + "sha256:5615785d3e2f4f03ab7697983d82c4b98af5c321614f51b8f1034eb9ebe48363", + "sha256:5ff616787122774f510caeb7b980542a7cc2222be3f00837a304ea85cd56e488", + "sha256:6f8425fecd2ba6007e526209bb985ce7f49ed0d2ac1cc1a44f243380a06a84fb", + "sha256:74f5aa50d0866bc6fb8e213441c41e466c86678c800700b87b012ed11c0a13e0", + "sha256:90b6f46dc2181d74f80617deca611925d7e63007cf416397358aa42efb593e07", + "sha256:947126195bfe4709c360e89b40114c6746ae248f04d379dca6f6ab677aa07641", + "sha256:a301da58d566aca05f8f449403c710c50a9860782148332322decf73a603280b", + "sha256:aa9d4901f3ee1a986a3a79fe079ffbf7f999478c281376f48faa31daaa814e86", + "sha256:b9150db14a48a8fa114189bfe49baccdff89da8c6639c2717750c7ae62316738", + "sha256:b95068a3ce3b50332c40e31a955653be245666a4bc7819d3c8898aa9fb9ea496", + "sha256:ca7ad5aed210841f1e77f5f2f7d725b62c78fa77519312042c719ed2ab937876", + "sha256:d16c54b0dffb861dc6318a8730952265876d90c5101085a4bc56913e8521ba19", + "sha256:e0202e37756ed09daf4b0ba64ad2c245d357659e014c3f51d8cd0681ba66940a", + "sha256:e1c84c65ff6d69fb42958ece5b1255394714e0aac4df5ffe151bc4fe19c7600a", + "sha256:e32b7b282c4ed4e378bba8b8dfa08e1cfa6f6574067ef22f86bee5b1039de0c9", + "sha256:e3b8432f8df19e3c11235c4563a7250666dc9aa7cdda58d21b4177b20256ca9f", + "sha256:e497a544391f733eca922fdcb326d19e894789cd4ff61d48b4b195776476c5cf", + "sha256:f5fdf935a46aa20aa937f2478480ebf4be9186e98e49cc3843af9a5795a49a25" + ], + "markers": "python_version >= '3.5'", + "version": "==0.800" + }, + "mypy-extensions": { + "hashes": [ + "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d", + "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8" + ], + "version": "==0.4.3" + }, + "packaging": { + "hashes": [ + "sha256:5b327ac1320dc863dca72f4514ecc086f31186744b84a230374cc1fd776feae5", + "sha256:67714da7f7bc052e064859c05c595155bd1ee9f69f76557e21f051443c20947a" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==20.9" + }, + "parso": { + "hashes": [ + "sha256:97218d9159b2520ff45eb78028ba8b50d2bc61dcc062a9682666f2dc4bd331ea", + "sha256:caba44724b994a8a5e086460bb212abc5a8bc46951bf4a9a1210745953622eb9" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==0.7.1" + }, + "pathspec": { + "hashes": [ + "sha256:86379d6b86d75816baba717e64b1a3a3469deb93bb76d613c9ce79edc5cb68fd", + "sha256:aa0cb481c4041bf52ffa7b0d8fa6cd3e88a2ca4879c533c9153882ee2556790d" + ], + "version": "==0.8.1" + }, + "pluggy": { + "hashes": [ + "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0", + "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==0.13.1" + }, + "py": { + "hashes": [ + "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3", + "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.10.0" + }, + "pycodestyle": { + "hashes": [ + "sha256:2295e7b2f6b5bd100585ebcb1f616591b652db8a741695b3d8f5d28bdc934367", + "sha256:c58a7d2815e0e8d7972bf1803331fb0152f867bd89adf8a01dfd55085434192e" + ], + "version": "==2.6.0" + }, + "pydocstyle": { + "hashes": [ + "sha256:19b86fa8617ed916776a11cd8bc0197e5b9856d5433b777f51a3defe13075325", + "sha256:aca749e190a01726a4fb472dd4ef23b5c9da7b9205c0a7857c06533de13fd678" + ], + "version": "==5.1.1" + }, + "pyflakes": { + "hashes": [ + "sha256:0d94e0e05a19e57a99444b6ddcf9a6eb2e5c68d3ca1e98e90707af8152c90a92", + "sha256:35b2d75ee967ea93b55750aa9edbbf72813e06a66ba54438df2cfac9e3c27fc8" + ], + "version": "==2.2.0" + }, + "pylint": { + "hashes": [ + "sha256:bb4a908c9dadbc3aac18860550e870f58e1a02c9f2c204fdf5693d73be061210", + "sha256:bfe68f020f8a0fece830a22dd4d5dddb4ecc6137db04face4c3420a46a52239f" + ], + "version": "==2.6.0" + }, + "pyls-black": { + "hashes": [ + "sha256:33700e5ed605636ea7ba39188a1362d2f8602f7301f8f2b8544773886f965663", + "sha256:8f5fb8fed503588c10435d2d48e2c3751437f1bdb8116134b05a4591c4899940" + ], + "index": "pypi", + "version": "==0.4.6" + }, + "pyls-isort": { + "hashes": [ + "sha256:a6c292332746d3dc690f2a3dcdb9a01d913b9ee8444defe3cbffcddb7e3874eb" + ], + "index": "pypi", + "version": "==0.2.0" + }, + "pyls-mypy": { + "hashes": [ + "sha256:3fd83028961f0ca9eb3048b7a01cf42a9e3d46d8ea4935c1424c33da22c3eb03" + ], + "index": "pypi", + "version": "==0.1.8" + }, + "pyparsing": { + "hashes": [ + "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1", + "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b" + ], + "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==2.4.7" + }, + "pytest": { + "hashes": [ + "sha256:9d1edf9e7d0b84d72ea3dbcdfd22b35fb543a5e8f2a60092dd578936bf63d7f9", + "sha256:b574b57423e818210672e07ca1fa90aaf194a4f63f3ab909a2c67ebb22913839" + ], + "index": "pypi", + "version": "==6.2.2" + }, + "python-jsonrpc-server": { + "hashes": [ + "sha256:62c543e541f101ec5b57dc654efc212d2c2e3ea47ff6f54b2e7dcb36ecf20595", + "sha256:e5a908ff182e620aac07db5f57887eeb0afe33993008f57dc1b85b594cea250c" + ], + "version": "==0.4.0" + }, + "python-language-server": { + "extras": [ + "all" + ], + "hashes": [ + "sha256:9984c84a67ee2c5102c8e703215f407fcfa5e62b0ae86c9572d0ada8c4b417b0", + "sha256:a0ad0aca03f4a20c1c40f4f230c6773eac82c9b7cdb026cb09ba10237f4815d5" + ], + "index": "pypi", + "version": "==0.36.2" + }, + "regex": { + "hashes": [ + "sha256:02951b7dacb123d8ea6da44fe45ddd084aa6777d4b2454fa0da61d569c6fa538", + "sha256:0d08e71e70c0237883d0bef12cad5145b84c3705e9c6a588b2a9c7080e5af2a4", + "sha256:1862a9d9194fae76a7aaf0150d5f2a8ec1da89e8b55890b1786b8f88a0f619dc", + "sha256:1ab79fcb02b930de09c76d024d279686ec5d532eb814fd0ed1e0051eb8bd2daa", + "sha256:1fa7ee9c2a0e30405e21031d07d7ba8617bc590d391adfc2b7f1e8b99f46f444", + "sha256:262c6825b309e6485ec2493ffc7e62a13cf13fb2a8b6d212f72bd53ad34118f1", + "sha256:2a11a3e90bd9901d70a5b31d7dd85114755a581a5da3fc996abfefa48aee78af", + "sha256:2c99e97d388cd0a8d30f7c514d67887d8021541b875baf09791a3baad48bb4f8", + "sha256:3128e30d83f2e70b0bed9b2a34e92707d0877e460b402faca908c6667092ada9", + "sha256:38c8fd190db64f513fe4e1baa59fed086ae71fa45083b6936b52d34df8f86a88", + "sha256:3bddc701bdd1efa0d5264d2649588cbfda549b2899dc8d50417e47a82e1387ba", + "sha256:4902e6aa086cbb224241adbc2f06235927d5cdacffb2425c73e6570e8d862364", + "sha256:49cae022fa13f09be91b2c880e58e14b6da5d10639ed45ca69b85faf039f7a4e", + "sha256:56e01daca75eae420bce184edd8bb341c8eebb19dd3bce7266332258f9fb9dd7", + "sha256:5862975b45d451b6db51c2e654990c1820523a5b07100fc6903e9c86575202a0", + "sha256:6a8ce43923c518c24a2579fda49f093f1397dad5d18346211e46f134fc624e31", + "sha256:6c54ce4b5d61a7129bad5c5dc279e222afd00e721bf92f9ef09e4fae28755683", + "sha256:6e4b08c6f8daca7d8f07c8d24e4331ae7953333dbd09c648ed6ebd24db5a10ee", + "sha256:717881211f46de3ab130b58ec0908267961fadc06e44f974466d1887f865bd5b", + "sha256:749078d1eb89484db5f34b4012092ad14b327944ee7f1c4f74d6279a6e4d1884", + "sha256:7913bd25f4ab274ba37bc97ad0e21c31004224ccb02765ad984eef43e04acc6c", + "sha256:7a25fcbeae08f96a754b45bdc050e1fb94b95cab046bf56b016c25e9ab127b3e", + "sha256:83d6b356e116ca119db8e7c6fc2983289d87b27b3fac238cfe5dca529d884562", + "sha256:8b882a78c320478b12ff024e81dc7d43c1462aa4a3341c754ee65d857a521f85", + "sha256:8f6a2229e8ad946e36815f2a03386bb8353d4bde368fdf8ca5f0cb97264d3b5c", + "sha256:9801c4c1d9ae6a70aeb2128e5b4b68c45d4f0af0d1535500884d644fa9b768c6", + "sha256:a15f64ae3a027b64496a71ab1f722355e570c3fac5ba2801cafce846bf5af01d", + "sha256:a3d748383762e56337c39ab35c6ed4deb88df5326f97a38946ddd19028ecce6b", + "sha256:a63f1a07932c9686d2d416fb295ec2c01ab246e89b4d58e5fa468089cab44b70", + "sha256:b2b1a5ddae3677d89b686e5c625fc5547c6e492bd755b520de5332773a8af06b", + "sha256:b2f4007bff007c96a173e24dcda236e5e83bde4358a557f9ccf5e014439eae4b", + "sha256:baf378ba6151f6e272824b86a774326f692bc2ef4cc5ce8d5bc76e38c813a55f", + "sha256:bafb01b4688833e099d79e7efd23f99172f501a15c44f21ea2118681473fdba0", + "sha256:bba349276b126947b014e50ab3316c027cac1495992f10e5682dc677b3dfa0c5", + "sha256:c084582d4215593f2f1d28b65d2a2f3aceff8342aa85afd7be23a9cad74a0de5", + "sha256:d1ebb090a426db66dd80df8ca85adc4abfcbad8a7c2e9a5ec7513ede522e0a8f", + "sha256:d2d8ce12b7c12c87e41123997ebaf1a5767a5be3ec545f64675388970f415e2e", + "sha256:e32f5f3d1b1c663af7f9c4c1e72e6ffe9a78c03a31e149259f531e0fed826512", + "sha256:e3faaf10a0d1e8e23a9b51d1900b72e1635c2d5b0e1bea1c18022486a8e2e52d", + "sha256:f7d29a6fc4760300f86ae329e3b6ca28ea9c20823df123a2ea8693e967b29917", + "sha256:f8f295db00ef5f8bae530fc39af0b40486ca6068733fb860b42115052206466f" + ], + "version": "==2020.11.13" + }, + "rope": { + "hashes": [ + "sha256:786b5c38c530d4846aa68a42604f61b4e69a493390e3ca11b88df0fbfdc3ed04" + ], + "version": "==0.18.0" + }, + "six": { + "hashes": [ + "sha256:30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259", + "sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.15.0" + }, + "snowballstemmer": { + "hashes": [ + "sha256:b51b447bea85f9968c13b650126a888aabd4cb4463fca868ec596826325dedc2", + "sha256:e997baa4f2e9139951b6f4c631bad912dfd3c792467e2f03d7239464af90e914" + ], + "version": "==2.1.0" + }, + "toml": { + "hashes": [ + "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", + "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" + ], + "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==0.10.2" + }, + "typed-ast": { + "hashes": [ + "sha256:07d49388d5bf7e863f7fa2f124b1b1d89d8aa0e2f7812faff0a5658c01c59aa1", + "sha256:14bf1522cdee369e8f5581238edac09150c765ec1cb33615855889cf33dcb92d", + "sha256:240296b27397e4e37874abb1df2a608a92df85cf3e2a04d0d4d61055c8305ba6", + "sha256:36d829b31ab67d6fcb30e185ec996e1f72b892255a745d3a82138c97d21ed1cd", + "sha256:37f48d46d733d57cc70fd5f30572d11ab8ed92da6e6b28e024e4a3edfb456e37", + "sha256:4c790331247081ea7c632a76d5b2a265e6d325ecd3179d06e9cf8d46d90dd151", + "sha256:5dcfc2e264bd8a1db8b11a892bd1647154ce03eeba94b461effe68790d8b8e07", + "sha256:7147e2a76c75f0f64c4319886e7639e490fee87c9d25cb1d4faef1d8cf83a440", + "sha256:7703620125e4fb79b64aa52427ec192822e9f45d37d4b6625ab37ef403e1df70", + "sha256:8368f83e93c7156ccd40e49a783a6a6850ca25b556c0fa0240ed0f659d2fe496", + "sha256:84aa6223d71012c68d577c83f4e7db50d11d6b1399a9c779046d75e24bed74ea", + "sha256:85f95aa97a35bdb2f2f7d10ec5bbdac0aeb9dafdaf88e17492da0504de2e6400", + "sha256:8db0e856712f79c45956da0c9a40ca4246abc3485ae0d7ecc86a20f5e4c09abc", + "sha256:9044ef2df88d7f33692ae3f18d3be63dec69c4fb1b5a4a9ac950f9b4ba571606", + "sha256:963c80b583b0661918718b095e02303d8078950b26cc00b5e5ea9ababe0de1fc", + "sha256:987f15737aba2ab5f3928c617ccf1ce412e2e321c77ab16ca5a293e7bbffd581", + "sha256:9ec45db0c766f196ae629e509f059ff05fc3148f9ffd28f3cfe75d4afb485412", + "sha256:9fc0b3cb5d1720e7141d103cf4819aea239f7d136acf9ee4a69b047b7986175a", + "sha256:a2c927c49f2029291fbabd673d51a2180038f8cd5a5b2f290f78c4516be48be2", + "sha256:a38878a223bdd37c9709d07cd357bb79f4c760b29210e14ad0fb395294583787", + "sha256:b4fcdcfa302538f70929eb7b392f536a237cbe2ed9cba88e3bf5027b39f5f77f", + "sha256:c0c74e5579af4b977c8b932f40a5464764b2f86681327410aa028a22d2f54937", + "sha256:c1c876fd795b36126f773db9cbb393f19808edd2637e00fd6caba0e25f2c7b64", + "sha256:c9aadc4924d4b5799112837b226160428524a9a45f830e0d0f184b19e4090487", + "sha256:cc7b98bf58167b7f2db91a4327da24fb93368838eb84a44c472283778fc2446b", + "sha256:cf54cfa843f297991b7388c281cb3855d911137223c6b6d2dd82a47ae5125a41", + "sha256:d003156bb6a59cda9050e983441b7fa2487f7800d76bdc065566b7d728b4581a", + "sha256:d175297e9533d8d37437abc14e8a83cbc68af93cc9c1c59c2c292ec59a0697a3", + "sha256:d746a437cdbca200622385305aedd9aef68e8a645e385cc483bdc5e488f07166", + "sha256:e683e409e5c45d5c9082dc1daf13f6374300806240719f95dc783d1fc942af10" + ], + "markers": "python_version < '3.8' and implementation_name == 'cpython'", + "version": "==1.4.2" + }, + "typing-extensions": { + "hashes": [ + "sha256:7cb407020f00f7bfc3cb3e7881628838e69d8f3fcab2f64742a5e76b2f841918", + "sha256:99d4073b617d30288f569d3f13d2bd7548c3a7e4c8de87db09a9d29bb3a4a60c", + "sha256:dafc7639cde7f1b6e1acc0f457842a83e722ccca8eef5270af2d74792619a89f" + ], + "markers": "python_version < '3.8'", + "version": "==3.7.4.3" + }, + "ujson": { + "hashes": [ + "sha256:0190d26c0e990c17ad072ec8593647218fe1c675d11089cd3d1440175b568967", + "sha256:0ea07fe57f9157118ca689e7f6db72759395b99121c0ff038d2e38649c626fb1", + "sha256:30962467c36ff6de6161d784cd2a6aac1097f0128b522d6e9291678e34fb2b47", + "sha256:4d6d061563470cac889c0a9fd367013a5dbd8efc36ad01ab3e67a57e56cad720", + "sha256:5e1636b94c7f1f59a8ead4c8a7bab1b12cc52d4c21ababa295ffec56b445fd2a", + "sha256:7333e8bc45ea28c74ae26157eacaed5e5629dbada32e0103c23eb368f93af108", + "sha256:84b1dca0d53b0a8d58835f72ea2894e4d6cf7a5dd8f520ab4cbd698c81e49737", + "sha256:91396a585ba51f84dc71c8da60cdc86de6b60ba0272c389b6482020a1fac9394", + "sha256:a214ba5a21dad71a43c0f5aef917cd56a2d70bc974d845be211c66b6742a471c", + "sha256:aad6d92f4d71e37ea70e966500f1951ecd065edca3a70d3861b37b176dd6702c", + "sha256:b3a6dcc660220539aa718bcc9dbd6dedf2a01d19c875d1033f028f212e36d6bb", + "sha256:b5c70704962cf93ec6ea3271a47d952b75ae1980d6c56b8496cec2a722075939", + "sha256:c615a9e9e378a7383b756b7e7a73c38b22aeb8967a8bfbffd4741f7ffd043c4d", + "sha256:d3a87888c40b5bfcf69b4030427cd666893e826e82cc8608d1ba8b4b5e04ea99", + "sha256:e2cadeb0ddc98e3963bea266cc5b884e5d77d73adf807f0bda9eca64d1c509d5", + "sha256:e390df0dcc7897ffb98e17eae1f4c442c39c91814c298ad84d935a3c5c7a32fa", + "sha256:e6e90330670c78e727d6637bb5a215d3e093d8e3570d439fd4922942f88da361", + "sha256:eb6b25a7670c7537a5998e695fa62ff13c7f9c33faf82927adf4daa460d5f62e", + "sha256:f273a875c0b42c2a019c337631bc1907f6fdfbc84210cc0d1fff0e2019bbfaec", + "sha256:f8aded54c2bc554ce20b397f72101737dd61ee7b81c771684a7dd7805e6cca0c", + "sha256:fc51e545d65689c398161f07fd405104956ec27f22453de85898fa088b2cd4bb" + ], + "markers": "python_version >= '3.1'", + "version": "==4.0.2" + }, + "wrapt": { + "hashes": [ + "sha256:b62ffa81fb85f4332a4f609cab4ac40709470da05643a082ec1eb88e6d9b97d7" + ], + "version": "==1.12.1" + }, + "yapf": { + "hashes": [ + "sha256:3000abee4c28daebad55da6c85f3cd07b8062ce48e2e9943c8da1b9667d48427", + "sha256:3abf61ba67cf603069710d30acbc88cfe565d907e16ad81429ae90ce9651e0c9" + ], + "version": "==0.30.0" + } + } +} diff --git a/integration/data/lockfile/composer.lock b/integration/data/lockfile/composer.lock new file mode 100644 index 00000000..c6d3b780 --- /dev/null +++ b/integration/data/lockfile/composer.lock @@ -0,0 +1,6229 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "e59516d92f565aba8ec11ea222480963", + "packages": [ + { + "name": "composer/semver", + "version": "1.4.2", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573", + "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.5 || ^5.0.5", + "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ], + "time": "2016-08-30T16:08:34+00:00" + }, + { + "name": "composer/xdebug-handler", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "b8e9745fb9b06ea6664d8872c4505fb16df4611c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/b8e9745fb9b06ea6664d8872c4505fb16df4611c", + "reference": "b8e9745fb9b06ea6664d8872c4505fb16df4611c", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0", + "psr/log": "^1.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Composer\\XdebugHandler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" + } + ], + "description": "Restarts a process without xdebug.", + "keywords": [ + "Xdebug", + "performance" + ], + "time": "2018-08-31T19:07:57+00:00" + }, + { + "name": "darkaonline/l5-swagger", + "version": "5.7.2", + "source": { + "type": "git", + "url": "https://github.com/DarkaOnLine/L5-Swagger.git", + "reference": "eb5c20e13ab3e47ad7821af60d4a906cce60d33c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/DarkaOnLine/L5-Swagger/zipball/eb5c20e13ab3e47ad7821af60d4a906cce60d33c", + "reference": "eb5c20e13ab3e47ad7821af60d4a906cce60d33c", + "shasum": "" + }, + "require": { + "laravel/framework": "5.6.*|5.7.*", + "php": ">=7.1.3", + "swagger-api/swagger-ui": "^3.0", + "symfony/yaml": "^4.1", + "zircote/swagger-php": "~2.0|3.*" + }, + "require-dev": { + "mockery/mockery": "1.*", + "orchestra/testbench": "3.6.*", + "php-coveralls/php-coveralls": "^2.0", + "phpunit/phpunit": "7.*" + }, + "suggest": { + "zircote/swagger-php:~2.0": "!!! Require Swagger-PHP ~2.0 for @SWG annotations support !!!" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "L5Swagger\\L5SwaggerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "L5Swagger\\": "src" + }, + "files": [ + "src/helpers.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Darius Matulionis", + "email": "darius@matulionis.lt" + } + ], + "description": "Swagger integration to Laravel 5", + "keywords": [ + "api", + "laravel", + "swagger" + ], + "time": "2018-09-20T11:39:39+00:00" + }, + { + "name": "defuse/php-encryption", + "version": "v2.2.1", + "source": { + "type": "git", + "url": "https://github.com/defuse/php-encryption.git", + "reference": "0f407c43b953d571421e0020ba92082ed5fb7620" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/defuse/php-encryption/zipball/0f407c43b953d571421e0020ba92082ed5fb7620", + "reference": "0f407c43b953d571421e0020ba92082ed5fb7620", + "shasum": "" + }, + "require": { + "ext-openssl": "*", + "paragonie/random_compat": ">= 2", + "php": ">=5.4.0" + }, + "require-dev": { + "nikic/php-parser": "^2.0|^3.0|^4.0", + "phpunit/phpunit": "^4|^5" + }, + "bin": [ + "bin/generate-defuse-key" + ], + "type": "library", + "autoload": { + "psr-4": { + "Defuse\\Crypto\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Hornby", + "email": "taylor@defuse.ca", + "homepage": "https://defuse.ca/" + }, + { + "name": "Scott Arciszewski", + "email": "info@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "Secure PHP Encryption Library", + "keywords": [ + "aes", + "authenticated encryption", + "cipher", + "crypto", + "cryptography", + "encrypt", + "encryption", + "openssl", + "security", + "symmetric key cryptography" + ], + "time": "2018-07-24T23:27:56+00:00" + }, + { + "name": "dnoegel/php-xdg-base-dir", + "version": "0.1", + "source": { + "type": "git", + "url": "https://github.com/dnoegel/php-xdg-base-dir.git", + "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a", + "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "phpunit/phpunit": "@stable" + }, + "type": "project", + "autoload": { + "psr-4": { + "XdgBaseDir\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "implementation of xdg base directory specification for php", + "time": "2014-10-24T07:27:01+00:00" + }, + { + "name": "doctrine/annotations", + "version": "v1.6.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/annotations.git", + "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5", + "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5", + "shasum": "" + }, + "require": { + "doctrine/lexer": "1.*", + "php": "^7.1" + }, + "require-dev": { + "doctrine/cache": "1.*", + "phpunit/phpunit": "^6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.6.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Docblock Annotations Parser", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "annotations", + "docblock", + "parser" + ], + "time": "2017-12-06T07:11:42+00:00" + }, + { + "name": "doctrine/inflector", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "5527a48b7313d15261292c149e55e26eae771b0a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a", + "reference": "5527a48b7313d15261292c149e55e26eae771b0a", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^6.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Common String Manipulations with regard to casing and singular/plural rules.", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "inflection", + "pluralize", + "singularize", + "string" + ], + "time": "2018-01-09T20:05:19+00:00" + }, + { + "name": "doctrine/lexer", + "version": "v1.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c", + "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-0": { + "Doctrine\\Common\\Lexer\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "lexer", + "parser" + ], + "time": "2014-09-09T13:34:57+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v2.2.0", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/92a2c3768d50e21a1f26a53cb795ce72806266c5", + "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "time": "2018-06-06T03:12:17+00:00" + }, + { + "name": "egulias/email-validator", + "version": "2.1.6", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "0578b32b30b22de3e8664f797cf846fc9246f786" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0578b32b30b22de3e8664f797cf846fc9246f786", + "reference": "0578b32b30b22de3e8664f797cf846fc9246f786", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^1.0.1", + "php": ">= 5.5" + }, + "require-dev": { + "dominicsayers/isemail": "dev-master", + "phpunit/phpunit": "^4.8.35||^5.7||^6.0", + "satooshi/php-coveralls": "^1.0.1" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "EmailValidator" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "time": "2018-09-25T20:47:26+00:00" + }, + { + "name": "erusev/parsedown", + "version": "1.7.1", + "source": { + "type": "git", + "url": "https://github.com/erusev/parsedown.git", + "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1", + "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35" + }, + "type": "library", + "autoload": { + "psr-0": { + "Parsedown": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Emanuil Rusev", + "email": "hello@erusev.com", + "homepage": "http://erusev.com" + } + ], + "description": "Parser for Markdown.", + "homepage": "http://parsedown.org", + "keywords": [ + "markdown", + "parser" + ], + "time": "2018-03-08T01:11:30+00:00" + }, + { + "name": "fideloper/proxy", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/fideloper/TrustedProxy.git", + "reference": "cf8a0ca4b85659b9557e206c90110a6a4dba980a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/cf8a0ca4b85659b9557e206c90110a6a4dba980a", + "reference": "cf8a0ca4b85659b9557e206c90110a6a4dba980a", + "shasum": "" + }, + "require": { + "illuminate/contracts": "~5.0", + "php": ">=5.4.0" + }, + "require-dev": { + "illuminate/http": "~5.6", + "mockery/mockery": "~1.0", + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Fideloper\\Proxy\\TrustedProxyServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Fideloper\\Proxy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Fidao", + "email": "fideloper@gmail.com" + } + ], + "description": "Set trusted proxies for Laravel", + "keywords": [ + "load balancing", + "proxy", + "trusted proxy" + ], + "time": "2018-02-07T20:20:57+00:00" + }, + { + "name": "firebase/php-jwt", + "version": "v5.0.0", + "source": { + "type": "git", + "url": "https://github.com/firebase/php-jwt.git", + "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e", + "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": " 4.8.35" + }, + "type": "library", + "autoload": { + "psr-4": { + "Firebase\\JWT\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Neuman Vong", + "email": "neuman+pear@twilio.com", + "role": "Developer" + }, + { + "name": "Anant Narayanan", + "email": "anant@php.net", + "role": "Developer" + } + ], + "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", + "homepage": "https://github.com/firebase/php-jwt", + "time": "2017-06-27T22:17:23+00:00" + }, + { + "name": "friendsofphp/php-cs-fixer", + "version": "v2.13.1", + "source": { + "type": "git", + "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git", + "reference": "54814c62d5beef3ba55297b9b3186ed8b8a1b161" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/54814c62d5beef3ba55297b9b3186ed8b8a1b161", + "reference": "54814c62d5beef3ba55297b9b3186ed8b8a1b161", + "shasum": "" + }, + "require": { + "composer/semver": "^1.4", + "composer/xdebug-handler": "^1.2", + "doctrine/annotations": "^1.2", + "ext-json": "*", + "ext-tokenizer": "*", + "php": "^5.6 || >=7.0 <7.3", + "php-cs-fixer/diff": "^1.3", + "symfony/console": "^3.4.17 || ^4.1.6", + "symfony/event-dispatcher": "^3.0 || ^4.0", + "symfony/filesystem": "^3.0 || ^4.0", + "symfony/finder": "^3.0 || ^4.0", + "symfony/options-resolver": "^3.0 || ^4.0", + "symfony/polyfill-php70": "^1.0", + "symfony/polyfill-php72": "^1.4", + "symfony/process": "^3.0 || ^4.0", + "symfony/stopwatch": "^3.0 || ^4.0" + }, + "conflict": { + "hhvm": "*" + }, + "require-dev": { + "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0", + "justinrainbow/json-schema": "^5.0", + "keradus/cli-executor": "^1.1", + "mikey179/vfsstream": "^1.6", + "php-coveralls/php-coveralls": "^2.1", + "php-cs-fixer/accessible-object": "^1.0", + "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.0.1", + "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.0.1", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1", + "phpunitgoodpractices/traits": "^1.5.1", + "symfony/phpunit-bridge": "^4.0" + }, + "suggest": { + "ext-mbstring": "For handling non-UTF8 characters in cache signature.", + "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.", + "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.", + "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible." + }, + "bin": [ + "php-cs-fixer" + ], + "type": "application", + "autoload": { + "psr-4": { + "PhpCsFixer\\": "src/" + }, + "classmap": [ + "tests/Test/AbstractFixerTestCase.php", + "tests/Test/AbstractIntegrationCaseFactory.php", + "tests/Test/AbstractIntegrationTestCase.php", + "tests/Test/Assert/AssertTokensTrait.php", + "tests/Test/IntegrationCase.php", + "tests/Test/IntegrationCaseFactory.php", + "tests/Test/IntegrationCaseFactoryInterface.php", + "tests/Test/InternalIntegrationCaseFactory.php", + "tests/TestCase.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dariusz Rumiński", + "email": "dariusz.ruminski@gmail.com" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "A tool to automatically fix PHP code style", + "time": "2018-10-21T00:32:10+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "6.3.3", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba", + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba", + "shasum": "" + }, + "require": { + "guzzlehttp/promises": "^1.0", + "guzzlehttp/psr7": "^1.4", + "php": ">=5.5" + }, + "require-dev": { + "ext-curl": "*", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", + "psr/log": "^1.0" + }, + "suggest": { + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.3-dev" + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "homepage": "http://guzzlephp.org/", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "rest", + "web service" + ], + "time": "2018-04-22T15:46:56+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "v1.3.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "shasum": "" + }, + "require": { + "php": ">=5.5.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "time": "2016-12-20T10:07:11+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "1.4.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c", + "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c", + "shasum": "" + }, + "require": { + "php": ">=5.4.0", + "psr/http-message": "~1.0" + }, + "provide": { + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Schultze", + "homepage": "https://github.com/Tobion" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "request", + "response", + "stream", + "uri", + "url" + ], + "time": "2017-03-20T17:10:46+00:00" + }, + { + "name": "intervention/image", + "version": "2.4.2", + "source": { + "type": "git", + "url": "https://github.com/Intervention/image.git", + "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Intervention/image/zipball/e82d274f786e3d4b866a59b173f42e716f0783eb", + "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "guzzlehttp/psr7": "~1.1", + "php": ">=5.4.0" + }, + "require-dev": { + "mockery/mockery": "~0.9.2", + "phpunit/phpunit": "^4.8 || ^5.7" + }, + "suggest": { + "ext-gd": "to use GD library based image processing.", + "ext-imagick": "to use Imagick based image processing.", + "intervention/imagecache": "Caching extension for the Intervention Image library" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.4-dev" + }, + "laravel": { + "providers": [ + "Intervention\\Image\\ImageServiceProvider" + ], + "aliases": { + "Image": "Intervention\\Image\\Facades\\Image" + } + } + }, + "autoload": { + "psr-4": { + "Intervention\\Image\\": "src/Intervention/Image" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Oliver Vogel", + "email": "oliver@olivervogel.com", + "homepage": "http://olivervogel.com/" + } + ], + "description": "Image handling and manipulation library with support for Laravel integration", + "homepage": "http://image.intervention.io/", + "keywords": [ + "gd", + "image", + "imagick", + "laravel", + "thumbnail", + "watermark" + ], + "time": "2018-05-29T14:19:03+00:00" + }, + { + "name": "jakub-onderka/php-console-color", + "version": "v0.2", + "source": { + "type": "git", + "url": "https://github.com/JakubOnderka/PHP-Console-Color.git", + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191", + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191", + "shasum": "" + }, + "require": { + "php": ">=5.4.0" + }, + "require-dev": { + "jakub-onderka/php-code-style": "1.0", + "jakub-onderka/php-parallel-lint": "1.0", + "jakub-onderka/php-var-dump-check": "0.*", + "phpunit/phpunit": "~4.3", + "squizlabs/php_codesniffer": "1.*" + }, + "type": "library", + "autoload": { + "psr-4": { + "JakubOnderka\\PhpConsoleColor\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Jakub Onderka", + "email": "jakub.onderka@gmail.com" + } + ], + "time": "2018-09-29T17:23:10+00:00" + }, + { + "name": "jakub-onderka/php-console-highlighter", + "version": "v0.3.2", + "source": { + "type": "git", + "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git", + "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5", + "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5", + "shasum": "" + }, + "require": { + "jakub-onderka/php-console-color": "~0.1", + "php": ">=5.3.0" + }, + "require-dev": { + "jakub-onderka/php-code-style": "~1.0", + "jakub-onderka/php-parallel-lint": "~0.5", + "jakub-onderka/php-var-dump-check": "~0.1", + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "~1.5" + }, + "type": "library", + "autoload": { + "psr-0": { + "JakubOnderka\\PhpConsoleHighlighter": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jakub Onderka", + "email": "acci@acci.cz", + "homepage": "http://www.acci.cz/" + } + ], + "time": "2015-04-20T18:58:01+00:00" + }, + { + "name": "laravel/framework", + "version": "v5.7.9", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "172f69f86bb86e107fb9fafff293b4b01291cf05" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/172f69f86bb86e107fb9fafff293b4b01291cf05", + "reference": "172f69f86bb86e107fb9fafff293b4b01291cf05", + "shasum": "" + }, + "require": { + "doctrine/inflector": "^1.1", + "dragonmantank/cron-expression": "^2.0", + "erusev/parsedown": "^1.7", + "ext-mbstring": "*", + "ext-openssl": "*", + "league/flysystem": "^1.0.8", + "monolog/monolog": "^1.12", + "nesbot/carbon": "^1.26.3", + "opis/closure": "^3.1", + "php": "^7.1.3", + "psr/container": "^1.0", + "psr/simple-cache": "^1.0", + "ramsey/uuid": "^3.7", + "swiftmailer/swiftmailer": "^6.0", + "symfony/console": "^4.1", + "symfony/debug": "^4.1", + "symfony/finder": "^4.1", + "symfony/http-foundation": "^4.1", + "symfony/http-kernel": "^4.1", + "symfony/process": "^4.1", + "symfony/routing": "^4.1", + "symfony/var-dumper": "^4.1", + "tijsverkoyen/css-to-inline-styles": "^2.2.1", + "vlucas/phpdotenv": "^2.2" + }, + "conflict": { + "tightenco/collect": "<5.5.33" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.0", + "doctrine/dbal": "^2.6", + "filp/whoops": "^2.1.4", + "league/flysystem-cached-adapter": "^1.0", + "mockery/mockery": "^1.0", + "moontoast/math": "^1.1", + "orchestra/testbench-core": "3.7.*", + "pda/pheanstalk": "^3.0", + "phpunit/phpunit": "^7.0", + "predis/predis": "^1.1.1", + "symfony/css-selector": "^4.1", + "symfony/dom-crawler": "^4.1", + "true/punycode": "^2.1" + }, + "suggest": { + "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).", + "ext-pcntl": "Required to use all features of the queue worker.", + "ext-posix": "Required to use all features of the queue worker.", + "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).", + "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).", + "laravel/tinker": "Required to use the tinker console command (^1.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).", + "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).", + "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).", + "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).", + "moontoast/math": "Required to use ordered UUIDs (^1.1).", + "nexmo/client": "Required to use the Nexmo transport (^1.0).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^3.0).", + "predis/predis": "Required to use the redis cache and queue drivers (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).", + "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.1).", + "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.1).", + "symfony/psr-http-message-bridge": "Required to psr7 bridging features (^1.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "time": "2018-10-09T13:28:28+00:00" + }, + { + "name": "laravel/passport", + "version": "v7.0.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/passport.git", + "reference": "7bb53d1ae4f8f375cc9461d232053958740002da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/passport/zipball/7bb53d1ae4f8f375cc9461d232053958740002da", + "reference": "7bb53d1ae4f8f375cc9461d232053958740002da", + "shasum": "" + }, + "require": { + "firebase/php-jwt": "~3.0|~4.0|~5.0", + "guzzlehttp/guzzle": "~6.0", + "illuminate/auth": "~5.6", + "illuminate/console": "~5.6", + "illuminate/container": "~5.6", + "illuminate/contracts": "~5.6", + "illuminate/database": "~5.6", + "illuminate/encryption": "~5.6", + "illuminate/http": "~5.6", + "illuminate/support": "~5.6", + "league/oauth2-server": "^7.0", + "php": ">=7.1", + "phpseclib/phpseclib": "^2.0", + "symfony/psr-http-message-bridge": "~1.0", + "zendframework/zend-diactoros": "~1.0" + }, + "require-dev": { + "mockery/mockery": "~1.0", + "phpunit/phpunit": "~6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.0-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Passport\\PassportServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Passport\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel Passport provides OAuth2 server support to Laravel.", + "keywords": [ + "laravel", + "oauth", + "passport" + ], + "time": "2018-09-25T14:23:48+00:00" + }, + { + "name": "laravel/tinker", + "version": "v1.0.8", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "cafbf598a90acde68985660e79b2b03c5609a405" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405", + "reference": "cafbf598a90acde68985660e79b2b03c5609a405", + "shasum": "" + }, + "require": { + "illuminate/console": "~5.1", + "illuminate/contracts": "~5.1", + "illuminate/support": "~5.1", + "php": ">=5.5.9", + "psy/psysh": "0.7.*|0.8.*|0.9.*", + "symfony/var-dumper": "~3.0|~4.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.0|~5.0" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (~5.1)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "time": "2018-10-12T19:39:35+00:00" + }, + { + "name": "lcobucci/jwt", + "version": "3.2.4", + "source": { + "type": "git", + "url": "https://github.com/lcobucci/jwt.git", + "reference": "c9704b751315d21735dc98d78d4f37bd73596da7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c9704b751315d21735dc98d78d4f37bd73596da7", + "reference": "c9704b751315d21735dc98d78d4f37bd73596da7", + "shasum": "" + }, + "require": { + "ext-openssl": "*", + "php": ">=5.5" + }, + "require-dev": { + "mdanter/ecc": "~0.3.1", + "mikey179/vfsstream": "~1.5", + "phpmd/phpmd": "~2.2", + "phpunit/php-invoker": "~1.1", + "phpunit/phpunit": "~4.5", + "squizlabs/php_codesniffer": "~2.3" + }, + "suggest": { + "mdanter/ecc": "Required to use Elliptic Curves based algorithms." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "autoload": { + "psr-4": { + "Lcobucci\\JWT\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Luís Otávio Cobucci Oblonczyk", + "email": "lcobucci@gmail.com", + "role": "developer" + } + ], + "description": "A simple library to work with JSON Web Token and JSON Web Signature", + "keywords": [ + "JWS", + "jwt" + ], + "time": "2018-08-03T11:23:50+00:00" + }, + { + "name": "league/event", + "version": "2.1.2", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/event.git", + "reference": "e4bfc88dbcb60c8d8a2939a71f9813e141bbe4cd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/event/zipball/e4bfc88dbcb60c8d8a2939a71f9813e141bbe4cd", + "reference": "e4bfc88dbcb60c8d8a2939a71f9813e141bbe4cd", + "shasum": "" + }, + "require": { + "php": ">=5.4.0" + }, + "require-dev": { + "henrikbjorn/phpspec-code-coverage": "~1.0.1", + "phpspec/phpspec": "~2.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Event\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frenky.net" + } + ], + "description": "Event package", + "keywords": [ + "emitter", + "event", + "listener" + ], + "time": "2015-05-21T12:24:47+00:00" + }, + { + "name": "league/flysystem", + "version": "1.0.48", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "a6ded5b2f6055e2db97b4b859fdfca2b952b78aa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a6ded5b2f6055e2db97b4b859fdfca2b952b78aa", + "reference": "a6ded5b2f6055e2db97b4b859fdfca2b952b78aa", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": ">=5.5.9" + }, + "conflict": { + "league/flysystem-sftp": "<1.0.6" + }, + "require-dev": { + "phpspec/phpspec": "^3.4", + "phpunit/phpunit": "^5.7.10" + }, + "suggest": { + "ext-fileinfo": "Required for MimeType", + "ext-ftp": "Allows you to use FTP server storage", + "ext-openssl": "Allows you to use FTPS server storage", + "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", + "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", + "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", + "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", + "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", + "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", + "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", + "league/flysystem-webdav": "Allows you to use WebDAV storage", + "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter", + "spatie/flysystem-dropbox": "Allows you to use Dropbox storage", + "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frenky.net" + } + ], + "description": "Filesystem abstraction: Many filesystems, one API.", + "keywords": [ + "Cloud Files", + "WebDAV", + "abstraction", + "aws", + "cloud", + "copy.com", + "dropbox", + "file systems", + "files", + "filesystem", + "filesystems", + "ftp", + "rackspace", + "remote", + "s3", + "sftp", + "storage" + ], + "time": "2018-10-15T13:53:10+00:00" + }, + { + "name": "league/oauth2-server", + "version": "7.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/oauth2-server.git", + "reference": "8184f771d43ea7305ddbb893d0daf6f0352ec5fd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/8184f771d43ea7305ddbb893d0daf6f0352ec5fd", + "reference": "8184f771d43ea7305ddbb893d0daf6f0352ec5fd", + "shasum": "" + }, + "require": { + "defuse/php-encryption": "^2.1", + "ext-openssl": "*", + "lcobucci/jwt": "^3.2.2", + "league/event": "^2.1", + "php": ">=7.0.0", + "psr/http-message": "^1.0.1" + }, + "replace": { + "league/oauth2server": "*", + "lncd/oauth2": "*" + }, + "require-dev": { + "phpstan/phpstan": "^0.9.2", + "phpstan/phpstan-phpunit": "^0.9.4", + "phpstan/phpstan-strict-rules": "^0.9.0", + "phpunit/phpunit": "^6.3 || ^7.0", + "zendframework/zend-diactoros": "^1.3.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\OAuth2\\Server\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alex Bilbie", + "email": "hello@alexbilbie.com", + "homepage": "http://www.alexbilbie.com", + "role": "Developer" + } + ], + "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.", + "homepage": "https://oauth2.thephpleague.com/", + "keywords": [ + "Authentication", + "api", + "auth", + "authorisation", + "authorization", + "oauth", + "oauth 2", + "oauth 2.0", + "oauth2", + "protect", + "resource", + "secure", + "server" + ], + "time": "2018-06-23T16:57:59+00:00" + }, + { + "name": "monolog/monolog", + "version": "1.23.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4", + "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "psr/log": "~1.0" + }, + "provide": { + "psr/log-implementation": "1.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^2.4.9 || ^3.0", + "doctrine/couchdb": "~1.0@dev", + "graylog2/gelf-php": "~1.0", + "jakub-onderka/php-parallel-lint": "0.9", + "php-amqplib/php-amqplib": "~2.4", + "php-console/php-console": "^3.1.3", + "phpunit/phpunit": "~4.5", + "phpunit/phpunit-mock-objects": "2.3.0", + "ruflin/elastica": ">=0.90 <3.0", + "sentry/sentry": "^0.13", + "swiftmailer/swiftmailer": "^5.3|^6.0" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-mongo": "Allow sending log messages to a MongoDB server", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "php-console/php-console": "Allow sending log messages to Google Chrome", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server", + "sentry/sentry": "Allow sending log messages to a Sentry server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "http://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "time": "2017-06-19T01:22:40+00:00" + }, + { + "name": "nesbot/carbon", + "version": "1.34.0", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33", + "reference": "1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33", + "shasum": "" + }, + "require": { + "php": ">=5.3.9", + "symfony/translation": "~2.6 || ~3.0 || ~4.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "~2", + "phpunit/phpunit": "^4.8.35 || ^5.7" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "http://nesbot.com" + } + ], + "description": "A simple API extension for DateTime.", + "homepage": "http://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "time": "2018-09-20T19:36:25+00:00" + }, + { + "name": "nexmo/client", + "version": "1.5.0", + "source": { + "type": "git", + "url": "https://github.com/Nexmo/nexmo-php.git", + "reference": "4a6ecf73f7ee79b861600cb84e8a44c8a3b3ef15" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Nexmo/nexmo-php/zipball/4a6ecf73f7ee79b861600cb84e8a44c8a3b3ef15", + "reference": "4a6ecf73f7ee79b861600cb84e8a44c8a3b3ef15", + "shasum": "" + }, + "require": { + "lcobucci/jwt": "^3.2", + "php": ">=5.6", + "php-http/client-implementation": "^1.0", + "php-http/guzzle6-adapter": "^1.0", + "zendframework/zend-diactoros": "^1.3" + }, + "require-dev": { + "estahn/phpunit-json-assertions": "@stable", + "php-http/mock-client": "^0.3.0", + "phpunit/phpunit": "^5.7", + "squizlabs/php_codesniffer": "^3.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Nexmo\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Tim Lytle", + "email": "tim@nexmo.com", + "homepage": "http://twitter.com/tjlytle", + "role": "Developer" + } + ], + "description": "PHP Client for using Nexmo's API.", + "time": "2018-09-20T14:13:04+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v4.1.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "d0230c5c77a7e3cfa69446febf340978540958c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/d0230c5c77a7e3cfa69446febf340978540958c0", + "reference": "d0230c5c77a7e3cfa69446febf340978540958c0", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.5 || ^7.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "time": "2018-10-10T09:24:14+00:00" + }, + { + "name": "opis/closure", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/opis/closure.git", + "reference": "d3209e46ad6c69a969b705df0738fd0dbe26ef9e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opis/closure/zipball/d3209e46ad6c69a969b705df0738fd0dbe26ef9e", + "reference": "d3209e46ad6c69a969b705df0738fd0dbe26ef9e", + "shasum": "" + }, + "require": { + "php": "^5.4 || ^7.0" + }, + "require-dev": { + "jeremeamia/superclosure": "^2.0", + "phpunit/phpunit": "^4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Opis\\Closure\\": "src/" + }, + "files": [ + "functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marius Sarca", + "email": "marius.sarca@gmail.com" + }, + { + "name": "Sorin Sarca", + "email": "sarca_sorin@hotmail.com" + } + ], + "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.", + "homepage": "https://opis.io/closure", + "keywords": [ + "anonymous functions", + "closure", + "function", + "serializable", + "serialization", + "serialize" + ], + "time": "2018-10-02T13:36:53+00:00" + }, + { + "name": "paragonie/random_compat", + "version": "v9.99.99", + "source": { + "type": "git", + "url": "https://github.com/paragonie/random_compat.git", + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "shasum": "" + }, + "require": { + "php": "^7" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*", + "vimeo/psalm": "^1" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "polyfill", + "pseudorandom", + "random" + ], + "time": "2018-07-02T15:55:56+00:00" + }, + { + "name": "php-cs-fixer/diff", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/PHP-CS-Fixer/diff.git", + "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756", + "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7.23 || ^6.4.3", + "symfony/process": "^3.3" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "SpacePossum" + } + ], + "description": "sebastian/diff v2 backport support for PHP5.6", + "homepage": "https://github.com/PHP-CS-Fixer", + "keywords": [ + "diff" + ], + "time": "2018-02-15T16:58:55+00:00" + }, + { + "name": "php-http/guzzle6-adapter", + "version": "v1.1.1", + "source": { + "type": "git", + "url": "https://github.com/php-http/guzzle6-adapter.git", + "reference": "a56941f9dc6110409cfcddc91546ee97039277ab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/a56941f9dc6110409cfcddc91546ee97039277ab", + "reference": "a56941f9dc6110409cfcddc91546ee97039277ab", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "^6.0", + "php": ">=5.5.0", + "php-http/httplug": "^1.0" + }, + "provide": { + "php-http/async-client-implementation": "1.0", + "php-http/client-implementation": "1.0" + }, + "require-dev": { + "ext-curl": "*", + "php-http/adapter-integration-tests": "^0.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "Http\\Adapter\\Guzzle6\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" + }, + { + "name": "David de Boer", + "email": "david@ddeboer.nl" + } + ], + "description": "Guzzle 6 HTTP Adapter", + "homepage": "http://httplug.io", + "keywords": [ + "Guzzle", + "http" + ], + "time": "2016-05-10T06:13:32+00:00" + }, + { + "name": "php-http/httplug", + "version": "v1.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-http/httplug.git", + "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018", + "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018", + "shasum": "" + }, + "require": { + "php": ">=5.4", + "php-http/promise": "^1.0", + "psr/http-message": "^1.0" + }, + "require-dev": { + "henrikbjorn/phpspec-code-coverage": "^1.0", + "phpspec/phpspec": "^2.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eric GELOEN", + "email": "geloen.eric@gmail.com" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" + } + ], + "description": "HTTPlug, the HTTP client abstraction for PHP", + "homepage": "http://httplug.io", + "keywords": [ + "client", + "http" + ], + "time": "2016-08-31T08:30:17+00:00" + }, + { + "name": "php-http/promise", + "version": "v1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-http/promise.git", + "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/promise/zipball/dc494cdc9d7160b9a09bd5573272195242ce7980", + "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980", + "shasum": "" + }, + "require-dev": { + "henrikbjorn/phpspec-code-coverage": "^1.0", + "phpspec/phpspec": "^2.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Http\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" + }, + { + "name": "Joel Wurtz", + "email": "joel.wurtz@gmail.com" + } + ], + "description": "Promise used for asynchronous HTTP requests", + "homepage": "http://httplug.io", + "keywords": [ + "promise" + ], + "time": "2016-01-26T13:27:02+00:00" + }, + { + "name": "phpseclib/phpseclib", + "version": "2.0.11", + "source": { + "type": "git", + "url": "https://github.com/phpseclib/phpseclib.git", + "reference": "7053f06f91b3de78e143d430e55a8f7889efc08b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/7053f06f91b3de78e143d430e55a8f7889efc08b", + "reference": "7053f06f91b3de78e143d430e55a8f7889efc08b", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "require-dev": { + "phing/phing": "~2.7", + "phpunit/phpunit": "^4.8.35|^5.7|^6.0", + "sami/sami": "~2.0", + "squizlabs/php_codesniffer": "~2.0" + }, + "suggest": { + "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.", + "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.", + "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.", + "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations." + }, + "type": "library", + "autoload": { + "files": [ + "phpseclib/bootstrap.php" + ], + "psr-4": { + "phpseclib\\": "phpseclib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jim Wigginton", + "email": "terrafrost@php.net", + "role": "Lead Developer" + }, + { + "name": "Patrick Monnerat", + "email": "pm@datasphere.ch", + "role": "Developer" + }, + { + "name": "Andreas Fischer", + "email": "bantu@phpbb.com", + "role": "Developer" + }, + { + "name": "Hans-Jürgen Petrich", + "email": "petrich@tronic-media.com", + "role": "Developer" + }, + { + "name": "Graham Campbell", + "email": "graham@alt-three.com", + "role": "Developer" + } + ], + "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", + "homepage": "http://phpseclib.sourceforge.net", + "keywords": [ + "BigInteger", + "aes", + "asn.1", + "asn1", + "blowfish", + "crypto", + "cryptography", + "encryption", + "rsa", + "security", + "sftp", + "signature", + "signing", + "ssh", + "twofish", + "x.509", + "x509" + ], + "time": "2018-04-15T16:55:05+00:00" + }, + { + "name": "predis/predis", + "version": "v1.1.1", + "source": { + "type": "git", + "url": "https://github.com/nrk/predis.git", + "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1", + "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1", + "shasum": "" + }, + "require": { + "php": ">=5.3.9" + }, + "require-dev": { + "phpunit/phpunit": "~4.8" + }, + "suggest": { + "ext-curl": "Allows access to Webdis when paired with phpiredis", + "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol" + }, + "type": "library", + "autoload": { + "psr-4": { + "Predis\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Daniele Alessandri", + "email": "suppakilla@gmail.com", + "homepage": "http://clorophilla.net" + } + ], + "description": "Flexible and feature-complete Redis client for PHP and HHVM", + "homepage": "http://github.com/nrk/predis", + "keywords": [ + "nosql", + "predis", + "redis" + ], + "time": "2016-06-16T16:22:20+00:00" + }, + { + "name": "psr/container", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "time": "2017-02-14T16:28:37+00:00" + }, + { + "name": "psr/http-message", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "time": "2016-08-06T14:39:51+00:00" + }, + { + "name": "psr/log", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "time": "2016-10-10T12:19:37+00:00" + }, + { + "name": "psr/simple-cache", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "time": "2017-10-23T01:57:42+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.9.9", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e", + "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e", + "shasum": "" + }, + "require": { + "dnoegel/php-xdg-base-dir": "0.1", + "ext-json": "*", + "ext-tokenizer": "*", + "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*", + "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0", + "php": ">=5.4.0", + "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0", + "symfony/var-dumper": "~2.7|~3.0|~4.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2", + "hoa/console": "~2.15|~3.16", + "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", + "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.", + "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-develop": "0.9.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "time": "2018-10-13T15:16:03+00:00" + }, + { + "name": "ramsey/uuid", + "version": "3.8.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3", + "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3", + "shasum": "" + }, + "require": { + "paragonie/random_compat": "^1.0|^2.0|9.99.99", + "php": "^5.4 || ^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "codeception/aspect-mock": "^1.0 | ~2.0.0", + "doctrine/annotations": "~1.2.0", + "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0", + "ircmaxell/random-lib": "^1.1", + "jakub-onderka/php-parallel-lint": "^0.9.0", + "mockery/mockery": "^0.9.9", + "moontoast/math": "^1.1", + "php-mock/php-mock-phpunit": "^0.3|^1.1", + "phpunit/phpunit": "^4.7|^5.0|^6.5", + "squizlabs/php_codesniffer": "^2.3" + }, + "suggest": { + "ext-ctype": "Provides support for PHP Ctype functions", + "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", + "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", + "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", + "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marijn Huizendveld", + "email": "marijn.huizendveld@gmail.com" + }, + { + "name": "Thibaud Fabre", + "email": "thibaud@aztech.io" + }, + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", + "homepage": "https://github.com/ramsey/uuid", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "time": "2018-07-19T23:38:55+00:00" + }, + { + "name": "rcrowe/twigbridge", + "version": "v0.9.8", + "source": { + "type": "git", + "url": "https://github.com/rcrowe/TwigBridge.git", + "reference": "d0c998ae6d39f154c4e2d01ef914e49d0b7d5d68" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/rcrowe/TwigBridge/zipball/d0c998ae6d39f154c4e2d01ef914e49d0b7d5d68", + "reference": "d0c998ae6d39f154c4e2d01ef914e49d0b7d5d68", + "shasum": "" + }, + "require": { + "illuminate/support": "5.5.*|5.6.*|5.7.*", + "illuminate/view": "5.5.*|5.6.*|5.7.*", + "php": ">=7", + "twig/twig": "~1.30" + }, + "require-dev": { + "laravel/framework": "5.0.*", + "mockery/mockery": "0.9.*", + "phpunit/phpunit": "~4.0", + "satooshi/php-coveralls": "~0.6", + "squizlabs/php_codesniffer": "~1.5" + }, + "suggest": { + "laravelcollective/html": "For bringing back html/form in Laravel 5.x", + "twig/extensions": "~1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.10-dev" + }, + "laravel": { + "providers": [ + "TwigBridge\\ServiceProvider" + ], + "aliases": { + "Twig": "TwigBridge\\Facade\\Twig" + } + } + }, + "autoload": { + "psr-4": { + "TwigBridge\\": "src", + "TwigBridge\\Tests\\": "tests" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + }, + { + "name": "Rob Crowe", + "email": "hello@vivalacrowe.com" + } + ], + "description": "Adds the power of Twig to Laravel", + "keywords": [ + "laravel", + "twig" + ], + "time": "2018-08-31T13:30:10+00:00" + }, + { + "name": "swagger-api/swagger-ui", + "version": "v3.19.4", + "source": { + "type": "git", + "url": "https://github.com/swagger-api/swagger-ui.git", + "reference": "9a9b63634fdbe1de0556818fdb78e211c4e2fa83" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/swagger-api/swagger-ui/zipball/9a9b63634fdbe1de0556818fdb78e211c4e2fa83", + "reference": "9a9b63634fdbe1de0556818fdb78e211c4e2fa83", + "shasum": "" + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Anna Bodnia", + "email": "anna.bodnia@gmail.com" + }, + { + "name": "Buu Nguyen", + "email": "buunguyen@gmail.com" + }, + { + "name": "Josh Ponelat", + "email": "jponelat@gmail.com" + }, + { + "name": "Kyle Shockey", + "email": "kyleshockey1@gmail.com" + }, + { + "name": "Robert Barnwell", + "email": "robert@robertismy.name" + }, + { + "name": "Sahar Jafari", + "email": "shr.jafari@gmail.com" + } + ], + "description": " Swagger UI is a collection of HTML, Javascript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API.", + "homepage": "http://swagger.io", + "keywords": [ + "api", + "documentation", + "openapi", + "specification", + "swagger", + "ui" + ], + "time": "2018-10-20T04:48:22+00:00" + }, + { + "name": "swiftmailer/swiftmailer", + "version": "v6.1.3", + "source": { + "type": "git", + "url": "https://github.com/swiftmailer/swiftmailer.git", + "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8ddcb66ac10c392d3beb54829eef8ac1438595f4", + "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4", + "shasum": "" + }, + "require": { + "egulias/email-validator": "~2.0", + "php": ">=7.0.0" + }, + "require-dev": { + "mockery/mockery": "~0.9.1", + "symfony/phpunit-bridge": "~3.3@dev" + }, + "suggest": { + "ext-intl": "Needed to support internationalized email addresses", + "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.1-dev" + } + }, + "autoload": { + "files": [ + "lib/swift_required.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Corbyn" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "Swiftmailer, free feature-rich PHP mailer", + "homepage": "https://swiftmailer.symfony.com", + "keywords": [ + "email", + "mail", + "mailer" + ], + "time": "2018-09-11T07:12:52+00:00" + }, + { + "name": "symfony/console", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "dc7122fe5f6113cfaba3b3de575d31112c9aa60b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/dc7122fe5f6113cfaba3b3de575d31112c9aa60b", + "reference": "dc7122fe5f6113cfaba3b3de575d31112c9aa60b", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/process": "<3.3" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~3.4|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/event-dispatcher": "~3.4|~4.0", + "symfony/lock": "~3.4|~4.0", + "symfony/process": "~3.4|~4.0" + }, + "suggest": { + "psr/log-implementation": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Console Component", + "homepage": "https://symfony.com", + "time": "2018-10-03T08:15:46+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "d67de79a70a27d93c92c47f37ece958bf8de4d8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/d67de79a70a27d93c92c47f37ece958bf8de4d8a", + "reference": "d67de79a70a27d93c92c47f37ece958bf8de4d8a", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony CssSelector Component", + "homepage": "https://symfony.com", + "time": "2018-10-02T16:36:10+00:00" + }, + { + "name": "symfony/debug", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/debug.git", + "reference": "e3f76ce6198f81994e019bb2b4e533e9de1b9b90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/debug/zipball/e3f76ce6198f81994e019bb2b4e533e9de1b9b90", + "reference": "e3f76ce6198f81994e019bb2b4e533e9de1b9b90", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/http-kernel": "<3.4" + }, + "require-dev": { + "symfony/http-kernel": "~3.4|~4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Debug\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Debug Component", + "homepage": "https://symfony.com", + "time": "2018-10-02T16:36:10+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/bfb30c2ad377615a463ebbc875eba64a99f6aa3e", + "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "conflict": { + "symfony/dependency-injection": "<3.4" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~3.4|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/expression-language": "~3.4|~4.0", + "symfony/stopwatch": "~3.4|~4.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony EventDispatcher Component", + "homepage": "https://symfony.com", + "time": "2018-07-26T09:10:45+00:00" + }, + { + "name": "symfony/filesystem", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "596d12b40624055c300c8b619755b748ca5cf0b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/596d12b40624055c300c8b619755b748ca5cf0b5", + "reference": "596d12b40624055c300c8b619755b748ca5cf0b5", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/polyfill-ctype": "~1.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Filesystem Component", + "homepage": "https://symfony.com", + "time": "2018-10-02T12:40:59+00:00" + }, + { + "name": "symfony/finder", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "1f17195b44543017a9c9b2d437c670627e96ad06" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/1f17195b44543017a9c9b2d437c670627e96ad06", + "reference": "1f17195b44543017a9c9b2d437c670627e96ad06", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Finder Component", + "homepage": "https://symfony.com", + "time": "2018-10-03T08:47:56+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "d528136617ff24f530e70df9605acc1b788b08d4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d528136617ff24f530e70df9605acc1b788b08d4", + "reference": "d528136617ff24f530e70df9605acc1b788b08d4", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/polyfill-mbstring": "~1.1" + }, + "require-dev": { + "predis/predis": "~1.0", + "symfony/expression-language": "~3.4|~4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony HttpFoundation Component", + "homepage": "https://symfony.com", + "time": "2018-10-03T08:48:45+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "f5e7c15a5d010be0e16ce798594c5960451d4220" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f5e7c15a5d010be0e16ce798594c5960451d4220", + "reference": "f5e7c15a5d010be0e16ce798594c5960451d4220", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "psr/log": "~1.0", + "symfony/debug": "~3.4|~4.0", + "symfony/event-dispatcher": "~4.1", + "symfony/http-foundation": "^4.1.1", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/config": "<3.4", + "symfony/dependency-injection": "<4.1", + "symfony/var-dumper": "<4.1.1", + "twig/twig": "<1.34|<2.4,>=2" + }, + "provide": { + "psr/log-implementation": "1.0" + }, + "require-dev": { + "psr/cache": "~1.0", + "symfony/browser-kit": "~3.4|~4.0", + "symfony/config": "~3.4|~4.0", + "symfony/console": "~3.4|~4.0", + "symfony/css-selector": "~3.4|~4.0", + "symfony/dependency-injection": "^4.1", + "symfony/dom-crawler": "~3.4|~4.0", + "symfony/expression-language": "~3.4|~4.0", + "symfony/finder": "~3.4|~4.0", + "symfony/process": "~3.4|~4.0", + "symfony/routing": "~3.4|~4.0", + "symfony/stopwatch": "~3.4|~4.0", + "symfony/templating": "~3.4|~4.0", + "symfony/translation": "~3.4|~4.0", + "symfony/var-dumper": "^4.1.1" + }, + "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "", + "symfony/var-dumper": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony HttpKernel Component", + "homepage": "https://symfony.com", + "time": "2018-10-03T12:53:38+00:00" + }, + { + "name": "symfony/options-resolver", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/options-resolver.git", + "reference": "40f0e40d37c1c8a762334618dea597d64bbb75ff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/40f0e40d37c1c8a762334618dea597d64bbb75ff", + "reference": "40f0e40d37c1c8a762334618dea597d64bbb75ff", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\OptionsResolver\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony OptionsResolver Component", + "homepage": "https://symfony.com", + "keywords": [ + "config", + "configuration", + "options" + ], + "time": "2018-09-18T12:45:12+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.9.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "e3d826245268269cd66f8326bd8bc066687b4a19" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19", + "reference": "e3d826245268269cd66f8326bd8bc066687b4a19", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + }, + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "time": "2018-08-06T14:22:27+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.9.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8", + "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "time": "2018-08-06T14:22:27+00:00" + }, + { + "name": "symfony/polyfill-php70", + "version": "v1.9.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php70.git", + "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/1e24b0c4a56d55aaf368763a06c6d1c7d3194934", + "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934", + "shasum": "" + }, + "require": { + "paragonie/random_compat": "~1.0|~2.0|~9.99", + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php70\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "time": "2018-08-06T14:22:27+00:00" + }, + { + "name": "symfony/polyfill-php72", + "version": "v1.9.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "95c50420b0baed23852452a7f0c7b527303ed5ae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/95c50420b0baed23852452a7f0c7b527303ed5ae", + "reference": "95c50420b0baed23852452a7f0c7b527303ed5ae", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "time": "2018-08-06T14:22:27+00:00" + }, + { + "name": "symfony/process", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "ee33c0322a8fee0855afcc11fff81e6b1011b529" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/ee33c0322a8fee0855afcc11fff81e6b1011b529", + "reference": "ee33c0322a8fee0855afcc11fff81e6b1011b529", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Process Component", + "homepage": "https://symfony.com", + "time": "2018-10-02T12:40:59+00:00" + }, + { + "name": "symfony/psr-http-message-bridge", + "version": "v1.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/psr-http-message-bridge.git", + "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196", + "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0", + "psr/http-message": "^1.0", + "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0" + }, + "require-dev": { + "symfony/phpunit-bridge": "^3.4 || 4.0" + }, + "suggest": { + "psr/http-factory-implementation": "To use the PSR-17 factory", + "psr/http-message-implementation": "To use the HttpFoundation factory", + "zendframework/zend-diactoros": "To use the Zend Diactoros factory" + }, + "type": "symfony-bridge", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Bridge\\PsrHttpMessage\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Symfony Community", + "homepage": "http://symfony.com/contributors" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "PSR HTTP message bridge", + "homepage": "http://symfony.com", + "keywords": [ + "http", + "http-message", + "psr-7" + ], + "time": "2018-08-30T16:28:28+00:00" + }, + { + "name": "symfony/routing", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "537803f0bdfede36b9acef052d2e4d447d9fa0e9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/537803f0bdfede36b9acef052d2e4d447d9fa0e9", + "reference": "537803f0bdfede36b9acef052d2e4d447d9fa0e9", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "conflict": { + "symfony/config": "<3.4", + "symfony/dependency-injection": "<3.4", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "doctrine/annotations": "~1.0", + "psr/log": "~1.0", + "symfony/config": "~3.4|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/expression-language": "~3.4|~4.0", + "symfony/http-foundation": "~3.4|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "doctrine/annotations": "For using the annotation loader", + "symfony/config": "For using the all-in-one router or any loader", + "symfony/dependency-injection": "For loading routes from a service", + "symfony/expression-language": "For using expression matching", + "symfony/http-foundation": "For using a Symfony Request object", + "symfony/yaml": "For using the YAML loader" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Routing Component", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "time": "2018-10-02T12:40:59+00:00" + }, + { + "name": "symfony/stopwatch", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/stopwatch.git", + "reference": "5bfc064125b73ff81229e19381ce1c34d3416f4b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5bfc064125b73ff81229e19381ce1c34d3416f4b", + "reference": "5bfc064125b73ff81229e19381ce1c34d3416f4b", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Stopwatch\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Stopwatch Component", + "homepage": "https://symfony.com", + "time": "2018-10-02T12:40:59+00:00" + }, + { + "name": "symfony/translation", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "9f0b61e339160a466ebcde167a6c5521c810e304" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/9f0b61e339160a466ebcde167a6c5521c810e304", + "reference": "9f0b61e339160a466ebcde167a6c5521c810e304", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/config": "<3.4", + "symfony/dependency-injection": "<3.4", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~3.4|~4.0", + "symfony/console": "~3.4|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/intl": "~3.4|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "psr/log-implementation": "To use logging capability in translator", + "symfony/config": "", + "symfony/yaml": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Translation Component", + "homepage": "https://symfony.com", + "time": "2018-10-02T16:36:10+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "60319b45653580b0cdacca499344577d87732f16" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/60319b45653580b0cdacca499344577d87732f16", + "reference": "60319b45653580b0cdacca499344577d87732f16", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php72": "~1.5" + }, + "conflict": { + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", + "symfony/console": "<3.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/process": "~3.4|~4.0", + "twig/twig": "~1.34|~2.4" + }, + "suggest": { + "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", + "ext-intl": "To show region name in time zone dump", + "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony mechanism for exploring and dumping PHP variables", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "time": "2018-10-02T16:36:10+00:00" + }, + { + "name": "symfony/yaml", + "version": "v4.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "367e689b2fdc19965be435337b50bc8adf2746c9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/367e689b2fdc19965be435337b50bc8adf2746c9", + "reference": "367e689b2fdc19965be435337b50bc8adf2746c9", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/console": "<3.4" + }, + "require-dev": { + "symfony/console": "~3.4|~4.0" + }, + "suggest": { + "symfony/console": "For validating YAML files using the lint command" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Yaml Component", + "homepage": "https://symfony.com", + "time": "2018-10-02T16:36:10+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "2.2.1", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757", + "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757", + "shasum": "" + }, + "require": { + "php": "^5.5 || ^7.0", + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "time": "2017-11-27T11:13:29+00:00" + }, + { + "name": "twig/twig", + "version": "v1.35.4", + "source": { + "type": "git", + "url": "https://github.com/twigphp/Twig.git", + "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a", + "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a", + "shasum": "" + }, + "require": { + "php": ">=5.3.3", + "symfony/polyfill-ctype": "^1.8" + }, + "require-dev": { + "psr/container": "^1.0", + "symfony/debug": "^2.7", + "symfony/phpunit-bridge": "^3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.35-dev" + } + }, + "autoload": { + "psr-0": { + "Twig_": "lib/" + }, + "psr-4": { + "Twig\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" + }, + { + "name": "Twig Team", + "homepage": "https://twig.symfony.com/contributors", + "role": "Contributors" + } + ], + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "https://twig.symfony.com", + "keywords": [ + "templating" + ], + "time": "2018-07-13T07:12:17+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v2.5.1", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e", + "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e", + "shasum": "" + }, + "require": { + "php": ">=5.3.9" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.5-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "http://www.vancelucas.com" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "time": "2018-07-29T20:33:41+00:00" + }, + { + "name": "zendframework/zend-diactoros", + "version": "1.8.6", + "source": { + "type": "git", + "url": "https://github.com/zendframework/zend-diactoros.git", + "reference": "20da13beba0dde8fb648be3cc19765732790f46e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e", + "reference": "20da13beba0dde8fb648be3cc19765732790f46e", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0", + "psr/http-message": "^1.0" + }, + "provide": { + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "ext-dom": "*", + "ext-libxml": "*", + "php-http/psr7-integration-tests": "dev-master", + "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7", + "zendframework/zend-coding-standard": "~1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8.x-dev", + "dev-develop": "1.9.x-dev", + "dev-release-2.0": "2.0.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions/create_uploaded_file.php", + "src/functions/marshal_headers_from_sapi.php", + "src/functions/marshal_method_from_sapi.php", + "src/functions/marshal_protocol_version_from_sapi.php", + "src/functions/marshal_uri_from_sapi.php", + "src/functions/normalize_server.php", + "src/functions/normalize_uploaded_files.php", + "src/functions/parse_cookie_header.php" + ], + "psr-4": { + "Zend\\Diactoros\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-2-Clause" + ], + "description": "PSR HTTP Message implementations", + "homepage": "https://github.com/zendframework/zend-diactoros", + "keywords": [ + "http", + "psr", + "psr-7" + ], + "time": "2018-09-05T19:29:37+00:00" + }, + { + "name": "zircote/swagger-php", + "version": "2.0.13", + "source": { + "type": "git", + "url": "https://github.com/zircote/swagger-php.git", + "reference": "8b42fdc3d8c5a5e0d1f8d344aa359822c9f085e0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zircote/swagger-php/zipball/8b42fdc3d8c5a5e0d1f8d344aa359822c9f085e0", + "reference": "8b42fdc3d8c5a5e0d1f8d344aa359822c9f085e0", + "shasum": "" + }, + "require": { + "doctrine/annotations": "*", + "php": ">=5.6", + "symfony/finder": ">=2.2" + }, + "require-dev": { + "phpunit/phpunit": ">=4.8.35 <=5.6", + "squizlabs/php_codesniffer": ">=2.7", + "zendframework/zend-form": "<2.8" + }, + "bin": [ + "bin/swagger" + ], + "type": "library", + "autoload": { + "psr-4": { + "Swagger\\": "src" + }, + "files": [ + "src/functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache2" + ], + "authors": [ + { + "name": "Robert Allen", + "email": "zircote@gmail.com", + "homepage": "http://www.zircote.com" + }, + { + "name": "Bob Fanger", + "email": "bfanger@gmail.com", + "homepage": "http://bfanger.nl" + } + ], + "description": "Swagger-PHP - Generate interactive documentation for your RESTful API using phpdoc annotations", + "homepage": "https://github.com/zircote/swagger-php/", + "keywords": [ + "api", + "json", + "rest", + "service discovery" + ], + "time": "2017-12-01T09:22:05+00:00" + } + ], + "packages-dev": [ + { + "name": "beyondcode/laravel-dump-server", + "version": "1.2.2", + "source": { + "type": "git", + "url": "https://github.com/beyondcode/laravel-dump-server.git", + "reference": "8864b9efcb48e0a79e83014dd7f0a5481f5c808f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/8864b9efcb48e0a79e83014dd7f0a5481f5c808f", + "reference": "8864b9efcb48e0a79e83014dd7f0a5481f5c808f", + "shasum": "" + }, + "require": { + "illuminate/console": "5.6.*|5.7.*|5.8.*", + "illuminate/http": "5.6.*|5.7.*|5.8.*", + "illuminate/support": "5.6.*|5.7.*|5.8.*", + "php": "^7.1", + "symfony/var-dumper": "^4.1.1" + }, + "require-dev": { + "larapack/dd": "^1.0", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "BeyondCode\\DumpServer\\DumpServerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "BeyondCode\\DumpServer\\": "src" + }, + "files": [ + "helpers.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marcel Pociot", + "email": "marcel@beyondco.de", + "homepage": "https://beyondcode.de", + "role": "Developer" + } + ], + "description": "Symfony Var-Dump Server for Laravel", + "homepage": "https://github.com/beyondcode/laravel-dump-server", + "keywords": [ + "beyondcode", + "laravel-dump-server" + ], + "time": "2018-10-04T07:22:24+00:00" + }, + { + "name": "doctrine/instantiator", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", + "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "athletic/athletic": "~0.1.8", + "ext-pdo": "*", + "ext-phar": "*", + "phpunit/phpunit": "^6.2.3", + "squizlabs/php_codesniffer": "^3.0.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.com/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://github.com/doctrine/instantiator", + "keywords": [ + "constructor", + "instantiate" + ], + "time": "2017-07-22T11:58:36+00:00" + }, + { + "name": "filp/whoops", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "a9f129b99df316f847584d482c89c14a9f796e2b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/a9f129b99df316f847584d482c89c14a9f796e2b", + "reference": "a9f129b99df316f847584d482c89c14a9f796e2b", + "shasum": "" + }, + "require": { + "php": "^5.5.9 || ^7.0", + "psr/log": "^1.0.1" + }, + "require-dev": { + "mockery/mockery": "^0.9 || ^1.0", + "phpunit/phpunit": "^4.8.35 || ^5.7", + "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "time": "2018-10-20T09:00:00+00:00" + }, + { + "name": "fzaninotto/faker", + "version": "v1.8.0", + "source": { + "type": "git", + "url": "https://github.com/fzaninotto/Faker.git", + "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de", + "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0" + }, + "require-dev": { + "ext-intl": "*", + "phpunit/phpunit": "^4.8.35 || ^5.7", + "squizlabs/php_codesniffer": "^1.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8-dev" + } + }, + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "time": "2018-07-12T10:23:15+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.0", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad", + "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "1.3.3", + "phpunit/phpunit": "~4.0", + "satooshi/php-coveralls": "^1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "time": "2016-01-20T08:20:44+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "100633629bf76d57430b86b7098cd6beb996a35a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/100633629bf76d57430b86b7098cd6beb996a35a", + "reference": "100633629bf76d57430b86b7098cd6beb996a35a", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "~2.0", + "lib-pcre": ">=7.0", + "php": ">=5.6.0" + }, + "require-dev": { + "phpunit/phpunit": "~5.7.10|~6.5|~7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-0": { + "Mockery": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "http://blog.astrumfutura.com" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "http://davedevelopment.co.uk" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "time": "2018-10-02T21:52:37+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.8.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8", + "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "replace": { + "myclabs/deep-copy": "self.version" + }, + "require-dev": { + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + }, + "files": [ + "src/DeepCopy/deep_copy.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "time": "2018-06-11T23:09:50+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v2.1.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "1149ad9f36f61b121ae61f5f6de820fc77b51e6b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/1149ad9f36f61b121ae61f5f6de820fc77b51e6b", + "reference": "1149ad9f36f61b121ae61f5f6de820fc77b51e6b", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.1.4", + "jakub-onderka/php-console-highlighter": "0.3.*", + "php": "^7.1", + "symfony/console": "~2.8|~3.3|~4.0" + }, + "require-dev": { + "laravel/framework": "5.7.*", + "phpstan/phpstan": "^0.10", + "phpunit/phpunit": "~7.3" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "time": "2018-10-03T20:01:54+00:00" + }, + { + "name": "phar-io/manifest", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "phar-io/version": "^2.0", + "php": "^5.6 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "time": "2018-07-08T19:23:20+00:00" + }, + { + "name": "phar-io/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "time": "2018-07-08T19:19:57+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "shasum": "" + }, + "require": { + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ], + "time": "2017-09-11T18:02:19+00:00" + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "4.3.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08", + "shasum": "" + }, + "require": { + "php": "^7.0", + "phpdocumentor/reflection-common": "^1.0.0", + "phpdocumentor/type-resolver": "^0.4.0", + "webmozart/assert": "^1.0" + }, + "require-dev": { + "doctrine/instantiator": "~1.0.5", + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "time": "2017-11-30T07:14:17+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "0.4.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", + "shasum": "" + }, + "require": { + "php": "^5.5 || ^7.0", + "phpdocumentor/reflection-common": "^1.0" + }, + "require-dev": { + "mockery/mockery": "^0.9.4", + "phpunit/phpunit": "^5.2||^4.8.24" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "time": "2017-07-14T14:27:02+00:00" + }, + { + "name": "phpspec/prophecy", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06", + "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.0.2", + "php": "^5.3|^7.0", + "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", + "sebastian/comparator": "^1.1|^2.0|^3.0", + "sebastian/recursion-context": "^1.0|^2.0|^3.0" + }, + "require-dev": { + "phpspec/phpspec": "^2.5|^3.2", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8.x-dev" + } + }, + "autoload": { + "psr-0": { + "Prophecy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", + "keywords": [ + "Double", + "Dummy", + "fake", + "mock", + "spy", + "stub" + ], + "time": "2018-08-05T17:53:17+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "6.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "b097681a19a48e52706f57e47a09594bac4f7cab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/b097681a19a48e52706f57e47a09594bac4f7cab", + "reference": "b097681a19a48e52706f57e47a09594bac4f7cab", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-xmlwriter": "*", + "php": "^7.1", + "phpunit/php-file-iterator": "^2.0", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-token-stream": "^3.0", + "sebastian/code-unit-reverse-lookup": "^1.0.1", + "sebastian/environment": "^3.1 || ^4.0", + "sebastian/version": "^2.0.1", + "theseer/tokenizer": "^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "suggest": { + "ext-xdebug": "^2.6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "time": "2018-10-18T09:01:38+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "050bedf145a257b1ff02746c31894800e5122946" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946", + "reference": "050bedf145a257b1ff02746c31894800e5122946", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "time": "2018-09-13T20:33:42+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "time": "2015-06-21T13:50:34+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b8454ea6958c3dee38453d3bd571e023108c91f", + "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "time": "2018-02-01T13:07:23+00:00" + }, + { + "name": "phpunit/php-token-stream", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-token-stream.git", + "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/21ad88bbba7c3d93530d93994e0a33cd45f02ace", + "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Wrapper around PHP's tokenizer extension.", + "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "keywords": [ + "tokenizer" + ], + "time": "2018-02-01T13:16:43+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "7.4.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "c5a120ade60992bd671a912188ee9ee9f8083bbd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c5a120ade60992bd671a912188ee9ee9f8083bbd", + "reference": "c5a120ade60992bd671a912188ee9ee9f8083bbd", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.1", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "myclabs/deep-copy": "^1.7", + "phar-io/manifest": "^1.0.2", + "phar-io/version": "^2.0", + "php": "^7.1", + "phpspec/prophecy": "^1.7", + "phpunit/php-code-coverage": "^6.0.7", + "phpunit/php-file-iterator": "^2.0.1", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-timer": "^2.0", + "sebastian/comparator": "^3.0", + "sebastian/diff": "^3.0", + "sebastian/environment": "^3.1 || ^4.0", + "sebastian/exporter": "^3.1", + "sebastian/global-state": "^2.0", + "sebastian/object-enumerator": "^3.0.3", + "sebastian/resource-operations": "^2.0", + "sebastian/version": "^2.0.1" + }, + "conflict": { + "phpunit/phpunit-mock-objects": "*" + }, + "require-dev": { + "ext-pdo": "*" + }, + "suggest": { + "ext-soap": "*", + "ext-xdebug": "*", + "phpunit/php-invoker": "^2.0" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.4-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "time": "2018-10-18T09:02:52+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "time": "2017-03-04T06:30:41+00:00" + }, + { + "name": "sebastian/comparator", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "shasum": "" + }, + "require": { + "php": "^7.1", + "sebastian/diff": "^3.0", + "sebastian/exporter": "^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "time": "2018-07-12T15:12:46+00:00" + }, + { + "name": "sebastian/diff", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "366541b989927187c4ca70490a35615d3fef2dce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/366541b989927187c4ca70490a35615d3fef2dce", + "reference": "366541b989927187c4ca70490a35615d3fef2dce", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0", + "symfony/process": "^2 || ^3.3 || ^4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "time": "2018-06-10T07:54:39+00:00" + }, + { + "name": "sebastian/environment", + "version": "3.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5", + "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "time": "2017-07-01T08:51:00+00:00" + }, + { + "name": "sebastian/exporter", + "version": "3.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "234199f4528de6d12aaa58b612e98f7d36adb937" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937", + "reference": "234199f4528de6d12aaa58b612e98f7d36adb937", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "http://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "time": "2017-04-03T13:19:02+00:00" + }, + { + "name": "sebastian/global-state", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "time": "2017-04-27T15:39:26+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/object-reflector": "^1.1.1", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "time": "2017-08-03T12:35:26+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "773f97c67f28de00d397be301821b06708fca0be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", + "reference": "773f97c67f28de00d397be301821b06708fca0be", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "time": "2017-03-29T09:07:27+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "time": "2017-03-03T06:23:57+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9", + "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "time": "2018-10-04T04:07:39+00:00" + }, + { + "name": "sebastian/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "time": "2016-10-03T07:35:21+00:00" + }, + { + "name": "squizlabs/php_codesniffer", + "version": "3.3.2", + "source": { + "type": "git", + "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", + "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6ad28354c04b364c3c71a34e4a18b629cc3b231e", + "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e", + "shasum": "" + }, + "require": { + "ext-simplexml": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": ">=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + }, + "bin": [ + "bin/phpcs", + "bin/phpcbf" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Greg Sherwood", + "role": "lead" + } + ], + "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", + "homepage": "http://www.squizlabs.com/php-codesniffer", + "keywords": [ + "phpcs", + "standards" + ], + "time": "2018-09-23T23:08:17+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b", + "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "time": "2017-04-07T12:08:54+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/webmozart/assert.git", + "reference": "0df1908962e7a3071564e857d86874dad1ef204a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a", + "reference": "0df1908962e7a3071564e857d86874dad1ef204a", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "time": "2018-01-29T19:49:41+00:00" + } + ], + "aliases": [], + "minimum-stability": "dev", + "stability-flags": { + "nexmo/client": 10 + }, + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^7.1.3" + }, + "platform-dev": [] +} diff --git a/integration/data/lockfile/package-lock.json b/integration/data/lockfile/package-lock.json new file mode 100644 index 00000000..ba02af84 --- /dev/null +++ b/integration/data/lockfile/package-lock.json @@ -0,0 +1,2440 @@ +{ + "requires": true, + "lockfileVersion": 1, + "dependencies": { + "accepts": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz", + "integrity": "sha1-hiRnWMfdbSGmR0/whKR0DsBesh8=", + "dev": true, + "requires": { + "mime-types": "2.1.17", + "negotiator": "0.6.1" + } + }, + "ajv": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", + "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "dev": true, + "requires": { + "co": "4.6.0", + "fast-deep-equal": "1.0.0", + "fast-json-stable-stringify": "2.0.0", + "json-schema-traverse": "0.3.1" + } + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "argparse": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", + "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=", + "dev": true, + "requires": { + "sprintf-js": "1.0.3" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", + "dev": true + }, + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", + "dev": true + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "autolinker": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.15.3.tgz", + "integrity": "sha1-NCQX2PLzRhsUzwkIjV7fh5HcmDI=", + "dev": true + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=", + "dev": true + }, + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "dev": true, + "requires": { + "chalk": "1.1.3", + "esutils": "2.0.2", + "js-tokens": "3.0.2" + }, + "dependencies": { + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "2.2.1", + "escape-string-regexp": "1.0.5", + "has-ansi": "2.0.0", + "strip-ansi": "3.0.1", + "supports-color": "2.0.0" + } + } + } + }, + "babel-core": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz", + "integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=", + "dev": true, + "requires": { + "babel-code-frame": "6.26.0", + "babel-generator": "6.26.0", + "babel-helpers": "6.24.1", + "babel-messages": "6.23.0", + "babel-register": "6.26.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0", + "babylon": "6.18.0", + "convert-source-map": "1.5.1", + "debug": "2.6.9", + "json5": "0.5.1", + "lodash": "4.17.4", + "minimatch": "3.0.4", + "path-is-absolute": "1.0.1", + "private": "0.1.8", + "slash": "1.0.0", + "source-map": "0.5.7" + } + }, + "babel-generator": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz", + "integrity": "sha1-rBriAHC3n248odMmlhMFN3TyDcU=", + "dev": true, + "requires": { + "babel-messages": "6.23.0", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "detect-indent": "4.0.0", + "jsesc": "1.3.0", + "lodash": "4.17.4", + "source-map": "0.5.7", + "trim-right": "1.0.1" + }, + "dependencies": { + "jsesc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", + "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=", + "dev": true + } + } + }, + "babel-helper-builder-binary-assignment-operator-visitor": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz", + "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=", + "dev": true, + "requires": { + "babel-helper-explode-assignable-expression": "6.24.1", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-builder-react-jsx": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz", + "integrity": "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "esutils": "2.0.2" + } + }, + "babel-helper-call-delegate": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz", + "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=", + "dev": true, + "requires": { + "babel-helper-hoist-variables": "6.24.1", + "babel-runtime": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-define-map": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz", + "integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=", + "dev": true, + "requires": { + "babel-helper-function-name": "6.24.1", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "lodash": "4.17.4" + } + }, + "babel-helper-explode-assignable-expression": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz", + "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", + "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", + "dev": true, + "requires": { + "babel-helper-get-function-arity": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-get-function-arity": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", + "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-hoist-variables": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz", + "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-optimise-call-expression": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz", + "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-regex": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz", + "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "lodash": "4.17.4" + } + }, + "babel-helper-remap-async-to-generator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz", + "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=", + "dev": true, + "requires": { + "babel-helper-function-name": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-replace-supers": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz", + "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=", + "dev": true, + "requires": { + "babel-helper-optimise-call-expression": "6.24.1", + "babel-messages": "6.23.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helpers": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", + "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", + "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-check-es2015-constants": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz", + "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-syntax-async-functions": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz", + "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=", + "dev": true + }, + "babel-plugin-syntax-exponentiation-operator": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz", + "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=", + "dev": true + }, + "babel-plugin-syntax-flow": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz", + "integrity": "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=", + "dev": true + }, + "babel-plugin-syntax-jsx": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=", + "dev": true + }, + "babel-plugin-syntax-trailing-function-commas": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz", + "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=", + "dev": true + }, + "babel-plugin-transform-async-to-generator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz", + "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=", + "dev": true, + "requires": { + "babel-helper-remap-async-to-generator": "6.24.1", + "babel-plugin-syntax-async-functions": "6.13.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-arrow-functions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", + "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-block-scoped-functions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz", + "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-block-scoping": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz", + "integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0", + "lodash": "4.17.4" + } + }, + "babel-plugin-transform-es2015-classes": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz", + "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=", + "dev": true, + "requires": { + "babel-helper-define-map": "6.26.0", + "babel-helper-function-name": "6.24.1", + "babel-helper-optimise-call-expression": "6.24.1", + "babel-helper-replace-supers": "6.24.1", + "babel-messages": "6.23.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-computed-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz", + "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-plugin-transform-es2015-destructuring": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", + "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-duplicate-keys": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz", + "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-for-of": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz", + "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz", + "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=", + "dev": true, + "requires": { + "babel-helper-function-name": "6.24.1", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-literals": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz", + "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-modules-amd": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz", + "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=", + "dev": true, + "requires": { + "babel-plugin-transform-es2015-modules-commonjs": "6.26.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-plugin-transform-es2015-modules-commonjs": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz", + "integrity": "sha1-DYOUApt9xqvhqX7xgeAHWN0uXYo=", + "dev": true, + "requires": { + "babel-plugin-transform-strict-mode": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-modules-systemjs": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz", + "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=", + "dev": true, + "requires": { + "babel-helper-hoist-variables": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-plugin-transform-es2015-modules-umd": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz", + "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=", + "dev": true, + "requires": { + "babel-plugin-transform-es2015-modules-amd": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-plugin-transform-es2015-object-super": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz", + "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=", + "dev": true, + "requires": { + "babel-helper-replace-supers": "6.24.1", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-parameters": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz", + "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=", + "dev": true, + "requires": { + "babel-helper-call-delegate": "6.24.1", + "babel-helper-get-function-arity": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-shorthand-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz", + "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-spread": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz", + "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-sticky-regex": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", + "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=", + "dev": true, + "requires": { + "babel-helper-regex": "6.26.0", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-template-literals": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz", + "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-typeof-symbol": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz", + "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-unicode-regex": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", + "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=", + "dev": true, + "requires": { + "babel-helper-regex": "6.26.0", + "babel-runtime": "6.26.0", + "regexpu-core": "2.0.0" + } + }, + "babel-plugin-transform-exponentiation-operator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz", + "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=", + "dev": true, + "requires": { + "babel-helper-builder-binary-assignment-operator-visitor": "6.24.1", + "babel-plugin-syntax-exponentiation-operator": "6.13.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-flow-strip-types": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz", + "integrity": "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=", + "dev": true, + "requires": { + "babel-plugin-syntax-flow": "6.18.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-react-display-name": { + "version": "6.25.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz", + "integrity": "sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-react-jsx": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz", + "integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=", + "dev": true, + "requires": { + "babel-helper-builder-react-jsx": "6.26.0", + "babel-plugin-syntax-jsx": "6.18.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-react-jsx-self": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz", + "integrity": "sha1-322AqdomEqEh5t3XVYvL7PBuY24=", + "dev": true, + "requires": { + "babel-plugin-syntax-jsx": "6.18.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-react-jsx-source": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz", + "integrity": "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=", + "dev": true, + "requires": { + "babel-plugin-syntax-jsx": "6.18.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-regenerator": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz", + "integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=", + "dev": true, + "requires": { + "regenerator-transform": "0.10.1" + } + }, + "babel-plugin-transform-strict-mode": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz", + "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-preset-env": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.6.1.tgz", + "integrity": "sha512-W6VIyA6Ch9ePMI7VptNn2wBM6dbG0eSz25HEiL40nQXCsXGTGZSTZu1Iap+cj3Q0S5a7T9+529l/5Bkvd+afNA==", + "dev": true, + "requires": { + "babel-plugin-check-es2015-constants": "6.22.0", + "babel-plugin-syntax-trailing-function-commas": "6.22.0", + "babel-plugin-transform-async-to-generator": "6.24.1", + "babel-plugin-transform-es2015-arrow-functions": "6.22.0", + "babel-plugin-transform-es2015-block-scoped-functions": "6.22.0", + "babel-plugin-transform-es2015-block-scoping": "6.26.0", + "babel-plugin-transform-es2015-classes": "6.24.1", + "babel-plugin-transform-es2015-computed-properties": "6.24.1", + "babel-plugin-transform-es2015-destructuring": "6.23.0", + "babel-plugin-transform-es2015-duplicate-keys": "6.24.1", + "babel-plugin-transform-es2015-for-of": "6.23.0", + "babel-plugin-transform-es2015-function-name": "6.24.1", + "babel-plugin-transform-es2015-literals": "6.22.0", + "babel-plugin-transform-es2015-modules-amd": "6.24.1", + "babel-plugin-transform-es2015-modules-commonjs": "6.26.0", + "babel-plugin-transform-es2015-modules-systemjs": "6.24.1", + "babel-plugin-transform-es2015-modules-umd": "6.24.1", + "babel-plugin-transform-es2015-object-super": "6.24.1", + "babel-plugin-transform-es2015-parameters": "6.24.1", + "babel-plugin-transform-es2015-shorthand-properties": "6.24.1", + "babel-plugin-transform-es2015-spread": "6.22.0", + "babel-plugin-transform-es2015-sticky-regex": "6.24.1", + "babel-plugin-transform-es2015-template-literals": "6.22.0", + "babel-plugin-transform-es2015-typeof-symbol": "6.23.0", + "babel-plugin-transform-es2015-unicode-regex": "6.24.1", + "babel-plugin-transform-exponentiation-operator": "6.24.1", + "babel-plugin-transform-regenerator": "6.26.0", + "browserslist": "2.10.0", + "invariant": "2.2.2", + "semver": "5.4.1" + } + }, + "babel-preset-flow": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz", + "integrity": "sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0=", + "dev": true, + "requires": { + "babel-plugin-transform-flow-strip-types": "6.22.0" + } + }, + "babel-preset-react": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-react/-/babel-preset-react-6.24.1.tgz", + "integrity": "sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A=", + "dev": true, + "requires": { + "babel-plugin-syntax-jsx": "6.18.0", + "babel-plugin-transform-react-display-name": "6.25.0", + "babel-plugin-transform-react-jsx": "6.24.1", + "babel-plugin-transform-react-jsx-self": "6.22.0", + "babel-plugin-transform-react-jsx-source": "6.22.0", + "babel-preset-flow": "6.23.0" + } + }, + "babel-register": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz", + "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=", + "dev": true, + "requires": { + "babel-core": "6.26.0", + "babel-runtime": "6.26.0", + "core-js": "2.5.3", + "home-or-tmp": "2.0.0", + "lodash": "4.17.4", + "mkdirp": "0.5.1", + "source-map-support": "0.4.18" + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "dev": true, + "requires": { + "core-js": "2.5.3", + "regenerator-runtime": "0.11.1" + } + }, + "babel-template": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", + "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0", + "babylon": "6.18.0", + "lodash": "4.17.4" + } + }, + "babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", + "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", + "dev": true, + "requires": { + "babel-code-frame": "6.26.0", + "babel-messages": "6.23.0", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "babylon": "6.18.0", + "debug": "2.6.9", + "globals": "9.18.0", + "invariant": "2.2.2", + "lodash": "4.17.4" + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", + "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "esutils": "2.0.2", + "lodash": "4.17.4", + "to-fast-properties": "1.0.3" + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "dev": true + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "dev": true, + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "body-parser": { + "version": "1.18.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", + "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", + "dev": true, + "requires": { + "bytes": "3.0.0", + "content-type": "1.0.4", + "debug": "2.6.9", + "depd": "1.1.1", + "http-errors": "1.6.2", + "iconv-lite": "0.4.19", + "on-finished": "2.3.0", + "qs": "6.5.1", + "raw-body": "2.3.2", + "type-is": "1.6.15" + } + }, + "boom": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", + "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", + "dev": true, + "requires": { + "hoek": "4.2.0" + } + }, + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "browserslist": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.10.0.tgz", + "integrity": "sha512-WyvzSLsuAVPOjbljXnyeWl14Ae+ukAT8MUuagKVzIDvwBxl4UAwD1xqtyQs2eWYPGUKMeC3Ol62goqYuKqTTcw==", + "dev": true, + "requires": { + "caniuse-lite": "1.0.30000784", + "electron-to-chromium": "1.3.30" + } + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30000784", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000784.tgz", + "integrity": "sha1-EpztdOmhKApEGIC2zSvOMO9Z5sA=", + "dev": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", + "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", + "dev": true, + "requires": { + "ansi-styles": "3.2.0", + "escape-string-regexp": "1.0.5", + "supports-color": "4.5.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", + "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", + "dev": true, + "requires": { + "color-convert": "1.9.1" + } + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "dev": true, + "requires": { + "has-flag": "2.0.0" + } + } + } + }, + "classnames": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.5.tgz", + "integrity": "sha1-+zgB1FNGdknvNgPH1hoCvRKb3m0=", + "dev": true + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "color": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color/-/color-2.0.1.tgz", + "integrity": "sha512-ubUCVVKfT7r2w2D3qtHakj8mbmKms+tThR8gI8zEYCbUBl8/voqFGt3kgBqGwXAopgXybnkuOq+qMYCRrp4cXw==", + "dev": true, + "requires": { + "color-convert": "1.9.1", + "color-string": "1.5.2" + } + }, + "color-convert": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz", + "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "color-string": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.2.tgz", + "integrity": "sha1-JuRYFLw8mny9Z1FkikFDRRSnc6k=", + "dev": true, + "requires": { + "color-name": "1.1.3", + "simple-swizzle": "0.2.2" + } + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "dev": true, + "requires": { + "delayed-stream": "1.0.0" + } + }, + "commander": { + "version": "2.12.2", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.12.2.tgz", + "integrity": "sha512-BFnaq5ZOGcDN7FlrtBT4xxkgIToalIIxwjxLWVJ8bGTpe1LroqMiqQXdA7ygc7CRvaYS+9zfPGFnJqFSayx+AA==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=", + "dev": true + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true + }, + "convert-source-map": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz", + "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=", + "dev": true + }, + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "core-js": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz", + "integrity": "sha1-isw4NFgk8W2DZbfJtCWRaOjtYD4=", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "create-react-class": { + "version": "15.6.2", + "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.6.2.tgz", + "integrity": "sha1-zx7RXxKq1/FO9fLf4F5sQvke8Co=", + "dev": true, + "requires": { + "fbjs": "0.8.16", + "loose-envify": "1.3.1", + "object-assign": "4.1.1" + } + }, + "crowdin-cli": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/crowdin-cli/-/crowdin-cli-0.3.0.tgz", + "integrity": "sha1-6smYmm/n/qrzMJA5evwYfGe0YZE=", + "dev": true, + "requires": { + "request": "2.83.0", + "yamljs": "0.2.10", + "yargs": "2.3.0" + } + }, + "cryptiles": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", + "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", + "dev": true, + "requires": { + "boom": "5.2.0" + }, + "dependencies": { + "boom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", + "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", + "dev": true, + "requires": { + "hoek": "4.2.0" + } + } + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "deep-is": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.2.tgz", + "integrity": "sha1-nO1l6gvAsJ9CptecGxkD+dkTzBg=", + "dev": true + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "depd": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", + "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=", + "dev": true + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "detect-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", + "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", + "dev": true, + "requires": { + "repeating": "2.0.1" + } + }, + "docusaurus": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/docusaurus/-/docusaurus-1.0.3.tgz", + "integrity": "sha512-SCzAI2hEaXwB7OVD6sBxVEOGGYA53CNo0rVTVixiDVEc40tEcVraQYevzSn4xT3LUuBdkPNvxYoLPZMsJDh2YQ==", + "dev": true, + "requires": { + "babel-preset-env": "1.6.1", + "babel-preset-react": "6.24.1", + "babel-register": "6.26.0", + "babel-traverse": "6.26.0", + "babylon": "6.18.0", + "chalk": "2.3.0", + "classnames": "2.2.5", + "color": "2.0.1", + "commander": "2.12.2", + "crowdin-cli": "0.3.0", + "escape-string-regexp": "1.0.5", + "express": "4.16.2", + "feed": "1.1.1", + "fs-extra": "3.0.1", + "glob": "7.1.2", + "highlight.js": "9.12.0", + "react": "15.6.2", + "react-dom": "15.6.2", + "react-dom-factories": "1.0.2", + "remarkable": "1.7.1", + "request": "2.83.0", + "shelljs": "0.7.8", + "sitemap": "1.13.0", + "tcp-port-used": "0.1.2" + } + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "dev": true, + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "electron-releases": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/electron-releases/-/electron-releases-2.1.0.tgz", + "integrity": "sha512-cyKFD1bTE/UgULXfaueIN1k5EPFzs+FRc/rvCY5tIynefAPqopQEgjr0EzY+U3Dqrk/G4m9tXSPuZ77v6dL/Rw==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.3.30", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz", + "integrity": "sha512-zx1Prv7kYLfc4OA60FhxGbSo4qrEjgSzpo1/37i7l9ltXPYOoQBtjQxY9KmsgfHnBxHlBGXwLlsbt/gub1w5lw==", + "dev": true, + "requires": { + "electron-releases": "2.1.0" + } + }, + "encodeurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz", + "integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA=", + "dev": true + }, + "encoding": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", + "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", + "dev": true, + "requires": { + "iconv-lite": "0.4.19" + } + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true + }, + "express": { + "version": "4.16.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.16.2.tgz", + "integrity": "sha1-41xt/i1kt9ygpc1PIXgb4ymeB2w=", + "dev": true, + "requires": { + "accepts": "1.3.4", + "array-flatten": "1.1.1", + "body-parser": "1.18.2", + "content-disposition": "0.5.2", + "content-type": "1.0.4", + "cookie": "0.3.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "1.1.1", + "encodeurl": "1.0.1", + "escape-html": "1.0.3", + "etag": "1.8.1", + "finalhandler": "1.1.0", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "1.1.2", + "on-finished": "2.3.0", + "parseurl": "1.3.2", + "path-to-regexp": "0.1.7", + "proxy-addr": "2.0.2", + "qs": "6.5.1", + "range-parser": "1.2.0", + "safe-buffer": "5.1.1", + "send": "0.16.1", + "serve-static": "1.13.1", + "setprototypeof": "1.1.0", + "statuses": "1.3.1", + "type-is": "1.6.15", + "utils-merge": "1.0.1", + "vary": "1.1.2" + } + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "dev": true + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "fast-deep-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz", + "integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=", + "dev": true + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "dev": true + }, + "fbjs": { + "version": "0.8.16", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz", + "integrity": "sha1-XmdDL1UNxBtXK/VYR7ispk5TN9s=", + "dev": true, + "requires": { + "core-js": "1.2.7", + "isomorphic-fetch": "2.2.1", + "loose-envify": "1.3.1", + "object-assign": "4.1.1", + "promise": "7.3.1", + "setimmediate": "1.0.5", + "ua-parser-js": "0.7.17" + }, + "dependencies": { + "core-js": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", + "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=", + "dev": true + } + } + }, + "feed": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/feed/-/feed-1.1.1.tgz", + "integrity": "sha1-kUiXUX6U+jJ8xvc7tYWkfEqe0yE=", + "dev": true, + "requires": { + "xml": "1.0.1" + } + }, + "finalhandler": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", + "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "1.0.1", + "escape-html": "1.0.3", + "on-finished": "2.3.0", + "parseurl": "1.3.2", + "statuses": "1.3.1", + "unpipe": "1.0.0" + } + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz", + "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=", + "dev": true, + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.17" + } + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", + "dev": true + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true + }, + "fs-extra": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", + "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "jsonfile": "3.0.1", + "universalify": "0.1.1" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "globals": { + "version": "9.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", + "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", + "dev": true + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true + }, + "har-validator": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", + "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", + "dev": true, + "requires": { + "ajv": "5.5.2", + "har-schema": "2.0.0" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + }, + "has-flag": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", + "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=", + "dev": true + }, + "hawk": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", + "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", + "dev": true, + "requires": { + "boom": "4.3.1", + "cryptiles": "3.1.2", + "hoek": "4.2.0", + "sntp": "2.1.0" + } + }, + "highlight.js": { + "version": "9.12.0", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.12.0.tgz", + "integrity": "sha1-5tnb5Xy+/mB1HwKvM2GVhwyQwB4=", + "dev": true + }, + "hoek": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz", + "integrity": "sha512-v0XCLxICi9nPfYrS9RL8HbYnXi9obYAeLbSP00BmnZwCK9+Ih9WOjoZ8YoHCoav2csqn4FOz4Orldsy2dmDwmQ==", + "dev": true + }, + "home-or-tmp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", + "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=", + "dev": true, + "requires": { + "os-homedir": "1.0.2", + "os-tmpdir": "1.0.2" + } + }, + "http-errors": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", + "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", + "dev": true, + "requires": { + "depd": "1.1.1", + "inherits": "2.0.3", + "setprototypeof": "1.0.3", + "statuses": "1.3.1" + }, + "dependencies": { + "setprototypeof": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", + "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=", + "dev": true + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "iconv-lite": { + "version": "0.4.19", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", + "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "interpret": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", + "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=", + "dev": true + }, + "invariant": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz", + "integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=", + "dev": true, + "requires": { + "loose-envify": "1.3.1" + } + }, + "ipaddr.js": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz", + "integrity": "sha1-1LUFvemUaYfM8PxY2QEP+WB+P6A=", + "dev": true + }, + "is-arrayish": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.1.tgz", + "integrity": "sha1-wt/DhquqDD4zxI2z/ocFnmkGXv0=", + "dev": true + }, + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is2": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/is2/-/is2-0.0.9.tgz", + "integrity": "sha1-EZVW0dFlGkG6EFr4AyZ8gLKZ9ik=", + "dev": true, + "requires": { + "deep-is": "0.1.2" + } + }, + "isomorphic-fetch": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", + "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", + "dev": true, + "requires": { + "node-fetch": "1.7.3", + "whatwg-fetch": "2.0.3" + } + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", + "dev": true + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true, + "optional": true + }, + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true + }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "dev": true + }, + "jsonfile": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", + "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11" + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "lodash": { + "version": "4.17.4", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", + "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=", + "dev": true + }, + "loose-envify": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", + "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", + "dev": true, + "requires": { + "js-tokens": "3.0.2" + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true + }, + "mime": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", + "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", + "dev": true + }, + "mime-db": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", + "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=", + "dev": true + }, + "mime-types": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", + "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", + "dev": true, + "requires": { + "mime-db": "1.30.0" + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "negotiator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", + "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", + "dev": true + }, + "node-fetch": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", + "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", + "dev": true, + "requires": { + "encoding": "0.1.12", + "is-stream": "1.1.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "parseurl": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", + "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-parse": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", + "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "private": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", + "dev": true + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dev": true, + "requires": { + "asap": "2.0.6" + } + }, + "prop-types": { + "version": "15.6.0", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.0.tgz", + "integrity": "sha1-zq8IMCL8RrSjX2nhPvda7Q1jmFY=", + "dev": true, + "requires": { + "fbjs": "0.8.16", + "loose-envify": "1.3.1", + "object-assign": "4.1.1" + } + }, + "proxy-addr": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.2.tgz", + "integrity": "sha1-ZXFQT0e7mI7IGAJT+F3X4UlSvew=", + "dev": true, + "requires": { + "forwarded": "0.1.2", + "ipaddr.js": "1.5.2" + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "q": { + "version": "0.9.7", + "resolved": "https://registry.npmjs.org/q/-/q-0.9.7.tgz", + "integrity": "sha1-TeLmyzspCIyeTLwDv51C+5bOL3U=", + "dev": true + }, + "qs": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", + "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==", + "dev": true + }, + "range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=", + "dev": true + }, + "raw-body": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", + "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", + "dev": true, + "requires": { + "bytes": "3.0.0", + "http-errors": "1.6.2", + "iconv-lite": "0.4.19", + "unpipe": "1.0.0" + } + }, + "react": { + "version": "15.6.2", + "resolved": "https://registry.npmjs.org/react/-/react-15.6.2.tgz", + "integrity": "sha1-26BDSrQ5z+gvEI8PURZjkIF5qnI=", + "dev": true, + "requires": { + "create-react-class": "15.6.2", + "fbjs": "0.8.16", + "loose-envify": "1.3.1", + "object-assign": "4.1.1", + "prop-types": "15.6.0" + } + }, + "react-dom": { + "version": "15.6.2", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-15.6.2.tgz", + "integrity": "sha1-Qc+t9pO3V/rycIRDodH9WgK+9zA=", + "dev": true, + "requires": { + "fbjs": "0.8.16", + "loose-envify": "1.3.1", + "object-assign": "4.1.1", + "prop-types": "15.6.0" + } + }, + "react-dom-factories": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/react-dom-factories/-/react-dom-factories-1.0.2.tgz", + "integrity": "sha1-63cFxNs2+1AbOqOP91lhaqD/luA=", + "dev": true + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, + "requires": { + "resolve": "1.5.0" + } + }, + "regenerate": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz", + "integrity": "sha512-jVpo1GadrDAK59t/0jRx5VxYWQEDkkEKi6+HjE3joFVLfDOh9Xrdh0dF1eSq+BI/SwvTQ44gSscJ8N5zYL61sg==", + "dev": true + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "dev": true + }, + "regenerator-transform": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz", + "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==", + "dev": true, + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "private": "0.1.8" + } + }, + "regexpu-core": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz", + "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=", + "dev": true, + "requires": { + "regenerate": "1.3.3", + "regjsgen": "0.2.0", + "regjsparser": "0.1.5" + } + }, + "regjsgen": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", + "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=", + "dev": true + }, + "regjsparser": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", + "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", + "dev": true, + "requires": { + "jsesc": "0.5.0" + } + }, + "remarkable": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.1.tgz", + "integrity": "sha1-qspJchALZqZCpjoQIcpLrBvjv/Y=", + "dev": true, + "requires": { + "argparse": "0.1.16", + "autolinker": "0.15.3" + }, + "dependencies": { + "argparse": { + "version": "0.1.16", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz", + "integrity": "sha1-z9AeD7uj1srtBJ+9dY1A9lGW9Xw=", + "dev": true, + "requires": { + "underscore": "1.7.0", + "underscore.string": "2.4.0" + } + } + } + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, + "requires": { + "is-finite": "1.0.2" + } + }, + "request": { + "version": "2.83.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz", + "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==", + "dev": true, + "requires": { + "aws-sign2": "0.7.0", + "aws4": "1.6.0", + "caseless": "0.12.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.3.1", + "har-validator": "5.0.3", + "hawk": "6.0.2", + "http-signature": "1.2.0", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.17", + "oauth-sign": "0.8.2", + "performance-now": "2.1.0", + "qs": "6.5.1", + "safe-buffer": "5.1.1", + "stringstream": "0.0.5", + "tough-cookie": "2.3.3", + "tunnel-agent": "0.6.0", + "uuid": "3.1.0" + } + }, + "resolve": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz", + "integrity": "sha512-hgoSGrc3pjzAPHNBg+KnFcK2HwlHTs/YrAGUr6qgTVUZmXv1UEXXl0bZNBKMA9fud6lRYFdPGz0xXxycPzmmiw==", + "dev": true, + "requires": { + "path-parse": "1.0.5" + } + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", + "dev": true + }, + "semver": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", + "integrity": "sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg==", + "dev": true + }, + "send": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.16.1.tgz", + "integrity": "sha512-ElCLJdJIKPk6ux/Hocwhk7NFHpI3pVm/IZOYWqUmoxcgeyM+MpxHHKhb8QmlJDX1pU6WrgaHBkVNm73Sv7uc2A==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "1.1.1", + "destroy": "1.0.4", + "encodeurl": "1.0.1", + "escape-html": "1.0.3", + "etag": "1.8.1", + "fresh": "0.5.2", + "http-errors": "1.6.2", + "mime": "1.4.1", + "ms": "2.0.0", + "on-finished": "2.3.0", + "range-parser": "1.2.0", + "statuses": "1.3.1" + } + }, + "serve-static": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz", + "integrity": "sha512-hSMUZrsPa/I09VYFJwa627JJkNs0NrfL1Uzuup+GqHfToR2KcsXFymXSV90hoyw3M+msjFuQly+YzIH/q0MGlQ==", + "dev": true, + "requires": { + "encodeurl": "1.0.1", + "escape-html": "1.0.3", + "parseurl": "1.3.2", + "send": "0.16.1" + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "shelljs": { + "version": "0.7.8", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz", + "integrity": "sha1-3svPh0sNHl+3LhSxZKloMEjprLM=", + "dev": true, + "requires": { + "glob": "7.1.2", + "interpret": "1.1.0", + "rechoir": "0.6.2" + } + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "dev": true, + "requires": { + "is-arrayish": "0.3.1" + } + }, + "sitemap": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-1.13.0.tgz", + "integrity": "sha1-Vpy+IYAgKSamKiZs094Jyc60P4M=", + "dev": true, + "requires": { + "underscore": "1.7.0", + "url-join": "1.1.0" + } + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "dev": true + }, + "sntp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", + "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", + "dev": true, + "requires": { + "hoek": "4.2.0" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "source-map-support": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", + "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", + "dev": true, + "requires": { + "source-map": "0.5.7" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "sshpk": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", + "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", + "dev": true, + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + } + }, + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", + "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=", + "dev": true + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + }, + "tcp-port-used": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/tcp-port-used/-/tcp-port-used-0.1.2.tgz", + "integrity": "sha1-lFDodoyDtBb9TRpqlEnuzL9JbCk=", + "dev": true, + "requires": { + "debug": "0.7.4", + "is2": "0.0.9", + "q": "0.9.7" + }, + "dependencies": { + "debug": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz", + "integrity": "sha1-BuHqgILCyxTjmAbiLi9vdX+Srzk=", + "dev": true + } + } + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", + "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", + "dev": true + }, + "tough-cookie": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", + "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", + "dev": true, + "requires": { + "punycode": "1.4.1" + } + }, + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", + "dev": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true, + "optional": true + }, + "type-is": { + "version": "1.6.15", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", + "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "2.1.17" + } + }, + "ua-parser-js": { + "version": "0.7.17", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz", + "integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g==", + "dev": true + }, + "underscore": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz", + "integrity": "sha1-a7rwh3UA02vjTsqlhODbn+8DUgk=", + "dev": true + }, + "underscore.string": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz", + "integrity": "sha1-jN2PusTi0uoefi6Al8QvRCKA+Fs=", + "dev": true + }, + "universalify": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz", + "integrity": "sha1-+nG63UQ3r0wUiEHjs7Fl+enlkLc=", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + }, + "url-join": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-1.1.0.tgz", + "integrity": "sha1-dBxsL0WWxIMNZxhGCSDQySIC3Hg=", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true + }, + "uuid": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz", + "integrity": "sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==", + "dev": true + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + } + }, + "whatwg-fetch": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", + "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=", + "dev": true + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "xml": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "integrity": "sha1-eLpyAgApxbyHuKgaPPzXS0ovweU=", + "dev": true + }, + "yamljs": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/yamljs/-/yamljs-0.2.10.tgz", + "integrity": "sha1-SBzHwlynOvWfWR8MluPOVsdXpA8=", + "dev": true, + "requires": { + "argparse": "1.0.9", + "glob": "7.1.2" + } + }, + "yargs": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-2.3.0.tgz", + "integrity": "sha1-6QDIclDsXNCA22AJ/j3WMVbx1/s=", + "dev": true, + "requires": { + "wordwrap": "0.0.2" + } + } + } +} diff --git a/integration/data/lockfile/poetry.lock b/integration/data/lockfile/poetry.lock new file mode 100644 index 00000000..4447d198 --- /dev/null +++ b/integration/data/lockfile/poetry.lock @@ -0,0 +1,1091 @@ +[[package]] +name = "appdirs" +version = "0.4.4" +description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "atomicwrites" +version = "1.4.0" +description = "Atomic file writes." +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[[package]] +name = "attrs" +version = "21.1.0" +description = "Classes Without Boilerplate" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[package.extras] +dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit"] +docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"] +tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface"] +tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins"] + +[[package]] +name = "cachecontrol" +version = "0.12.6" +description = "httplib2 caching for requests" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[package.dependencies] +lockfile = {version = ">=0.9", optional = true, markers = "extra == \"filecache\""} +msgpack = ">=0.5.2" +requests = "*" + +[package.extras] +filecache = ["lockfile (>=0.9)"] +redis = ["redis (>=2.10.5)"] + +[[package]] +name = "cachy" +version = "0.1.0" +description = "Cachy provides a simple yet effective caching library." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[package.extras] +redis = ["redis (>=3.3.6,<4.0.0)"] +memcached = ["python-memcached (>=1.59,<2.0)"] +msgpack = ["msgpack-python (>=0.5,<0.6)"] + +[[package]] +name = "certifi" +version = "2020.12.5" +description = "Python package for providing Mozilla's CA Bundle." +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "cffi" +version = "0.14.5" +description = "Foreign Function Interface for Python calling C code." +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "cfgv" +version = "1.2.0" +description = "Validate configuration and produce human readable error messages." +category = "dev" +optional = false +python-versions = ">=3.6.1" + +[[package]] +name = "chardet" +version = "2.0.0" +description = "Universal encoding detector for Python 2 and 3" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "cleo" +version = "1.0.0a3" +description = "Cleo allows you to create beautiful and testable command-line interfaces." +category = "main" +optional = false +python-versions = ">=3.6,<4.0" + +[package.dependencies] +crashtest = ">=0.3.1,<0.4.0" +pylev = ">=1.3.0,<2.0.0" + +[[package]] +name = "colorama" +version = "0.4.4" +description = "Cross-platform colored terminal text." +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "coverage" +version = "1.5" +description = "Code coverage measurement for Python" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" + +[package.extras] +toml = ["toml"] + +[[package]] +name = "crashtest" +version = "0.3.1" +description = "Manage Python errors with ease" +category = "main" +optional = false +python-versions = ">=3.6,<4.0" + +[[package]] +name = "cryptography" +version = "3.4.7" +description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +cffi = ">=1.12" + +[package.extras] +docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"] +docstest = ["doc8", "pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"] +pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"] +sdist = ["setuptools-rust (>=0.11.4)"] +ssh = ["bcrypt (>=3.1.5)"] +test = ["pytest (>=6.0)", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"] + +[[package]] +name = "dataclasses" +version = "0.8" +description = "A backport of the dataclasses module for Python 3.6" +category = "main" +optional = false +python-versions = ">=3.6, <3.7" + +[[package]] +name = "deepdiff" +version = "0.5.0" +description = "Deep Difference and Search of any Python object/data." +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +ordered-set = "4.0.2" + +[package.extras] +cli = ["click (==7.1.2)", "pyyaml (==5.4)", "toml (==0.10.2)", "clevercsv (==0.6.7)"] + +[[package]] +name = "distlib" +version = "0.p.1" +description = "Distribution utilities" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "entrypoints" +version = "0.3" +description = "Discover and load entry points from installed packages." +category = "main" +optional = false +python-versions = ">=2.7" + +[[package]] +name = "filelock" +version = "0.0.12" +description = "A platform independent file lock." +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "html5lib" +version = "0.1" +description = "HTML parser based on the WHATWG HTML specification" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[package.dependencies] +six = ">=1.9" +webencodings = "*" + +[package.extras] +all = ["genshi", "chardet (>=2.2)", "lxml"] +chardet = ["chardet (>=2.2)"] +genshi = ["genshi"] +lxml = ["lxml"] + +[[package]] +name = "httpretty" +version = "p.0.5" +description = "HTTP client mock for Python" +category = "dev" +optional = false +python-versions = ">=3" + +[[package]] +name = "identify" +version = "2.2.4" +description = "File identification library for Python" +category = "dev" +optional = false +python-versions = ">=3.6.1" + +[package.extras] +license = ["editdistance-s"] + +[[package]] +name = "idna" +version = "2.10" +description = "Internationalized Domain Names in Applications (IDNA)" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[[package]] +name = "importlib-metadata" +version = "1.7.0" +description = "Read metadata from Python packages" +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" + +[package.dependencies] +zipp = ">=0.5" + +[package.extras] +docs = ["sphinx", "rst.linker"] +testing = ["packaging", "pep517", "importlib-resources (>=1.3)"] + +[[package]] +name = "importlib-resources" +version = "5.1.2" +description = "Read resources from Python packages" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +zipp = {version = ">=0.4", markers = "python_version < \"3.8\""} + +[package.extras] +docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] +testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "pytest-enabler", "pytest-black (>=0.3.7)", "pytest-mypy"] + +[[package]] +name = "iniconfig" +version = "1.1.1" +description = "iniconfig: brain-dead simple config-ini parsing" +category = "dev" +optional = false +python-versions = "*" + +[[package]] +name = "jeepney" +version = "0.6.0" +description = "Low-level, pure Python DBus protocol wrapper." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +test = ["pytest", "pytest-trio", "pytest-asyncio", "testpath", "trio"] + +[[package]] +name = "keyring" +version = "0.3.0" +description = "Store and access your passwords safely." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +importlib-metadata = {version = ">=1", markers = "python_version < \"3.8\""} +jeepney = {version = ">=0.4.2", markers = "sys_platform == \"linux\""} +pywin32-ctypes = {version = "<0.1.0 || >0.1.0,<0.1.1 || >0.1.1", markers = "sys_platform == \"win32\""} +SecretStorage = {version = ">=3.2", markers = "sys_platform == \"linux\""} + +[package.extras] +docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] +testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "pytest-enabler", "pytest-black (>=0.3.7)", "pytest-mypy"] + +[[package]] +name = "lockfile" +version = "0.12.2" +description = "Platform-independent file locking module" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "msgpack" +version = "0.0.2" +description = "MessagePack (de)serializer." +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "nodeenv" +version = "1.6.0" +description = "Node.js virtual environment builder" +category = "dev" +optional = false +python-versions = "*" + +[[package]] +name = "ordered-set" +version = "4.0.2" +description = "A set that remembers its order, and allows looking up its items by their index in that order." +category = "dev" +optional = false +python-versions = ">=3.5" + +[[package]] +name = "packaging" +version = "20.9" +description = "Core utilities for Python packages" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[package.dependencies] +pyparsing = ">=2.0.2" + +[[package]] +name = "pexpect" +version = "0.8.0" +description = "Pexpect allows easy control of interactive console applications." +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +ptyprocess = ">=0.5" + +[[package]] +name = "pkginfo" +version = "1.7.0" +description = "Query metadatdata from sdists / bdists / installed packages." +category = "main" +optional = false +python-versions = "*" + +[package.extras] +testing = ["nose", "coverage"] + +[[package]] +name = "pluggy" +version = "0.13.1" +description = "plugin and hook calling mechanisms for python" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[package.dependencies] +importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} + +[package.extras] +dev = ["pre-commit", "tox"] + +[[package]] +name = "poetry-core" +version = "1.1.0a4" +description = "Poetry PEP 517 Build Backend" +category = "main" +optional = false +python-versions = "^3.6" +develop = false + +[package.dependencies] +dataclasses = {version = ">=0.8", markers = "python_version >= \"3.6\" and python_version < \"3.7\""} +importlib-metadata = {version = ">=1.7.0", markers = "python_version < \"3.8\""} + +[package.source] +type = "git" +url = "https://github.com/python-poetry/poetry-core.git" +reference = "master" +resolved_reference = "8b1cc5ea8d4557a4d215c873ebf2acfe282ad64d" + +[[package]] +name = "pre-commit" +version = "2.12.1" +description = "A framework for managing and maintaining multi-language pre-commit hooks." +category = "dev" +optional = false +python-versions = ">=3.6.1" + +[package.dependencies] +cfgv = ">=2.0.0" +identify = ">=1.0.0" +importlib-metadata = {version = "*", markers = "python_version < \"3.8\""} +importlib-resources = {version = "*", markers = "python_version < \"3.7\""} +nodeenv = ">=0.11.1" +pyyaml = ">=5.1" +toml = "*" +virtualenv = ">=20.0.8" + +[[package]] +name = "ptyprocess" +version = "0.7.0" +description = "Run a subprocess in a pseudo terminal" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "py" +version = "0.10.0" +description = "library with cross-python path, ini-parsing, io, code, log facilities" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[[package]] +name = "pycparser" +version = "2.20" +description = "C parser in Python" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[[package]] +name = "pylev" +version = "1.3.0" +description = "A pure Python Levenshtein implementation that's not freaking GPL'd." +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "pyparsing" +version = "2.4.7" +description = "Python parsing module" +category = "main" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" + +[[package]] +name = "pytest" +version = "6.2.4" +description = "pytest: simple powerful testing with Python" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} +attrs = ">=19.2.0" +colorama = {version = "*", markers = "sys_platform == \"win32\""} +importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} +iniconfig = "*" +packaging = "*" +pluggy = ">=0.12,<1.0.0a1" +py = ">=1.8.2" +toml = "*" + +[package.extras] +testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] + +[[package]] +name = "pytest-cov" +version = "2.11.1" +description = "Pytest plugin for measuring coverage." +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[package.dependencies] +coverage = ">=5.2.1" +pytest = ">=4.6" + +[package.extras] +testing = ["fields", "hunter", "process-tests (==2.0.2)", "six", "pytest-xdist", "virtualenv"] + +[[package]] +name = "pytest-mock" +version = "3.6.1" +description = "Thin-wrapper around the mock package for easier use with pytest" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +pytest = ">=5.0" + +[package.extras] +dev = ["pre-commit", "tox", "pytest-asyncio"] + +[[package]] +name = "pytest-sugar" +version = "0.9.4" +description = "pytest-sugar is a plugin for pytest that changes the default look and feel of pytest (e.g. progressbar, show tests that fail instantly)." +category = "dev" +optional = false +python-versions = "*" + +[package.dependencies] +packaging = ">=14.1" +pytest = ">=2.9" +termcolor = ">=1.1.0" + +[[package]] +name = "pywin32-ctypes" +version = "0.2.0" +description = "" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "pyyaml" +version = "5.4.1" +description = "YAML parser and emitter for Python" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" + +[[package]] +name = "requests" +version = "2.25.1" +description = "Python HTTP for Humans." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[package.dependencies] +certifi = ">=2017.4.17" +chardet = ">=3.0.2,<5" +idna = ">=2.5,<3" +urllib3 = ">=1.21.1,<1.27" + +[package.extras] +security = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)"] +socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] + +[[package]] +name = "requests-toolbelt" +version = "0.9.1" +description = "A utility belt for advanced users of python-requests" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +requests = ">=2.0.1,<3.0.0" + +[[package]] +name = "secretstorage" +version = "3.3.1" +description = "Python bindings to FreeDesktop.org Secret Service API" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +cryptography = ">=2.0" +jeepney = ">=0.6" + +[[package]] +name = "shellingham" +version = "1.4.0" +description = "Tool to Detect Surrounding Shell" +category = "main" +optional = false +python-versions = "!=3.0,!=3.1,!=3.2,!=3.3,>=2.6" + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" + +[[package]] +name = "termcolor" +version = "1.1.0" +description = "ANSII Color formatting for output in terminal." +category = "dev" +optional = false +python-versions = "*" + +[[package]] +name = "toml" +version = "0.10.2" +description = "Python Library for Tom's Obvious, Minimal Language" +category = "dev" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" + +[[package]] +name = "tomlkit" +version = "0.7.0" +description = "Style preserving TOML library" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "tox" +version = "3.23.1" +description = "tox is a generic virtualenv management and test command line tool" +category = "dev" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" + +[package.dependencies] +colorama = {version = ">=0.4.1", markers = "platform_system == \"Windows\""} +filelock = ">=3.0.0" +importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} +packaging = ">=14" +pluggy = ">=0.12.0" +py = ">=1.4.17" +six = ">=1.14.0" +toml = ">=0.9.4" +virtualenv = ">=16.0.0,<20.0.0 || >20.0.0,<20.0.1 || >20.0.1,<20.0.2 || >20.0.2,<20.0.3 || >20.0.3,<20.0.4 || >20.0.4,<20.0.5 || >20.0.5,<20.0.6 || >20.0.6,<20.0.7 || >20.0.7" + +[package.extras] +docs = ["pygments-github-lexers (>=0.0.5)", "sphinx (>=2.0.0)", "sphinxcontrib-autoprogram (>=0.1.5)", "towncrier (>=18.5.0)"] +testing = ["flaky (>=3.4.0)", "freezegun (>=0.3.11)", "psutil (>=5.6.1)", "pytest (>=4.0.0)", "pytest-cov (>=2.5.1)", "pytest-mock (>=1.10.0)", "pytest-randomly (>=1.0.0)", "pytest-xdist (>=1.22.2)", "pathlib2 (>=2.3.3)"] + +[[package]] +name = "urllib3" +version = "1.26.4" +description = "HTTP library with thread-safe connection pooling, file post, and more." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" + +[package.extras] +secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] +brotli = ["brotlipy (>=0.6.0)"] + +[[package]] +name = "virtualenv" +version = "20.4.4" +description = "Virtual Python Environment builder" +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" + +[package.dependencies] +appdirs = ">=1.4.3,<2" +distlib = ">=0.3.1,<1" +filelock = ">=3.0.0,<4" +importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} +importlib-resources = {version = ">=1.0", markers = "python_version < \"3.7\""} +six = ">=1.9.0,<2" + +[package.extras] +docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=19.9.0rc1)"] +testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)", "packaging (>=20.0)", "xonsh (>=0.9.16)"] + +[[package]] +name = "webencodings" +version = "0.5.1" +description = "Character encoding aliases for legacy web content" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "zipp" +version = "3.4.1" +description = "Backport of pathlib-compatible object wrapper for zip files" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] +testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "pytest-enabler", "jaraco.itertools", "func-timeout", "pytest-black (>=0.3.7)", "pytest-mypy"] + +[metadata] +lock-version = "1.1" +python-versions = "^3.6" +content-hash = "e38d34da68dcd63ef9f9d999f60b8e19d8da7f988031c3a6e6865d51c1fadeda" + +[metadata.files] +appdirs = [ + {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"}, + {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"}, +] +atomicwrites = [ + {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, + {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, +] +attrs = [ + {file = "attrs-21.1.0-py2.py3-none-any.whl", hash = "sha256:8ee1e5f5a1afc5b19bdfae4fdf0c35ed324074bdce3500c939842c8f818645d9"}, + {file = "attrs-21.1.0.tar.gz", hash = "sha256:3901be1cb7c2a780f14668691474d9252c070a756be0a9ead98cfeabfa11aeb8"}, +] +cachecontrol = [ + {file = "CacheControl-0.12.6-py2.py3-none-any.whl", hash = "sha256:10d056fa27f8563a271b345207402a6dcce8efab7e5b377e270329c62471b10d"}, + {file = "CacheControl-0.12.6.tar.gz", hash = "sha256:be9aa45477a134aee56c8fac518627e1154df063e85f67d4f83ce0ccc23688e8"}, +] +cachy = [ + {file = "cachy-0.3.0-py2.py3-none-any.whl", hash = "sha256:338ca09c8860e76b275aff52374330efedc4d5a5e45dc1c5b539c1ead0786fe7"}, + {file = "cachy-0.3.0.tar.gz", hash = "sha256:186581f4ceb42a0bbe040c407da73c14092379b1e4c0e327fdb72ae4a9b269b1"}, +] +certifi = [ + {file = "certifi-2020.12.5-py2.py3-none-any.whl", hash = "sha256:719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830"}, + {file = "certifi-2020.12.5.tar.gz", hash = "sha256:1a4995114262bffbc2413b159f2a1a480c969de6e6eb13ee966d470af86af59c"}, +] +cffi = [ + {file = "cffi-1.14.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:bb89f306e5da99f4d922728ddcd6f7fcebb3241fc40edebcb7284d7514741991"}, + {file = "cffi-1.14.5-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:34eff4b97f3d982fb93e2831e6750127d1355a923ebaeeb565407b3d2f8d41a1"}, + {file = "cffi-1.14.5-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:99cd03ae7988a93dd00bcd9d0b75e1f6c426063d6f03d2f90b89e29b25b82dfa"}, + {file = "cffi-1.14.5-cp27-cp27m-win32.whl", hash = "sha256:65fa59693c62cf06e45ddbb822165394a288edce9e276647f0046e1ec26920f3"}, + {file = "cffi-1.14.5-cp27-cp27m-win_amd64.whl", hash = "sha256:51182f8927c5af975fece87b1b369f722c570fe169f9880764b1ee3bca8347b5"}, + {file = "cffi-1.14.5-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:43e0b9d9e2c9e5d152946b9c5fe062c151614b262fda2e7b201204de0b99e482"}, + {file = "cffi-1.14.5-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:cbde590d4faaa07c72bf979734738f328d239913ba3e043b1e98fe9a39f8b2b6"}, + {file = "cffi-1.14.5-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:5de7970188bb46b7bf9858eb6890aad302577a5f6f75091fd7cdd3ef13ef3045"}, + {file = "cffi-1.14.5-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:a465da611f6fa124963b91bf432d960a555563efe4ed1cc403ba5077b15370aa"}, + {file = "cffi-1.14.5-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:d42b11d692e11b6634f7613ad8df5d6d5f8875f5d48939520d351007b3c13406"}, + {file = "cffi-1.14.5-cp35-cp35m-win32.whl", hash = "sha256:72d8d3ef52c208ee1c7b2e341f7d71c6fd3157138abf1a95166e6165dd5d4369"}, + {file = "cffi-1.14.5-cp35-cp35m-win_amd64.whl", hash = "sha256:29314480e958fd8aab22e4a58b355b629c59bf5f2ac2492b61e3dc06d8c7a315"}, + {file = "cffi-1.14.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:3d3dd4c9e559eb172ecf00a2a7517e97d1e96de2a5e610bd9b68cea3925b4892"}, + {file = "cffi-1.14.5-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:48e1c69bbacfc3d932221851b39d49e81567a4d4aac3b21258d9c24578280058"}, + {file = "cffi-1.14.5-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:69e395c24fc60aad6bb4fa7e583698ea6cc684648e1ffb7fe85e3c1ca131a7d5"}, + {file = "cffi-1.14.5-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:9e93e79c2551ff263400e1e4be085a1210e12073a31c2011dbbda14bda0c6132"}, + {file = "cffi-1.14.5-cp36-cp36m-win32.whl", hash = "sha256:58e3f59d583d413809d60779492342801d6e82fefb89c86a38e040c16883be53"}, + {file = "cffi-1.14.5-cp36-cp36m-win_amd64.whl", hash = "sha256:005a36f41773e148deac64b08f233873a4d0c18b053d37da83f6af4d9087b813"}, + {file = "cffi-1.14.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2894f2df484ff56d717bead0a5c2abb6b9d2bf26d6960c4604d5c48bbc30ee73"}, + {file = "cffi-1.14.5-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:0857f0ae312d855239a55c81ef453ee8fd24136eaba8e87a2eceba644c0d4c06"}, + {file = "cffi-1.14.5-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:cd2868886d547469123fadc46eac7ea5253ea7fcb139f12e1dfc2bbd406427d1"}, + {file = "cffi-1.14.5-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:35f27e6eb43380fa080dccf676dece30bef72e4a67617ffda586641cd4508d49"}, + {file = "cffi-1.14.5-cp37-cp37m-win32.whl", hash = "sha256:9ff227395193126d82e60319a673a037d5de84633f11279e336f9c0f189ecc62"}, + {file = "cffi-1.14.5-cp37-cp37m-win_amd64.whl", hash = "sha256:9cf8022fb8d07a97c178b02327b284521c7708d7c71a9c9c355c178ac4bbd3d4"}, + {file = "cffi-1.14.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8b198cec6c72df5289c05b05b8b0969819783f9418e0409865dac47288d2a053"}, + {file = "cffi-1.14.5-cp38-cp38-manylinux1_i686.whl", hash = "sha256:ad17025d226ee5beec591b52800c11680fca3df50b8b29fe51d882576e039ee0"}, + {file = "cffi-1.14.5-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:6c97d7350133666fbb5cf4abdc1178c812cb205dc6f41d174a7b0f18fb93337e"}, + {file = "cffi-1.14.5-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:8ae6299f6c68de06f136f1f9e69458eae58f1dacf10af5c17353eae03aa0d827"}, + {file = "cffi-1.14.5-cp38-cp38-win32.whl", hash = "sha256:b85eb46a81787c50650f2392b9b4ef23e1f126313b9e0e9013b35c15e4288e2e"}, + {file = "cffi-1.14.5-cp38-cp38-win_amd64.whl", hash = "sha256:1f436816fc868b098b0d63b8920de7d208c90a67212546d02f84fe78a9c26396"}, + {file = "cffi-1.14.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1071534bbbf8cbb31b498d5d9db0f274f2f7a865adca4ae429e147ba40f73dea"}, + {file = "cffi-1.14.5-cp39-cp39-manylinux1_i686.whl", hash = "sha256:9de2e279153a443c656f2defd67769e6d1e4163952b3c622dcea5b08a6405322"}, + {file = "cffi-1.14.5-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:6e4714cc64f474e4d6e37cfff31a814b509a35cb17de4fb1999907575684479c"}, + {file = "cffi-1.14.5-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:158d0d15119b4b7ff6b926536763dc0714313aa59e320ddf787502c70c4d4bee"}, + {file = "cffi-1.14.5-cp39-cp39-win32.whl", hash = "sha256:afb29c1ba2e5a3736f1c301d9d0abe3ec8b86957d04ddfa9d7a6a42b9367e396"}, + {file = "cffi-1.14.5-cp39-cp39-win_amd64.whl", hash = "sha256:f2d45f97ab6bb54753eab54fffe75aaf3de4ff2341c9daee1987ee1837636f1d"}, + {file = "cffi-1.14.5.tar.gz", hash = "sha256:fd78e5fee591709f32ef6edb9a015b4aa1a5022598e36227500c8f4e02328d9c"}, +] +cfgv = [ + {file = "cfgv-3.2.0-py2.py3-none-any.whl", hash = "sha256:32e43d604bbe7896fe7c248a9c2276447dbef840feb28fe20494f62af110211d"}, + {file = "cfgv-3.2.0.tar.gz", hash = "sha256:cf22deb93d4bcf92f345a5c3cd39d3d41d6340adc60c78bbbd6588c384fda6a1"}, +] +chardet = [ + {file = "chardet-4.0.0-py2.py3-none-any.whl", hash = "sha256:f864054d66fd9118f2e67044ac8981a54775ec5b67aed0441892edb553d21da5"}, + {file = "chardet-4.0.0.tar.gz", hash = "sha256:0d6f53a15db4120f2b08c94f11e7d93d2c911ee118b6b30a04ec3ee8310179fa"}, +] +cleo = [ + {file = "cleo-1.0.0a3-py3-none-any.whl", hash = "sha256:46b2f970d06caa311d1e12a1013b0ce2a8149502669ac82cbedafb9e0bfdbccd"}, + {file = "cleo-1.0.0a3.tar.gz", hash = "sha256:9c1c8dd06635c936f45e4649aa2f7581517b4d52c7a9414d1b42586e63c2fe5d"}, +] +colorama = [ + {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, + {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"}, +] +coverage = [ + {file = "coverage-5.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:b6d534e4b2ab35c9f93f46229363e17f63c53ad01330df9f2d6bd1187e5eaacf"}, + {file = "coverage-5.5-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:b7895207b4c843c76a25ab8c1e866261bcfe27bfaa20c192de5190121770672b"}, + {file = "coverage-5.5-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:c2723d347ab06e7ddad1a58b2a821218239249a9e4365eaff6649d31180c1669"}, + {file = "coverage-5.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:900fbf7759501bc7807fd6638c947d7a831fc9fdf742dc10f02956ff7220fa90"}, + {file = "coverage-5.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:004d1880bed2d97151facef49f08e255a20ceb6f9432df75f4eef018fdd5a78c"}, + {file = "coverage-5.5-cp27-cp27m-win32.whl", hash = "sha256:06191eb60f8d8a5bc046f3799f8a07a2d7aefb9504b0209aff0b47298333302a"}, + {file = "coverage-5.5-cp27-cp27m-win_amd64.whl", hash = "sha256:7501140f755b725495941b43347ba8a2777407fc7f250d4f5a7d2a1050ba8e82"}, + {file = "coverage-5.5-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:372da284cfd642d8e08ef606917846fa2ee350f64994bebfbd3afb0040436905"}, + {file = "coverage-5.5-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:8963a499849a1fc54b35b1c9f162f4108017b2e6db2c46c1bed93a72262ed083"}, + {file = "coverage-5.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:869a64f53488f40fa5b5b9dcb9e9b2962a66a87dab37790f3fcfb5144b996ef5"}, + {file = "coverage-5.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:4a7697d8cb0f27399b0e393c0b90f0f1e40c82023ea4d45d22bce7032a5d7b81"}, + {file = "coverage-5.5-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:8d0a0725ad7c1a0bcd8d1b437e191107d457e2ec1084b9f190630a4fb1af78e6"}, + {file = "coverage-5.5-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:51cb9476a3987c8967ebab3f0fe144819781fca264f57f89760037a2ea191cb0"}, + {file = "coverage-5.5-cp310-cp310-win_amd64.whl", hash = "sha256:c0891a6a97b09c1f3e073a890514d5012eb256845c451bd48f7968ef939bf4ae"}, + {file = "coverage-5.5-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:3487286bc29a5aa4b93a072e9592f22254291ce96a9fbc5251f566b6b7343cdb"}, + {file = "coverage-5.5-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:deee1077aae10d8fa88cb02c845cfba9b62c55e1183f52f6ae6a2df6a2187160"}, + {file = "coverage-5.5-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:f11642dddbb0253cc8853254301b51390ba0081750a8ac03f20ea8103f0c56b6"}, + {file = "coverage-5.5-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:6c90e11318f0d3c436a42409f2749ee1a115cd8b067d7f14c148f1ce5574d701"}, + {file = "coverage-5.5-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:30c77c1dc9f253283e34c27935fded5015f7d1abe83bc7821680ac444eaf7793"}, + {file = "coverage-5.5-cp35-cp35m-win32.whl", hash = "sha256:9a1ef3b66e38ef8618ce5fdc7bea3d9f45f3624e2a66295eea5e57966c85909e"}, + {file = "coverage-5.5-cp35-cp35m-win_amd64.whl", hash = "sha256:972c85d205b51e30e59525694670de6a8a89691186012535f9d7dbaa230e42c3"}, + {file = "coverage-5.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:af0e781009aaf59e25c5a678122391cb0f345ac0ec272c7961dc5455e1c40066"}, + {file = "coverage-5.5-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:74d881fc777ebb11c63736622b60cb9e4aee5cace591ce274fb69e582a12a61a"}, + {file = "coverage-5.5-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:92b017ce34b68a7d67bd6d117e6d443a9bf63a2ecf8567bb3d8c6c7bc5014465"}, + {file = "coverage-5.5-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:d636598c8305e1f90b439dbf4f66437de4a5e3c31fdf47ad29542478c8508bbb"}, + {file = "coverage-5.5-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:41179b8a845742d1eb60449bdb2992196e211341818565abded11cfa90efb821"}, + {file = "coverage-5.5-cp36-cp36m-win32.whl", hash = "sha256:040af6c32813fa3eae5305d53f18875bedd079960822ef8ec067a66dd8afcd45"}, + {file = "coverage-5.5-cp36-cp36m-win_amd64.whl", hash = "sha256:5fec2d43a2cc6965edc0bb9e83e1e4b557f76f843a77a2496cbe719583ce8184"}, + {file = "coverage-5.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:18ba8bbede96a2c3dde7b868de9dcbd55670690af0988713f0603f037848418a"}, + {file = "coverage-5.5-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:2910f4d36a6a9b4214bb7038d537f015346f413a975d57ca6b43bf23d6563b53"}, + {file = "coverage-5.5-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:f0b278ce10936db1a37e6954e15a3730bea96a0997c26d7fee88e6c396c2086d"}, + {file = "coverage-5.5-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:796c9c3c79747146ebd278dbe1e5c5c05dd6b10cc3bcb8389dfdf844f3ead638"}, + {file = "coverage-5.5-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:53194af30d5bad77fcba80e23a1441c71abfb3e01192034f8246e0d8f99528f3"}, + {file = "coverage-5.5-cp37-cp37m-win32.whl", hash = "sha256:184a47bbe0aa6400ed2d41d8e9ed868b8205046518c52464fde713ea06e3a74a"}, + {file = "coverage-5.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2949cad1c5208b8298d5686d5a85b66aae46d73eec2c3e08c817dd3513e5848a"}, + {file = "coverage-5.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:217658ec7187497e3f3ebd901afdca1af062b42cfe3e0dafea4cced3983739f6"}, + {file = "coverage-5.5-cp38-cp38-manylinux1_i686.whl", hash = "sha256:1aa846f56c3d49205c952d8318e76ccc2ae23303351d9270ab220004c580cfe2"}, + {file = "coverage-5.5-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:24d4a7de75446be83244eabbff746d66b9240ae020ced65d060815fac3423759"}, + {file = "coverage-5.5-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:d1f8bf7b90ba55699b3a5e44930e93ff0189aa27186e96071fac7dd0d06a1873"}, + {file = "coverage-5.5-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:970284a88b99673ccb2e4e334cfb38a10aab7cd44f7457564d11898a74b62d0a"}, + {file = "coverage-5.5-cp38-cp38-win32.whl", hash = "sha256:01d84219b5cdbfc8122223b39a954820929497a1cb1422824bb86b07b74594b6"}, + {file = "coverage-5.5-cp38-cp38-win_amd64.whl", hash = "sha256:2e0d881ad471768bf6e6c2bf905d183543f10098e3b3640fc029509530091502"}, + {file = "coverage-5.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d1f9ce122f83b2305592c11d64f181b87153fc2c2bbd3bb4a3dde8303cfb1a6b"}, + {file = "coverage-5.5-cp39-cp39-manylinux1_i686.whl", hash = "sha256:13c4ee887eca0f4c5a247b75398d4114c37882658300e153113dafb1d76de529"}, + {file = "coverage-5.5-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:52596d3d0e8bdf3af43db3e9ba8dcdaac724ba7b5ca3f6358529d56f7a166f8b"}, + {file = "coverage-5.5-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:2cafbbb3af0733db200c9b5f798d18953b1a304d3f86a938367de1567f4b5bff"}, + {file = "coverage-5.5-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:44d654437b8ddd9eee7d1eaee28b7219bec228520ff809af170488fd2fed3e2b"}, + {file = "coverage-5.5-cp39-cp39-win32.whl", hash = "sha256:d314ed732c25d29775e84a960c3c60808b682c08d86602ec2c3008e1202e3bb6"}, + {file = "coverage-5.5-cp39-cp39-win_amd64.whl", hash = "sha256:13034c4409db851670bc9acd836243aeee299949bd5673e11844befcb0149f03"}, + {file = "coverage-5.5-pp36-none-any.whl", hash = "sha256:f030f8873312a16414c0d8e1a1ddff2d3235655a2174e3648b4fa66b3f2f1079"}, + {file = "coverage-5.5-pp37-none-any.whl", hash = "sha256:2a3859cb82dcbda1cfd3e6f71c27081d18aa251d20a17d87d26d4cd216fb0af4"}, + {file = "coverage-5.5.tar.gz", hash = "sha256:ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c"}, +] +crashtest = [ + {file = "crashtest-0.3.1-py3-none-any.whl", hash = "sha256:300f4b0825f57688b47b6d70c6a31de33512eb2fa1ac614f780939aa0cf91680"}, + {file = "crashtest-0.3.1.tar.gz", hash = "sha256:42ca7b6ce88b6c7433e2ce47ea884e91ec93104a4b754998be498a8e6c3d37dd"}, +] +cryptography = [ + {file = "cryptography-3.4.7-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:3d8427734c781ea5f1b41d6589c293089704d4759e34597dce91014ac125aad1"}, + {file = "cryptography-3.4.7-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:8e56e16617872b0957d1c9742a3f94b43533447fd78321514abbe7db216aa250"}, + {file = "cryptography-3.4.7-cp36-abi3-manylinux2010_x86_64.whl", hash = "sha256:37340614f8a5d2fb9aeea67fd159bfe4f5f4ed535b1090ce8ec428b2f15a11f2"}, + {file = "cryptography-3.4.7-cp36-abi3-manylinux2014_aarch64.whl", hash = "sha256:240f5c21aef0b73f40bb9f78d2caff73186700bf1bc6b94285699aff98cc16c6"}, + {file = "cryptography-3.4.7-cp36-abi3-manylinux2014_x86_64.whl", hash = "sha256:1e056c28420c072c5e3cb36e2b23ee55e260cb04eee08f702e0edfec3fb51959"}, + {file = "cryptography-3.4.7-cp36-abi3-win32.whl", hash = "sha256:0f1212a66329c80d68aeeb39b8a16d54ef57071bf22ff4e521657b27372e327d"}, + {file = "cryptography-3.4.7-cp36-abi3-win_amd64.whl", hash = "sha256:de4e5f7f68220d92b7637fc99847475b59154b7a1b3868fb7385337af54ac9ca"}, + {file = "cryptography-3.4.7-pp36-pypy36_pp73-manylinux2010_x86_64.whl", hash = "sha256:26965837447f9c82f1855e0bc8bc4fb910240b6e0d16a664bb722df3b5b06873"}, + {file = "cryptography-3.4.7-pp36-pypy36_pp73-manylinux2014_x86_64.whl", hash = "sha256:eb8cc2afe8b05acbd84a43905832ec78e7b3873fb124ca190f574dca7389a87d"}, + {file = "cryptography-3.4.7-pp37-pypy37_pp73-manylinux2010_x86_64.whl", hash = "sha256:7ec5d3b029f5fa2b179325908b9cd93db28ab7b85bb6c1db56b10e0b54235177"}, + {file = "cryptography-3.4.7-pp37-pypy37_pp73-manylinux2014_x86_64.whl", hash = "sha256:ee77aa129f481be46f8d92a1a7db57269a2f23052d5f2433b4621bb457081cc9"}, + {file = "cryptography-3.4.7.tar.gz", hash = "sha256:3d10de8116d25649631977cb37da6cbdd2d6fa0e0281d014a5b7d337255ca713"}, +] +dataclasses = [ + {file = "dataclasses-0.8-py3-none-any.whl", hash = "sha256:0201d89fa866f68c8ebd9d08ee6ff50c0b255f8ec63a71c16fda7af82bb887bf"}, + {file = "dataclasses-0.8.tar.gz", hash = "sha256:8479067f342acf957dc82ec415d355ab5edb7e7646b90dc6e2fd1d96ad084c97"}, +] +deepdiff = [ + {file = "deepdiff-5.5.0-py3-none-any.whl", hash = "sha256:e054fed9dfe0d83d622921cbb3a3d0b3a6dd76acd2b6955433a0a2d35147774a"}, + {file = "deepdiff-5.5.0.tar.gz", hash = "sha256:dd79b81c2d84bfa33aa9d94d456b037b68daff6bb87b80dfaa1eca04da68b349"}, +] +distlib = [ + {file = "distlib-0.3.1-py2.py3-none-any.whl", hash = "sha256:8c09de2c67b3e7deef7184574fc060ab8a793e7adbb183d942c389c8b13c52fb"}, + {file = "distlib-0.3.1.zip", hash = "sha256:edf6116872c863e1aa9d5bb7cb5e05a022c519a4594dc703843343a9ddd9bff1"}, +] +entrypoints = [ + {file = "entrypoints-0.3-py2.py3-none-any.whl", hash = "sha256:589f874b313739ad35be6e0cd7efde2a4e9b6fea91edcc34e58ecbb8dbe56d19"}, + {file = "entrypoints-0.3.tar.gz", hash = "sha256:c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451"}, +] +filelock = [ + {file = "filelock-3.0.12-py3-none-any.whl", hash = "sha256:929b7d63ec5b7d6b71b0fa5ac14e030b3f70b75747cef1b10da9b879fef15836"}, + {file = "filelock-3.0.12.tar.gz", hash = "sha256:18d82244ee114f543149c66a6e0c14e9c4f8a1044b5cdaadd0f82159d6a6ff59"}, +] +html5lib = [ + {file = "html5lib-1.1-py2.py3-none-any.whl", hash = "sha256:0d78f8fde1c230e99fe37986a60526d7049ed4bf8a9fadbad5f00e22e58e041d"}, + {file = "html5lib-1.1.tar.gz", hash = "sha256:b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c184146f"}, +] +httpretty = [ + {file = "httpretty-1.0.5.tar.gz", hash = "sha256:e53c927c4d3d781a0761727f1edfad64abef94e828718e12b672a678a8b3e0b5"}, +] +identify = [ + {file = "identify-2.2.4-py2.py3-none-any.whl", hash = "sha256:ad9f3fa0c2316618dc4d840f627d474ab6de106392a4f00221820200f490f5a8"}, + {file = "identify-2.2.4.tar.gz", hash = "sha256:9bcc312d4e2fa96c7abebcdfb1119563b511b5e3985ac52f60d9116277865b2e"}, +] +idna = [ + {file = "idna-2.10-py2.py3-none-any.whl", hash = "sha256:b97d804b1e9b523befed77c48dacec60e6dcb0b5391d57af6a65a312a90648c0"}, + {file = "idna-2.10.tar.gz", hash = "sha256:b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6"}, +] +importlib-metadata = [ + {file = "importlib_metadata-1.7.0-py2.py3-none-any.whl", hash = "sha256:dc15b2969b4ce36305c51eebe62d418ac7791e9a157911d58bfb1f9ccd8e2070"}, + {file = "importlib_metadata-1.7.0.tar.gz", hash = "sha256:90bb658cdbbf6d1735b6341ce708fc7024a3e14e99ffdc5783edea9f9b077f83"}, +] +importlib-resources = [ + {file = "importlib_resources-5.1.2-py3-none-any.whl", hash = "sha256:ebab3efe74d83b04d6bf5cd9a17f0c5c93e60fb60f30c90f56265fce4682a469"}, + {file = "importlib_resources-5.1.2.tar.gz", hash = "sha256:642586fc4740bd1cad7690f836b3321309402b20b332529f25617ff18e8e1370"}, +] +iniconfig = [ + {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, + {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, +] +jeepney = [ + {file = "jeepney-0.6.0-py3-none-any.whl", hash = "sha256:aec56c0eb1691a841795111e184e13cad504f7703b9a64f63020816afa79a8ae"}, + {file = "jeepney-0.6.0.tar.gz", hash = "sha256:7d59b6622675ca9e993a6bd38de845051d315f8b0c72cca3aef733a20b648657"}, +] +keyring = [ + {file = "keyring-22.3.0-py3-none-any.whl", hash = "sha256:2bc8363ebdd63886126a012057a85c8cb6e143877afa02619ac7dbc9f38a207b"}, + {file = "keyring-22.3.0.tar.gz", hash = "sha256:16927a444b2c73f983520a48dec79ddab49fe76429ea05b8d528d778c8339522"}, +] +lockfile = [ + {file = "lockfile-0.12.2-py2.py3-none-any.whl", hash = "sha256:6c3cb24f344923d30b2785d5ad75182c8ea7ac1b6171b08657258ec7429d50fa"}, + {file = "lockfile-0.12.2.tar.gz", hash = "sha256:6aed02de03cba24efabcd600b30540140634fc06cfa603822d508d5361e9f799"}, +] +msgpack = [ + {file = "msgpack-1.0.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:b6d9e2dae081aa35c44af9c4298de4ee72991305503442a5c74656d82b581fe9"}, + {file = "msgpack-1.0.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:a99b144475230982aee16b3d249170f1cccebf27fb0a08e9f603b69637a62192"}, + {file = "msgpack-1.0.2-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:1026dcc10537d27dd2d26c327e552f05ce148977e9d7b9f1718748281b38c841"}, + {file = "msgpack-1.0.2-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:fe07bc6735d08e492a327f496b7850e98cb4d112c56df69b0c844dbebcbb47f6"}, + {file = "msgpack-1.0.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:9ea52fff0473f9f3000987f313310208c879493491ef3ccf66268eff8d5a0326"}, + {file = "msgpack-1.0.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:26a1759f1a88df5f1d0b393eb582ec022326994e311ba9c5818adc5374736439"}, + {file = "msgpack-1.0.2-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:497d2c12426adcd27ab83144057a705efb6acc7e85957a51d43cdcf7f258900f"}, + {file = "msgpack-1.0.2-cp36-cp36m-win32.whl", hash = "sha256:e89ec55871ed5473a041c0495b7b4e6099f6263438e0bd04ccd8418f92d5d7f2"}, + {file = "msgpack-1.0.2-cp36-cp36m-win_amd64.whl", hash = "sha256:a4355d2193106c7aa77c98fc955252a737d8550320ecdb2e9ac701e15e2943bc"}, + {file = "msgpack-1.0.2-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:d6c64601af8f3893d17ec233237030e3110f11b8a962cb66720bf70c0141aa54"}, + {file = "msgpack-1.0.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:f484cd2dca68502de3704f056fa9b318c94b1539ed17a4c784266df5d6978c87"}, + {file = "msgpack-1.0.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:f3e6aaf217ac1c7ce1563cf52a2f4f5d5b1f64e8729d794165db71da57257f0c"}, + {file = "msgpack-1.0.2-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:8521e5be9e3b93d4d5e07cb80b7e32353264d143c1f072309e1863174c6aadb1"}, + {file = "msgpack-1.0.2-cp37-cp37m-win32.whl", hash = "sha256:31c17bbf2ae5e29e48d794c693b7ca7a0c73bd4280976d408c53df421e838d2a"}, + {file = "msgpack-1.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:8ffb24a3b7518e843cd83538cf859e026d24ec41ac5721c18ed0c55101f9775b"}, + {file = "msgpack-1.0.2-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:b28c0876cce1466d7c2195d7658cf50e4730667196e2f1355c4209444717ee06"}, + {file = "msgpack-1.0.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:87869ba567fe371c4555d2e11e4948778ab6b59d6cc9d8460d543e4cfbbddd1c"}, + {file = "msgpack-1.0.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:b55f7db883530b74c857e50e149126b91bb75d35c08b28db12dcb0346f15e46e"}, + {file = "msgpack-1.0.2-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:ac25f3e0513f6673e8b405c3a80500eb7be1cf8f57584be524c4fa78fe8e0c83"}, + {file = "msgpack-1.0.2-cp38-cp38-win32.whl", hash = "sha256:0cb94ee48675a45d3b86e61d13c1e6f1696f0183f0715544976356ff86f741d9"}, + {file = "msgpack-1.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:e36a812ef4705a291cdb4a2fd352f013134f26c6ff63477f20235138d1d21009"}, + {file = "msgpack-1.0.2-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:2a5866bdc88d77f6e1370f82f2371c9bc6fc92fe898fa2dec0c5d4f5435a2694"}, + {file = "msgpack-1.0.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:92be4b12de4806d3c36810b0fe2aeedd8d493db39e2eb90742b9c09299eb5759"}, + {file = "msgpack-1.0.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:de6bd7990a2c2dabe926b7e62a92886ccbf809425c347ae7de277067f97c2887"}, + {file = "msgpack-1.0.2-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:5a9ee2540c78659a1dd0b110f73773533ee3108d4e1219b5a15a8d635b7aca0e"}, + {file = "msgpack-1.0.2-cp39-cp39-win32.whl", hash = "sha256:c747c0cc08bd6d72a586310bda6ea72eeb28e7505990f342552315b229a19b33"}, + {file = "msgpack-1.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:d8167b84af26654c1124857d71650404336f4eb5cc06900667a493fc619ddd9f"}, + {file = "msgpack-1.0.2.tar.gz", hash = "sha256:fae04496f5bc150eefad4e9571d1a76c55d021325dcd484ce45065ebbdd00984"}, +] +nodeenv = [ + {file = "nodeenv-1.6.0-py2.py3-none-any.whl", hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7"}, + {file = "nodeenv-1.6.0.tar.gz", hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b"}, +] +ordered-set = [ + {file = "ordered-set-4.0.2.tar.gz", hash = "sha256:ba93b2df055bca202116ec44b9bead3df33ea63a7d5827ff8e16738b97f33a95"}, +] +packaging = [ + {file = "packaging-20.9-py2.py3-none-any.whl", hash = "sha256:67714da7f7bc052e064859c05c595155bd1ee9f69f76557e21f051443c20947a"}, + {file = "packaging-20.9.tar.gz", hash = "sha256:5b327ac1320dc863dca72f4514ecc086f31186744b84a230374cc1fd776feae5"}, +] +pexpect = [ + {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, + {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, +] +pkginfo = [ + {file = "pkginfo-1.7.0-py2.py3-none-any.whl", hash = "sha256:9fdbea6495622e022cc72c2e5e1b735218e4ffb2a2a69cde2694a6c1f16afb75"}, + {file = "pkginfo-1.7.0.tar.gz", hash = "sha256:029a70cb45c6171c329dfc890cde0879f8c52d6f3922794796e06f577bb03db4"}, +] +pluggy = [ + {file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"}, + {file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"}, +] +poetry-core = [] +pre-commit = [ + {file = "pre_commit-2.12.1-py2.py3-none-any.whl", hash = "sha256:70c5ec1f30406250b706eda35e868b87e3e4ba099af8787e3e8b4b01e84f4712"}, + {file = "pre_commit-2.12.1.tar.gz", hash = "sha256:900d3c7e1bf4cf0374bb2893c24c23304952181405b4d88c9c40b72bda1bb8a9"}, +] +ptyprocess = [ + {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, + {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, +] +py = [ + {file = "py-1.10.0-py2.py3-none-any.whl", hash = "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a"}, + {file = "py-1.10.0.tar.gz", hash = "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3"}, +] +pycparser = [ + {file = "pycparser-2.20-py2.py3-none-any.whl", hash = "sha256:7582ad22678f0fcd81102833f60ef8d0e57288b6b5fb00323d101be910e35705"}, + {file = "pycparser-2.20.tar.gz", hash = "sha256:2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0"}, +] +pylev = [ + {file = "pylev-1.3.0-py2.py3-none-any.whl", hash = "sha256:1d29a87beb45ebe1e821e7a3b10da2b6b2f4c79b43f482c2df1a1f748a6e114e"}, + {file = "pylev-1.3.0.tar.gz", hash = "sha256:063910098161199b81e453025653ec53556c1be7165a9b7c50be2f4d57eae1c3"}, +] +pyparsing = [ + {file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"}, + {file = "pyparsing-2.4.7.tar.gz", hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"}, +] +pytest = [ + {file = "pytest-6.2.4-py3-none-any.whl", hash = "sha256:91ef2131a9bd6be8f76f1f08eac5c5317221d6ad1e143ae03894b862e8976890"}, + {file = "pytest-6.2.4.tar.gz", hash = "sha256:50bcad0a0b9c5a72c8e4e7c9855a3ad496ca6a881a3641b4260605450772c54b"}, +] +pytest-cov = [ + {file = "pytest-cov-2.11.1.tar.gz", hash = "sha256:359952d9d39b9f822d9d29324483e7ba04a3a17dd7d05aa6beb7ea01e359e5f7"}, + {file = "pytest_cov-2.11.1-py2.py3-none-any.whl", hash = "sha256:bdb9fdb0b85a7cc825269a4c56b48ccaa5c7e365054b6038772c32ddcdc969da"}, +] +pytest-mock = [ + {file = "pytest-mock-3.6.1.tar.gz", hash = "sha256:40217a058c52a63f1042f0784f62009e976ba824c418cced42e88d5f40ab0e62"}, + {file = "pytest_mock-3.6.1-py3-none-any.whl", hash = "sha256:30c2f2cc9759e76eee674b81ea28c9f0b94f8f0445a1b87762cadf774f0df7e3"}, +] +pytest-sugar = [ + {file = "pytest-sugar-0.9.4.tar.gz", hash = "sha256:b1b2186b0a72aada6859bea2a5764145e3aaa2c1cfbb23c3a19b5f7b697563d3"}, +] +pywin32-ctypes = [ + {file = "pywin32-ctypes-0.2.0.tar.gz", hash = "sha256:24ffc3b341d457d48e8922352130cf2644024a4ff09762a2261fd34c36ee5942"}, + {file = "pywin32_ctypes-0.2.0-py2.py3-none-any.whl", hash = "sha256:9dc2d991b3479cc2df15930958b674a48a227d5361d413827a4cfd0b5876fc98"}, +] +pyyaml = [ + {file = "PyYAML-5.4.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:3b2b1824fe7112845700f815ff6a489360226a5609b96ec2190a45e62a9fc922"}, + {file = "PyYAML-5.4.1-cp27-cp27m-win32.whl", hash = "sha256:129def1b7c1bf22faffd67b8f3724645203b79d8f4cc81f674654d9902cb4393"}, + {file = "PyYAML-5.4.1-cp27-cp27m-win_amd64.whl", hash = "sha256:4465124ef1b18d9ace298060f4eccc64b0850899ac4ac53294547536533800c8"}, + {file = "PyYAML-5.4.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:bb4191dfc9306777bc594117aee052446b3fa88737cd13b7188d0e7aa8162185"}, + {file = "PyYAML-5.4.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:6c78645d400265a062508ae399b60b8c167bf003db364ecb26dcab2bda048253"}, + {file = "PyYAML-5.4.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:4e0583d24c881e14342eaf4ec5fbc97f934b999a6828693a99157fde912540cc"}, + {file = "PyYAML-5.4.1-cp36-cp36m-win32.whl", hash = "sha256:3bd0e463264cf257d1ffd2e40223b197271046d09dadf73a0fe82b9c1fc385a5"}, + {file = "PyYAML-5.4.1-cp36-cp36m-win_amd64.whl", hash = "sha256:e4fac90784481d221a8e4b1162afa7c47ed953be40d31ab4629ae917510051df"}, + {file = "PyYAML-5.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5accb17103e43963b80e6f837831f38d314a0495500067cb25afab2e8d7a4018"}, + {file = "PyYAML-5.4.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:e1d4970ea66be07ae37a3c2e48b5ec63f7ba6804bdddfdbd3cfd954d25a82e63"}, + {file = "PyYAML-5.4.1-cp37-cp37m-win32.whl", hash = "sha256:dd5de0646207f053eb0d6c74ae45ba98c3395a571a2891858e87df7c9b9bd51b"}, + {file = "PyYAML-5.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:08682f6b72c722394747bddaf0aa62277e02557c0fd1c42cb853016a38f8dedf"}, + {file = "PyYAML-5.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d2d9808ea7b4af864f35ea216be506ecec180628aced0704e34aca0b040ffe46"}, + {file = "PyYAML-5.4.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:8c1be557ee92a20f184922c7b6424e8ab6691788e6d86137c5d93c1a6ec1b8fb"}, + {file = "PyYAML-5.4.1-cp38-cp38-win32.whl", hash = "sha256:fa5ae20527d8e831e8230cbffd9f8fe952815b2b7dae6ffec25318803a7528fc"}, + {file = "PyYAML-5.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:0f5f5786c0e09baddcd8b4b45f20a7b5d61a7e7e99846e3c799b05c7c53fa696"}, + {file = "PyYAML-5.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:294db365efa064d00b8d1ef65d8ea2c3426ac366c0c4368d930bf1c5fb497f77"}, + {file = "PyYAML-5.4.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:74c1485f7707cf707a7aef42ef6322b8f97921bd89be2ab6317fd782c2d53183"}, + {file = "PyYAML-5.4.1-cp39-cp39-win32.whl", hash = "sha256:49d4cdd9065b9b6e206d0595fee27a96b5dd22618e7520c33204a4a3239d5b10"}, + {file = "PyYAML-5.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:c20cfa2d49991c8b4147af39859b167664f2ad4561704ee74c1de03318e898db"}, + {file = "PyYAML-5.4.1.tar.gz", hash = "sha256:607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e"}, +] +requests = [ + {file = "requests-2.25.1-py2.py3-none-any.whl", hash = "sha256:c210084e36a42ae6b9219e00e48287def368a26d03a048ddad7bfee44f75871e"}, + {file = "requests-2.25.1.tar.gz", hash = "sha256:27973dd4a904a4f13b263a19c866c13b92a39ed1c964655f025f3f8d3d75b804"}, +] +requests-toolbelt = [ + {file = "requests-toolbelt-0.9.1.tar.gz", hash = "sha256:968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0"}, + {file = "requests_toolbelt-0.9.1-py2.py3-none-any.whl", hash = "sha256:380606e1d10dc85c3bd47bf5a6095f815ec007be7a8b69c878507068df059e6f"}, +] +secretstorage = [ + {file = "SecretStorage-3.3.1-py3-none-any.whl", hash = "sha256:422d82c36172d88d6a0ed5afdec956514b189ddbfb72fefab0c8a1cee4eaf71f"}, + {file = "SecretStorage-3.3.1.tar.gz", hash = "sha256:fd666c51a6bf200643495a04abb261f83229dcb6fd8472ec393df7ffc8b6f195"}, +] +shellingham = [ + {file = "shellingham-1.4.0-py2.py3-none-any.whl", hash = "sha256:536b67a0697f2e4af32ab176c00a50ac2899c5a05e0d8e2dadac8e58888283f9"}, + {file = "shellingham-1.4.0.tar.gz", hash = "sha256:4855c2458d6904829bd34c299f11fdeed7cfefbf8a2c522e4caea6cd76b3171e"}, +] +six = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] +termcolor = [ + {file = "termcolor-1.1.0.tar.gz", hash = "sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"}, +] +toml = [ + {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, + {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, +] +tomlkit = [ + {file = "tomlkit-0.7.0-py2.py3-none-any.whl", hash = "sha256:6babbd33b17d5c9691896b0e68159215a9387ebfa938aa3ac42f4a4beeb2b831"}, + {file = "tomlkit-0.7.0.tar.gz", hash = "sha256:ac57f29693fab3e309ea789252fcce3061e19110085aa31af5446ca749325618"}, +] +tox = [ + {file = "tox-3.23.1-py2.py3-none-any.whl", hash = "sha256:b0b5818049a1c1997599d42012a637a33f24c62ab8187223fdd318fa8522637b"}, + {file = "tox-3.23.1.tar.gz", hash = "sha256:307a81ddb82bd463971a273f33e9533a24ed22185f27db8ce3386bff27d324e3"}, +] +urllib3 = [ + {file = "urllib3-1.26.4-py2.py3-none-any.whl", hash = "sha256:2f4da4594db7e1e110a944bb1b551fdf4e6c136ad42e4234131391e21eb5b0df"}, + {file = "urllib3-1.26.4.tar.gz", hash = "sha256:e7b021f7241115872f92f43c6508082facffbd1c048e3c6e2bb9c2a157e28937"}, +] +virtualenv = [ + {file = "virtualenv-20.4.4-py2.py3-none-any.whl", hash = "sha256:a935126db63128861987a7d5d30e23e8ec045a73840eeccb467c148514e29535"}, + {file = "virtualenv-20.4.4.tar.gz", hash = "sha256:09c61377ef072f43568207dc8e46ddeac6bcdcaf288d49011bda0e7f4d38c4a2"}, +] +webencodings = [ + {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, + {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, +] +zipp = [ + {file = "zipp-3.4.1-py3-none-any.whl", hash = "sha256:51cb66cc54621609dd593d1787f286ee42a5c0adbb4b29abea5a63edc3e03098"}, + {file = "zipp-3.4.1.tar.gz", hash = "sha256:3607921face881ba3e026887d8150cca609d517579abe052ac81fc5aeffdbd76"}, +] diff --git a/integration/data/lockfile/yarn.lock b/integration/data/lockfile/yarn.lock new file mode 100644 index 00000000..ba12cd01 --- /dev/null +++ b/integration/data/lockfile/yarn.lock @@ -0,0 +1,6144 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@^7.0.0-beta.35": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" + integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== + dependencies: + "@babel/highlight" "^7.0.0" + +"@babel/highlight@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" + integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== + dependencies: + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^4.0.0" + +"@marblejs/core@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@marblejs/core/-/core-2.1.0.tgz#596847829cd0ec6710b7c4964adee1019cb7ac91" + integrity sha512-RugcCK8bASfxhI/dZeLDDKEEVkN2aRG8Y2Nk2TnJHXqvmYcUsgjmpJwQLrbvx3+BREiJaurGRtaabbNM8bWC5w== + dependencies: + "@types/qs" "^6.5.1" + "@types/uuid" "^3.4.4" + chalk "~2.4.1" + file-type "^8.0.0" + fp-ts "1.15.0" + mime "^2.3.1" + path-to-regexp "^2.4.0" + qs "^6.6.0" + uuid "^3.3.2" + +"@marblejs/middleware-body@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@marblejs/middleware-body/-/middleware-body-2.1.0.tgz#89801cc2b21186f206560e471785f2b1b6b8de52" + integrity sha512-E2XNI/7KSwFBkPIde7NQRHHO+Vo7gQf7V1y9g4+4rwH+rgqPxOMEz7XtDTL8f0IAdDqBT60n4v8DPGQbwGCv1g== + dependencies: + "@types/qs" "^6.5.1" + "@types/type-is" "~1.6.2" + qs "^6.6.0" + type-is "~1.6.16" + +"@marblejs/middleware-cors@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@marblejs/middleware-cors/-/middleware-cors-2.1.0.tgz#ea40cbd271b4e7bf171f96b86eabdf3cb4309dc4" + integrity sha512-bY0LkkMdlXGmF9kBae1gW0AHzIGNpPsF56A51l5bDMT3hiwyWgosAynW4p265Ps4qNro6+oqoOXTIMYSZwIGaA== + +"@marblejs/middleware-io@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@marblejs/middleware-io/-/middleware-io-2.1.0.tgz#ade98a304a394fe4af7408eea00353241fcd7b45" + integrity sha512-ZJAtZ7k5iygXnTH3KzXgvjRKLRW8PQFHeuz5DFybwOP85lCdZ7MEbp4ZRMz4GNsrKVRI0LCpu+dEEhgDsqnb2w== + dependencies: + io-ts "1.8.5" + +"@marblejs/middleware-jwt@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@marblejs/middleware-jwt/-/middleware-jwt-2.1.0.tgz#86885a44211f6611ff231b1721550a7a98d79896" + integrity sha512-11YyQRd54S4lwkqu3NVyKI68WnJnW08tiF0i4eTyLpgO2vD5obqRUxQL5DluiHii2QjSd74vv485DdGjzlecww== + dependencies: + "@types/jsonwebtoken" "^7.2.8" + jsonwebtoken "^8.3.0" + +"@marblejs/middleware-logger@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@marblejs/middleware-logger/-/middleware-logger-2.1.0.tgz#db9d2bdd2a37230feaa7760f9985a3e14c101931" + integrity sha512-WAg7xHvZn0V8ZszUmzV8EB085BCWA0rbbTTcS+oP/HIWI5EK/kFxN7ZLpeOWD7eulrNmNhODaxurItoIaRRtiA== + dependencies: + chalk "^2.4.1" + +"@samverschueren/stream-to-observable@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz#ecdf48d532c58ea477acfcab80348424f8d0662f" + integrity sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg== + dependencies: + any-observable "^0.3.0" + +"@sindresorhus/is@^0.7.0": + version "0.7.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd" + integrity sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow== + +"@types/bson@*": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@types/bson/-/bson-1.0.11.tgz#c95ad69bb0b3f5c33b4bb6cc86d86cafb273335c" + integrity sha512-j+UcCWI+FsbI5/FQP/Kj2CXyplWAz39ktHFkXk84h7dNblKRSoNJs95PZFRd96NQGqsPEPgeclqnznWZr14ZDA== + dependencies: + "@types/node" "*" + +"@types/cookiejar@*": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@types/cookiejar/-/cookiejar-2.1.0.tgz#4b7daf2c51696cfc70b942c11690528229d1a1ce" + integrity sha512-EIjmpvnHj+T4nMcKwHwxZKUfDmphIKJc2qnEMhSoOvr1lYEQpuRKRz8orWr//krYIIArS/KGGLfL2YGVUYXmIA== + +"@types/faker@^4.1.4": + version "4.1.4" + resolved "https://registry.yarnpkg.com/@types/faker/-/faker-4.1.4.tgz#5e5bcd81a6ecf85fb6150f7eb857e755a09fd91f" + integrity sha512-6vQk2Ky+s3oehh//1bB/4I4ApYcRN2dLcHm0fuUOcXvnv9fXCfSKkI6K/dRicJkyjcAO23r4lAwbk9j9fOB0Ug== + +"@types/jest@^23.3.1": + version "23.3.10" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-23.3.10.tgz#4897974cc317bf99d4fe6af1efa15957fa9c94de" + integrity sha512-DC8xTuW/6TYgvEg3HEXS7cu9OijFqprVDXXiOcdOKZCU/5PJNLZU37VVvmZHdtMiGOa8wAA/We+JzbdxFzQTRQ== + +"@types/joi@^13.6.0": + version "13.6.3" + resolved "https://registry.yarnpkg.com/@types/joi/-/joi-13.6.3.tgz#79364839a9cc2c6d4d915ef8822e1f703e28648f" + integrity sha512-n5tDa0/3MUtHsA2fVH+emDfGQkPramIpWaOvWS+7C/Yq7bn2j979RAIy9pbl4F4hSE5lwjgBXhJN019DP+3ofg== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= + +"@types/jsonwebtoken@^7.2.8": + version "7.2.8" + resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-7.2.8.tgz#8d199dab4ddb5bba3234f8311b804d2027af2b3a" + integrity sha512-XENN3YzEB8D6TiUww0O8SRznzy1v+77lH7UmuN54xq/IHIsyWjWOzZuFFTtoiRuaE782uAoRwBe/wwow+vQXZw== + dependencies: + "@types/node" "*" + +"@types/mock-fs@^3.6.30": + version "3.6.30" + resolved "http://registry.npmjs.org/@types/mock-fs/-/mock-fs-3.6.30.tgz#4d812541e87b23577261a5aa95f704dd3d01e410" + integrity sha1-TYElQeh7I1dyYaWqlfcE3T0B5BA= + dependencies: + "@types/node" "*" + +"@types/mongodb@*": + version "3.1.17" + resolved "https://registry.yarnpkg.com/@types/mongodb/-/mongodb-3.1.17.tgz#11351b147b68e7674cff9055ea82072521bc6fe3" + integrity sha512-u6tSIpfdsgK74aE0TuyqZYhHscw+gHs6dQNSsFUTFXubhhxCqovmV3nJRS0YKSw0sfqbzUgGzbG5+yorUPRnFg== + dependencies: + "@types/bson" "*" + "@types/node" "*" + +"@types/mongoose@^5.2.12": + version "5.3.3" + resolved "https://registry.yarnpkg.com/@types/mongoose/-/mongoose-5.3.3.tgz#544d8277e1ffe0c51134afa8d6aee20a10b0933f" + integrity sha512-otsck0ymHaLYXZdv1WyfCI/4zmDQyMajiPq63r0Do3D0AVNXYJo9YpSpMAlNbebpJ3fWk09QuSV6illg5TRmfA== + dependencies: + "@types/mongodb" "*" + "@types/node" "*" + +"@types/node@*", "@types/node@^10.1.2": + version "10.12.12" + resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.12.tgz#e15a9d034d9210f00320ef718a50c4a799417c47" + integrity sha512-Pr+6JRiKkfsFvmU/LK68oBRCQeEg36TyAbPhc2xpez24OOZZCuoIhWGTd39VZy6nGafSbxzGouFPTFD/rR1A0A== + +"@types/qs@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.5.1.tgz#a38f69c62528d56ba7bd1f91335a8004988d72f7" + integrity sha512-mNhVdZHdtKHMMxbqzNK3RzkBcN1cux3AvuCYGTvjEIQT2uheH3eCAyYsbMbh2Bq8nXkeOWs1kyDiF7geWRFQ4Q== + +"@types/superagent@*": + version "3.8.5" + resolved "https://registry.yarnpkg.com/@types/superagent/-/superagent-3.8.5.tgz#a8eb8ec5bce0234e50d6b8bee1941b5bb5686e2d" + integrity sha512-h7dQyzEGQFY3Ya8pIu0fxcWaMWC2DDSKR78gHrh6GVnXUqXo/+93wd4RObXA13rKp4ETyym3yq2A0AxROx9AxQ== + dependencies: + "@types/cookiejar" "*" + "@types/node" "*" + +"@types/supertest@^2.0.4": + version "2.0.7" + resolved "https://registry.yarnpkg.com/@types/supertest/-/supertest-2.0.7.tgz#46ff6508075cd4519736be060f0d6331a5c8ca7b" + integrity sha512-GibTh4OTkal71btYe2fpZP/rVHIPnnUsYphEaoywVHo+mo2a/LhlOFkIm5wdN0H0DA0Hx8x+tKgCYMD9elHu5w== + dependencies: + "@types/superagent" "*" + +"@types/type-is@~1.6.2": + version "1.6.2" + resolved "https://registry.yarnpkg.com/@types/type-is/-/type-is-1.6.2.tgz#38ee37fed94b4d2b88650292c3941600bda2815f" + integrity sha512-q8d51ZdF/D8xebrtNDsZH+4XBUFdz8xEgWhE4U4F4WWmcBZ8+i/r/qs9DmjAprYh5qQTYlY4BxaVKDrWIwNQ9w== + dependencies: + "@types/node" "*" + +"@types/uuid@^3.4.4": + version "3.4.4" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-3.4.4.tgz#7af69360fa65ef0decb41fd150bf4ca5c0cefdf5" + integrity sha512-tPIgT0GUmdJQNSHxp0X2jnpQfBSTfGxUMc/2CXBU2mnyTFVYVa2ojpoQ74w0U2yn2vw3jnC640+77lkFFpdVDw== + dependencies: + "@types/node" "*" + +JSONStream@^1.0.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +abab@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" + integrity sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w== + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +acorn-globals@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.0.tgz#e3b6f8da3c1552a95ae627571f7dd6923bb54103" + integrity sha512-hMtHj3s5RnuhvHPowpBYvJVj3rAar82JiDQHvGs1zO0l10ocX/xEdBShNHTJaboucJUsScghp74pH3s7EnHHQw== + dependencies: + acorn "^6.0.1" + acorn-walk "^6.0.1" + +acorn-walk@^6.0.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913" + integrity sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw== + +acorn@^5.5.3: + version "5.7.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" + integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== + +acorn@^6.0.1: + version "6.0.4" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.4.tgz#77377e7353b72ec5104550aa2d2097a2fd40b754" + integrity sha512-VY4i5EKSKkofY2I+6QLTbTTN/UvEQPCo6eiwzzSaSWfpaDhOmStMCMod6wmuPciNq+XS0faCglFu2lHZpdHUtg== + +add-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" + integrity sha1-anmQQ3ynNtXhKI25K9MmbV9csqo= + +ajv@^6.5.5: + version "6.6.1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.6.1.tgz#6360f5ed0d80f232cc2b294c362d5dc2e538dd61" + integrity sha512-ZoJjft5B+EJBjUyu9C9Hc0OZyPZSSlOF+plzouTrg6UlA8f+e/n8NIgBFG/9tppJtpPWfthHakK7juJdNDODww== + dependencies: + fast-deep-equal "^2.0.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-align@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" + integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= + dependencies: + string-width "^2.0.0" + +ansi-escapes@^3.0.0: + version "3.1.0" + resolved "http://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" + integrity sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw== + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +any-observable@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" + integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== + +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" + +append-transform@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" + integrity sha1-126/jKlNJ24keja61EpLdKthGZE= + dependencies: + default-require-extensions "^1.0.0" + +aproba@^1.0.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + +are-we-there-yet@~1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" + integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +arr-diff@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" + integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= + dependencies: + arr-flatten "^1.0.1" + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= + +arr-flatten@^1.0.1, arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= + +array-equal@^1.0.0: + version "1.0.0" + resolved "http://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= + +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= + +array-ify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" + integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4= + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= + dependencies: + array-uniq "^1.0.1" + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= + +array-unique@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= + +arrify@^1.0.0, arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= + +asn1@~0.2.3: + version "0.2.4" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" + integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== + dependencies: + safer-buffer "~2.1.0" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +async-each@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + integrity sha1-GdOGodntxufByF04iu28xW0zYC0= + +async-limiter@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" + integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== + +async@2.6.1, async@^2.1.4, async@^2.5.0: + version "2.6.1" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" + integrity sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ== + dependencies: + lodash "^4.17.10" + +async@^1.5.0: + version "1.5.2" + resolved "http://registry.npmjs.org/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" + integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + +atob@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + +aws4@^1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" + integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== + +babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + +babel-core@^6.0.0, babel-core@^6.26.0: + version "6.26.3" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" + integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA== + dependencies: + babel-code-frame "^6.26.0" + babel-generator "^6.26.0" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.26.0" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + convert-source-map "^1.5.1" + debug "^2.6.9" + json5 "^0.5.1" + lodash "^4.17.4" + minimatch "^3.0.4" + path-is-absolute "^1.0.1" + private "^0.1.8" + slash "^1.0.0" + source-map "^0.5.7" + +babel-generator@^6.18.0, babel-generator@^6.26.0: + version "6.26.1" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" + integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA== + dependencies: + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + detect-indent "^4.0.0" + jsesc "^1.3.0" + lodash "^4.17.4" + source-map "^0.5.7" + trim-right "^1.0.1" + +babel-helpers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" + integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI= + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-jest@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.6.0.tgz#a644232366557a2240a0c083da6b25786185a2f1" + integrity sha512-lqKGG6LYXYu+DQh/slrQ8nxXQkEkhugdXsU6St7GmhVS7Ilc/22ArwqXNJrf0QaOBjZB0360qZMwXqDYQHXaew== + dependencies: + babel-plugin-istanbul "^4.1.6" + babel-preset-jest "^23.2.0" + +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-istanbul@^4.1.6: + version "4.1.6" + resolved "http://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" + integrity sha512-PWP9FQ1AhZhS01T/4qLSKoHGY/xvkZdVBGlKM/HuxxS3+sC66HhTNR7+MpbO/so/cz/wY94MeSWJuP1hXIPfwQ== + dependencies: + babel-plugin-syntax-object-rest-spread "^6.13.0" + find-up "^2.1.0" + istanbul-lib-instrument "^1.10.1" + test-exclude "^4.2.1" + +babel-plugin-jest-hoist@^23.2.0: + version "23.2.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz#e61fae05a1ca8801aadee57a6d66b8cefaf44167" + integrity sha1-5h+uBaHKiAGq3uV6bWa4zvr0QWc= + +babel-plugin-syntax-object-rest-spread@^6.13.0: + version "6.13.0" + resolved "http://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" + integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U= + +babel-preset-jest@^23.2.0: + version "23.2.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.2.0.tgz#8ec7a03a138f001a1a8fb1e8113652bf1a55da46" + integrity sha1-jsegOhOPABoaj7HoETZSvxpV2kY= + dependencies: + babel-plugin-jest-hoist "^23.2.0" + babel-plugin-syntax-object-rest-spread "^6.13.0" + +babel-register@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" + integrity sha1-btAhFz4vy0htestFxgCahW9kcHE= + dependencies: + babel-core "^6.26.0" + babel-runtime "^6.26.0" + core-js "^2.5.0" + home-or-tmp "^2.0.0" + lodash "^4.17.4" + mkdirp "^0.5.1" + source-map-support "^0.4.15" + +babel-runtime@^6.22.0, babel-runtime@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= + dependencies: + babel-runtime "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + lodash "^4.17.4" + +babel-traverse@^6.0.0, babel-traverse@^6.18.0, babel-traverse@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= + dependencies: + babel-code-frame "^6.26.0" + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + debug "^2.6.8" + globals "^9.18.0" + invariant "^2.2.2" + lodash "^4.17.4" + +babel-types@^6.0.0, babel-types@^6.18.0, babel-types@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= + dependencies: + babel-runtime "^6.26.0" + esutils "^2.0.2" + lodash "^4.17.4" + to-fast-properties "^1.0.3" + +babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= + dependencies: + tweetnacl "^0.14.3" + +binary-extensions@^1.0.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.12.0.tgz#c2d780f53d45bba8317a8902d4ceeaf3a6385b14" + integrity sha512-DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg== + +bluebird@3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" + integrity sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA== + +boxen@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" + integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== + dependencies: + ansi-align "^2.0.0" + camelcase "^4.0.0" + chalk "^2.0.1" + cli-boxes "^1.0.0" + string-width "^2.0.0" + term-size "^1.2.0" + widest-line "^2.0.0" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^1.8.2: + version "1.8.5" + resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" + integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc= + dependencies: + expand-range "^1.8.1" + preserve "^0.2.0" + repeat-element "^1.1.2" + +braces@^2.3.0, braces@^2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +browser-process-hrtime@^0.1.2: + version "0.1.3" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" + integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== + +browser-resolve@^1.11.3: + version "1.11.3" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" + integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== + dependencies: + resolve "1.1.7" + +bser@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" + integrity sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk= + dependencies: + node-int64 "^0.4.0" + +bson@^1.1.0, bson@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/bson/-/bson-1.1.0.tgz#bee57d1fb6a87713471af4e32bcae36de814b5b0" + integrity sha512-9Aeai9TacfNtWXOYarkFJRW2CWo+dRon+fuLZYJmvLV3+MiUp0bEI6IAZfXEIg7/Pl/7IWlLaDnhzTsD81etQA== + +buffer-equal-constant-time@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" + integrity sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk= + +buffer-from@^1.0.0, buffer-from@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + +builtin-modules@^1.0.0, builtin-modules@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= + +byline@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/byline/-/byline-5.0.0.tgz#741c5216468eadc457b03410118ad77de8c1ddb1" + integrity sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE= + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +cacheable-request@^2.1.1: + version "2.1.4" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-2.1.4.tgz#0d808801b6342ad33c91df9d0b44dc09b91e5c3d" + integrity sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0= + dependencies: + clone-response "1.0.2" + get-stream "3.0.0" + http-cache-semantics "3.8.1" + keyv "3.0.0" + lowercase-keys "1.0.0" + normalize-url "2.0.1" + responselike "1.0.2" + +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= + dependencies: + callsites "^2.0.0" + +caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= + dependencies: + caller-callsite "^2.0.0" + +callsites@^2.0.0: + version "2.0.0" + resolved "http://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= + +camelcase-keys@^2.0.0: + version "2.1.0" + resolved "http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= + dependencies: + camelcase "^2.0.0" + map-obj "^1.0.0" + +camelcase-keys@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" + integrity sha1-oqpfsa9oh1glnDLBQUJteJI7m3c= + dependencies: + camelcase "^4.1.0" + map-obj "^2.0.0" + quick-lru "^1.0.0" + +camelcase@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= + +camelcase@^4.0.0, camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= + +capture-exit@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" + integrity sha1-HF/MSJ/QqwDU8ax64QcuMXP7q28= + dependencies: + rsvp "^3.3.3" + +capture-stack-trace@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" + integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= + +chalk@^1.0.0, chalk@^1.1.3: + version "1.1.3" + resolved "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4.1, chalk@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" + integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chardet@^0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" + integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I= + +chokidar@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26" + integrity sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ== + dependencies: + anymatch "^2.0.0" + async-each "^1.0.0" + braces "^2.3.0" + glob-parent "^3.1.0" + inherits "^2.0.1" + is-binary-path "^1.0.0" + is-glob "^4.0.0" + lodash.debounce "^4.0.8" + normalize-path "^2.1.1" + path-is-absolute "^1.0.0" + readdirp "^2.0.0" + upath "^1.0.5" + optionalDependencies: + fsevents "^1.2.2" + +chownr@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" + integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== + +ci-info@^1.5.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" + integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +cli-boxes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= + +cli-cursor@^2.0.0, cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= + dependencies: + restore-cursor "^2.0.0" + +cli-truncate@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" + integrity sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ= + dependencies: + slice-ansi "0.0.4" + string-width "^1.0.1" + +cli-width@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" + integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= + +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + +cliui@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" + integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + wrap-ansi "^2.0.0" + +clone-regexp@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/clone-regexp/-/clone-regexp-1.0.1.tgz#051805cd33173375d82118fc0918606da39fd60f" + integrity sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw== + dependencies: + is-regexp "^1.0.0" + is-supported-regexp-flag "^1.0.0" + +clone-response@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" + integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= + dependencies: + mimic-response "^1.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= + +closest-file-data@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/closest-file-data/-/closest-file-data-0.1.4.tgz#975f87c132f299d24a0375b9f63ca3fb88f72b3a" + integrity sha1-l1+HwTLymdJKA3W59jyj+4j3Kzo= + +cmd-shim@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-2.0.2.tgz#6fcbda99483a8fd15d7d30a196ca69d688a2efdb" + integrity sha1-b8vamUg6j9FdfTChlspp1oii79s= + dependencies: + graceful-fs "^4.1.2" + mkdirp "~0.5.0" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +columnify@^1.5.4: + version "1.5.4" + resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb" + integrity sha1-Rzfd8ce2mop8NAVweC6UfuyOeLs= + dependencies: + strip-ansi "^3.0.0" + wcwidth "^1.0.0" + +combined-stream@^1.0.6, combined-stream@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828" + integrity sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w== + dependencies: + delayed-stream "~1.0.0" + +command-join@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/command-join/-/command-join-2.0.0.tgz#52e8b984f4872d952ff1bdc8b98397d27c7144cf" + integrity sha1-Uui5hPSHLZUv8b3IuYOX0nxxRM8= + +commander@^2.12.1, commander@^2.14.1, commander@^2.9.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" + integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== + +commander@~2.17.1: + version "2.17.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" + integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== + +compare-func@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" + integrity sha1-md0LpFfh+bxyKxLAjsM+6rMfpkg= + dependencies: + array-ify "^1.0.0" + dot-prop "^3.0.0" + +component-emitter@^1.2.0, component-emitter@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +concat-stream@^1.4.10: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +configstore@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" + integrity sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw== + dependencies: + dot-prop "^4.1.0" + graceful-fs "^4.1.2" + make-dir "^1.0.0" + unique-string "^1.0.0" + write-file-atomic "^2.0.0" + xdg-basedir "^3.0.0" + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= + +conventional-changelog-angular@^1.6.6: + version "1.6.6" + resolved "http://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-1.6.6.tgz#b27f2b315c16d0a1f23eb181309d0e6a4698ea0f" + integrity sha512-suQnFSqCxRwyBxY68pYTsFkG0taIdinHLNEAX5ivtw8bCRnIgnpvcHmlR/yjUyZIrNPYAoXlY1WiEKWgSE4BNg== + dependencies: + compare-func "^1.3.1" + q "^1.5.1" + +conventional-changelog-atom@^0.2.8: + version "0.2.8" + resolved "http://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-0.2.8.tgz#8037693455990e3256f297320a45fa47ee553a14" + integrity sha512-8pPZqhMbrnltNBizjoDCb/Sz85KyUXNDQxuAEYAU5V/eHn0okMBVjqc8aHWYpHrytyZWvMGbayOlDv7i8kEf6g== + dependencies: + q "^1.5.1" + +conventional-changelog-cli@^1.3.13: + version "1.3.22" + resolved "https://registry.yarnpkg.com/conventional-changelog-cli/-/conventional-changelog-cli-1.3.22.tgz#13570fe1728f56f013ff7a88878ff49d5162a405" + integrity sha512-pnjdIJbxjkZ5VdAX/H1wndr1G10CY8MuZgnXuJhIHglOXfIrXygb7KZC836GW9uo1u8PjEIvIw/bKX0lOmOzZg== + dependencies: + add-stream "^1.0.0" + conventional-changelog "^1.1.24" + lodash "^4.2.1" + meow "^4.0.0" + tempfile "^1.1.1" + +conventional-changelog-codemirror@^0.3.8: + version "0.3.8" + resolved "http://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.3.8.tgz#a1982c8291f4ee4d6f2f62817c6b2ecd2c4b7b47" + integrity sha512-3HFZKtBXTaUCHvz7ai6nk2+psRIkldDoNzCsom0egDtVmPsvvHZkzjynhdQyULfacRSsBTaiQ0ol6nBOL4dDiQ== + dependencies: + q "^1.5.1" + +conventional-changelog-core@^2.0.11: + version "2.0.11" + resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-2.0.11.tgz#19b5fbd55a9697773ed6661f4e32030ed7e30287" + integrity sha512-HvTE6RlqeEZ/NFPtQeFLsIDOLrGP3bXYr7lFLMhCVsbduF1MXIe8OODkwMFyo1i9ku9NWBwVnVn0jDmIFXjDRg== + dependencies: + conventional-changelog-writer "^3.0.9" + conventional-commits-parser "^2.1.7" + dateformat "^3.0.0" + get-pkg-repo "^1.0.0" + git-raw-commits "^1.3.6" + git-remote-origin-url "^2.0.0" + git-semver-tags "^1.3.6" + lodash "^4.2.1" + normalize-package-data "^2.3.5" + q "^1.5.1" + read-pkg "^1.1.0" + read-pkg-up "^1.0.1" + through2 "^2.0.0" + +conventional-changelog-ember@^0.3.12: + version "0.3.12" + resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.3.12.tgz#b7d31851756d0fcb49b031dffeb6afa93b202400" + integrity sha512-mmJzA7uzbrOqeF89dMMi6z17O07ORTXlTMArnLG9ZTX4oLaKNolUlxFUFlFm9JUoVWajVpaHQWjxH1EOQ+ARoQ== + dependencies: + q "^1.5.1" + +conventional-changelog-eslint@^1.0.9: + version "1.0.9" + resolved "http://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-1.0.9.tgz#b13cc7e4b472c819450ede031ff1a75c0e3d07d3" + integrity sha512-h87nfVh2fdk9fJIvz26wCBsbDC/KxqCc5wSlNMZbXcARtbgNbNDIF7Y7ctokFdnxkzVdaHsbINkh548T9eBA7Q== + dependencies: + q "^1.5.1" + +conventional-changelog-express@^0.3.6: + version "0.3.6" + resolved "http://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-0.3.6.tgz#4a6295cb11785059fb09202180d0e59c358b9c2c" + integrity sha512-3iWVtBJZ9RnRnZveNDzOD8QRn6g6vUif0qVTWWyi5nUIAbuN1FfPVyKdAlJJfp5Im+dE8Kiy/d2SpaX/0X678Q== + dependencies: + q "^1.5.1" + +conventional-changelog-jquery@^0.1.0: + version "0.1.0" + resolved "http://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz#0208397162e3846986e71273b6c79c5b5f80f510" + integrity sha1-Agg5cWLjhGmG5xJztsecW1+A9RA= + dependencies: + q "^1.4.1" + +conventional-changelog-jscs@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz#0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c" + integrity sha1-BHnrRDzH1yxYvwvPDvHURKkvDlw= + dependencies: + q "^1.4.1" + +conventional-changelog-jshint@^0.3.8: + version "0.3.8" + resolved "http://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-0.3.8.tgz#9051c1ac0767abaf62a31f74d2fe8790e8acc6c8" + integrity sha512-hn9QU4ZI/5V50wKPJNPGT4gEWgiBFpV6adieILW4MaUFynuDYOvQ71EMSj3EznJyKi/KzuXpc9dGmX8njZMjig== + dependencies: + compare-func "^1.3.1" + q "^1.5.1" + +conventional-changelog-preset-loader@^1.1.8: + version "1.1.8" + resolved "http://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-1.1.8.tgz#40bb0f142cd27d16839ec6c74ee8db418099b373" + integrity sha512-MkksM4G4YdrMlT2MbTsV2F6LXu/hZR0Tc/yenRrDIKRwBl/SP7ER4ZDlglqJsCzLJi4UonBc52Bkm5hzrOVCcw== + +conventional-changelog-writer@^3.0.9: + version "3.0.9" + resolved "http://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-3.0.9.tgz#4aecdfef33ff2a53bb0cf3b8071ce21f0e994634" + integrity sha512-n9KbsxlJxRQsUnK6wIBRnARacvNnN4C/nxnxCkH+B/R1JS2Fa+DiP1dU4I59mEDEjgnFaN2+9wr1P1s7GYB5/Q== + dependencies: + compare-func "^1.3.1" + conventional-commits-filter "^1.1.6" + dateformat "^3.0.0" + handlebars "^4.0.2" + json-stringify-safe "^5.0.1" + lodash "^4.2.1" + meow "^4.0.0" + semver "^5.5.0" + split "^1.0.0" + through2 "^2.0.0" + +conventional-changelog@^1.1.24: + version "1.1.24" + resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.24.tgz#3d94c29c960f5261c002678315b756cdd3d7d1f0" + integrity sha512-2WcSUst4Y3Z4hHvoMTWXMJr/DmgVdLiMOVY1Kak2LfFz+GIz2KDp5naqbFesYbfXPmaZ5p491dO0FWZIJoJw1Q== + dependencies: + conventional-changelog-angular "^1.6.6" + conventional-changelog-atom "^0.2.8" + conventional-changelog-codemirror "^0.3.8" + conventional-changelog-core "^2.0.11" + conventional-changelog-ember "^0.3.12" + conventional-changelog-eslint "^1.0.9" + conventional-changelog-express "^0.3.6" + conventional-changelog-jquery "^0.1.0" + conventional-changelog-jscs "^0.1.0" + conventional-changelog-jshint "^0.3.8" + conventional-changelog-preset-loader "^1.1.8" + +conventional-commits-filter@^1.1.1, conventional-commits-filter@^1.1.6: + version "1.1.6" + resolved "http://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-1.1.6.tgz#4389cd8e58fe89750c0b5fb58f1d7f0cc8ad3831" + integrity sha512-KcDgtCRKJCQhyk6VLT7zR+ZOyCnerfemE/CsR3iQpzRRFbLEs0Y6rwk3mpDvtOh04X223z+1xyJ582Stfct/0Q== + dependencies: + is-subset "^0.1.1" + modify-values "^1.0.0" + +conventional-commits-parser@^2.1.1, conventional-commits-parser@^2.1.7: + version "2.1.7" + resolved "http://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-2.1.7.tgz#eca45ed6140d72ba9722ee4132674d639e644e8e" + integrity sha512-BoMaddIEJ6B4QVMSDu9IkVImlGOSGA1I2BQyOZHeLQ6qVOJLcLKn97+fL6dGbzWEiqDzfH4OkcveULmeq2MHFQ== + dependencies: + JSONStream "^1.0.4" + is-text-path "^1.0.0" + lodash "^4.2.1" + meow "^4.0.0" + split2 "^2.0.0" + through2 "^2.0.0" + trim-off-newlines "^1.0.0" + +conventional-recommended-bump@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-1.2.1.tgz#1b7137efb5091f99fe009e2fe9ddb7cc490e9375" + integrity sha512-oJjG6DkRgtnr/t/VrPdzmf4XZv8c4xKVJrVT4zrSHd92KEL+EYxSbYoKq8lQ7U5yLMw7130wrcQTLRjM/T+d4w== + dependencies: + concat-stream "^1.4.10" + conventional-commits-filter "^1.1.1" + conventional-commits-parser "^2.1.1" + git-raw-commits "^1.3.0" + git-semver-tags "^1.3.0" + meow "^3.3.0" + object-assign "^4.0.1" + +convert-source-map@^1.4.0, convert-source-map@^1.5.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" + integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== + dependencies: + safe-buffer "~5.1.1" + +cookiejar@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.2.tgz#dd8a235530752f988f9a0844f3fc589e3111125c" + integrity sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA== + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= + +core-js@^2.4.0, core-js@^2.5.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.0.tgz#1e30793e9ee5782b307e37ffa22da0eacddd84d4" + integrity sha512-kLRC6ncVpuEW/1kwrOXYX6KQASCVtrh1gQr/UiaVgFlf9WE5Vp+lNe5+h3LuMr5PAucWnnEXwH0nQHRH/gpGtw== + +core-util-is@1.0.2, core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +cosmiconfig@^5.0.2: + version "5.0.7" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.7.tgz#39826b292ee0d78eda137dfa3173bd1c21a43b04" + integrity sha512-PcLqxTKiDmNT6pSpy4N6KtuPwb53W+2tzNvwOZw0WH9N6O0vLIBq0x8aj8Oj75ere4YcGi48bDFCL+3fRJdlNA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.9.0" + parse-json "^4.0.0" + +create-error-class@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" + integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= + dependencies: + capture-stack-trace "^1.0.0" + +cross-spawn@^5.0.1: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +crypto-random-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" + integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= + +cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": + version "0.3.4" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.4.tgz#8cd52e8a3acfd68d3aed38ee0a640177d2f9d797" + integrity sha512-+7prCSORpXNeR4/fUP3rL+TzqtiFfhMvTd7uEqMdgPvLPt4+uzFUeufx5RHjGTACCargg/DiEt/moMQmvnfkog== + +cssstyle@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.1.1.tgz#18b038a9c44d65f7a8e428a653b9f6fe42faf5fb" + integrity sha512-364AI1l/M5TYcFH83JnOH/pSqgaNnKmYgKrm0didZMGKWjQB60dymwWy1rKUgL3J1ffdq9xVi2yGLHdSjjSNog== + dependencies: + cssom "0.3.x" + +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= + dependencies: + array-find-index "^1.0.1" + +dargs@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" + integrity sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc= + dependencies: + number-is-nan "^1.0.0" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= + dependencies: + assert-plus "^1.0.0" + +data-urls@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" + integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== + dependencies: + abab "^2.0.0" + whatwg-mimetype "^2.2.0" + whatwg-url "^7.0.0" + +date-fns@^1.27.2: + version "1.29.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" + integrity sha512-lbTXWZ6M20cWH8N9S6afb0SBm6tMk+uUg6z3MqHPKE9atmsY3kJkTm8vKe93izJ2B2+q5MV990sM2CHgtAZaOw== + +dateformat@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" + integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== + +debug@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" + integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== + dependencies: + ms "2.0.0" + +debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.1.0: + version "3.2.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" + integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== + dependencies: + ms "^2.1.1" + +decamelize-keys@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" + integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= + dependencies: + decamelize "^1.1.0" + map-obj "^1.0.0" + +decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + +decompress-response@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" + integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= + dependencies: + mimic-response "^1.0.0" + +dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= + +deepmerge@^2.0.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-2.2.1.tgz#5d3ff22a01c00f645405a2fbc17d0778a1801170" + integrity sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA== + +default-require-extensions@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" + integrity sha1-836hXT4T/9m0N9M+GnW1+5eHTLg= + dependencies: + strip-bom "^2.0.0" + +defaults@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= + dependencies: + clone "^1.0.2" + +define-properties@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= + +detect-indent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" + integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg= + dependencies: + repeating "^2.0.0" + +detect-indent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" + integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50= + +detect-libc@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= + +detect-newline@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" + integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= + +diff@^3.1.0, diff@^3.2.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== + +domexception@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" + integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== + dependencies: + webidl-conversions "^4.0.2" + +dot-prop@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" + integrity sha1-G3CK8JSknJoOfbyteQq6U52sEXc= + dependencies: + is-obj "^1.0.0" + +dot-prop@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" + integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== + dependencies: + is-obj "^1.0.0" + +duplexer3@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= + +duplexer@^0.1.1: + version "0.1.1" + resolved "http://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" + integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +ecdsa-sig-formatter@1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.10.tgz#1c595000f04a8897dfb85000892a0f4c33af86c3" + integrity sha1-HFlQAPBKiJffuFAAiSoPTDOvhsM= + dependencies: + safe-buffer "^5.0.1" + +elegant-spinner@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" + integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4= + +error-ex@^1.2.0, error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.5.1: + version "1.12.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" + integrity sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA== + dependencies: + es-to-primitive "^1.1.1" + function-bind "^1.1.1" + has "^1.0.1" + is-callable "^1.1.3" + is-regex "^1.0.4" + +es-to-primitive@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" + integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +escodegen@^1.9.1: + version "1.11.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.0.tgz#b27a9389481d5bfd5bec76f7bb1eb3f8f4556589" + integrity sha512-IeMV45ReixHS53K/OmfKAIztN/igDHzTJUhZM3k1jMhIZWjk45SMwAtBsEXiJp3vSPmTcu6CXn7mDvFHRN66fw== + dependencies: + esprima "^3.1.3" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + +esprima@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" + integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +estraverse@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= + +esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= + +exec-sh@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36" + integrity sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw== + dependencies: + merge "^1.2.0" + +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" + integrity sha1-2NdrvBtVIX7RkP1t1J08d07PyNo= + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.9.0.tgz#adb7ce62cf985071f60580deb4a88b9e34712d01" + integrity sha512-BbUMBiX4hqiHZUA5+JujIjNb6TyAlp2D5KLheMjMluwOuzcnylDL4AxZYLLn1n2AGB49eSWwyKvvEQoRpnAtmA== + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= + +expand-brackets@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" + integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s= + dependencies: + is-posix-bracket "^0.1.0" + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +expand-range@^1.8.1: + version "1.8.2" + resolved "http://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= + dependencies: + fill-range "^2.1.0" + +expect@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-23.6.0.tgz#1e0c8d3ba9a581c87bd71fb9bc8862d443425f98" + integrity sha512-dgSoOHgmtn/aDGRVFWclQyPDKl2CQRq0hmIEoUAuQs/2rn2NcvCWcSCovm6BLeuB/7EZuLGu2QfnR+qRt5OM4w== + dependencies: + ansi-styles "^3.2.0" + jest-diff "^23.6.0" + jest-get-type "^22.1.0" + jest-matcher-utils "^23.6.0" + jest-message-util "^23.4.0" + jest-regex-util "^23.3.0" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extend@^3.0.0, extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +external-editor@^2.0.4: + version "2.2.0" + resolved "http://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" + integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A== + dependencies: + chardet "^0.4.0" + iconv-lite "^0.4.17" + tmp "^0.0.33" + +extglob@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" + integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE= + dependencies: + is-extglob "^1.0.0" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= + +extsprintf@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= + +faker@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/faker/-/faker-4.1.0.tgz#1e45bbbecc6774b3c195fad2835109c6d748cc3f" + integrity sha1-HkW7vsxndLPBlfrSg1EJxtdIzD8= + +fast-deep-equal@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" + integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= + +fast-json-stable-stringify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + +fb-watchman@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" + integrity sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg= + dependencies: + bser "^2.0.0" + +figures@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= + dependencies: + escape-string-regexp "^1.0.5" + +file-type@^8.0.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/file-type/-/file-type-8.1.0.tgz#244f3b7ef641bbe0cca196c7276e4b332399f68c" + integrity sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ== + +filename-regex@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" + integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY= + +fileset@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" + integrity sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA= + dependencies: + glob "^7.0.3" + minimatch "^3.0.3" + +fill-range@^2.1.0: + version "2.2.4" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" + integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== + dependencies: + is-number "^2.1.0" + isobject "^2.0.0" + randomatic "^3.0.0" + repeat-element "^1.1.2" + repeat-string "^1.5.2" + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +find-parent-dir@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" + integrity sha1-M8RLQpqysvBkYpnF+fcY83b/jVQ= + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +find-up@^2.0.0, find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= + dependencies: + locate-path "^2.0.0" + +for-in@^1.0.1, for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= + +for-own@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= + dependencies: + for-in "^1.0.1" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= + +form-data@^2.3.1, form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +formidable@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.2.1.tgz#70fb7ca0290ee6ff961090415f4b3df3d2082659" + integrity sha512-Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg== + +fp-ts@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/fp-ts/-/fp-ts-1.15.0.tgz#7706d6761cc98ccbece91c2ff2e5a5b924f65f3d" + integrity sha512-D0gnY9qnpifaqNABqSKjttOW4YVpAHK7I7hcstJllbyqS1GKzbQoAguZYr77DhXzIXnsJiqo65dCHJZq6ouxiQ== + +fp-ts@^1.0.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/fp-ts/-/fp-ts-1.13.0.tgz#004803434e6c92021232746a621d3c2429c3d5cc" + integrity sha512-QDPtCkuLay+dX3zinnvt0ER+j8mdWZZSpM//DIY3GycgwUTDPBKFD7CxX5DU/mIDstcWqGuuUSrMNtB6MWluCQ== + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= + dependencies: + map-cache "^0.2.2" + +from2@^2.1.1: + version "2.3.0" + resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" + integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.0" + +fs-extra@6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.1.tgz#8abc128f7946e310135ddc93b98bddb410e7a34b" + integrity sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" + integrity sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-minipass@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" + integrity sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ== + dependencies: + minipass "^2.2.1" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fsevents@^1.2.2, fsevents@^1.2.3: + version "1.2.4" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" + integrity sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg== + dependencies: + nan "^2.9.2" + node-pre-gyp "^0.10.0" + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +get-caller-file@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" + integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== + +get-own-enumerable-property-symbols@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.0.tgz#b877b49a5c16aefac3655f2ed2ea5b684df8d203" + integrity sha512-CIJYJC4GGF06TakLg8z4GQKvDsx9EMspVxOYih7LerEL/WosUnFIww45CGfxfeKHqlg3twgUrYRT1O3WQqjGCg== + +get-pkg-repo@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" + integrity sha1-xztInAbYDMVTbCyFP54FIyBWly0= + dependencies: + hosted-git-info "^2.1.4" + meow "^3.3.0" + normalize-package-data "^2.3.0" + parse-github-repo-url "^1.3.0" + through2 "^2.0.0" + +get-port@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" + integrity sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw= + +get-stdin@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= + +get-stream@3.0.0, get-stream@^3.0.0: + version "3.0.0" + resolved "http://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= + dependencies: + assert-plus "^1.0.0" + +git-raw-commits@^1.3.0, git-raw-commits@^1.3.6: + version "1.3.6" + resolved "http://registry.npmjs.org/git-raw-commits/-/git-raw-commits-1.3.6.tgz#27c35a32a67777c1ecd412a239a6c19d71b95aff" + integrity sha512-svsK26tQ8vEKnMshTDatSIQSMDdz8CxIIqKsvPqbtV23Etmw6VNaFAitu8zwZ0VrOne7FztwPyRLxK7/DIUTQg== + dependencies: + dargs "^4.0.1" + lodash.template "^4.0.2" + meow "^4.0.0" + split2 "^2.0.0" + through2 "^2.0.0" + +git-remote-origin-url@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" + integrity sha1-UoJlna4hBxRaERJhEq0yFuxfpl8= + dependencies: + gitconfiglocal "^1.0.0" + pify "^2.3.0" + +git-semver-tags@^1.3.0, git-semver-tags@^1.3.6: + version "1.3.6" + resolved "http://registry.npmjs.org/git-semver-tags/-/git-semver-tags-1.3.6.tgz#357ea01f7280794fe0927f2806bee6414d2caba5" + integrity sha512-2jHlJnln4D/ECk9FxGEBh3k44wgYdWjWDtMmJPaecjoRmxKo3Y1Lh8GMYuOPu04CHw86NTAODchYjC5pnpMQig== + dependencies: + meow "^4.0.0" + semver "^5.5.0" + +gitconfiglocal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" + integrity sha1-QdBF84UaXqiPA/JMocYXgRRGS5s= + dependencies: + ini "^1.3.2" + +glob-base@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" + integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= + dependencies: + glob-parent "^2.0.0" + is-glob "^2.0.0" + +glob-parent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" + integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= + dependencies: + is-glob "^2.0.0" + +glob-parent@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" + integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= + dependencies: + is-glob "^3.1.0" + path-dirname "^1.0.0" + +glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: + version "7.1.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" + integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-dirs@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" + integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= + dependencies: + ini "^1.3.4" + +globals@^9.18.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== + +globby@^6.1.0: + version "6.1.0" + resolved "http://registry.npmjs.org/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +got@^6.7.1: + version "6.7.1" + resolved "http://registry.npmjs.org/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" + integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= + dependencies: + create-error-class "^3.0.0" + duplexer3 "^0.1.4" + get-stream "^3.0.0" + is-redirect "^1.0.0" + is-retry-allowed "^1.0.0" + is-stream "^1.0.0" + lowercase-keys "^1.0.0" + safe-buffer "^5.0.1" + timed-out "^4.0.0" + unzip-response "^2.0.1" + url-parse-lax "^1.0.0" + +got@^8.0.0: + version "8.3.2" + resolved "https://registry.yarnpkg.com/got/-/got-8.3.2.tgz#1d23f64390e97f776cac52e5b936e5f514d2e937" + integrity sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw== + dependencies: + "@sindresorhus/is" "^0.7.0" + cacheable-request "^2.1.1" + decompress-response "^3.3.0" + duplexer3 "^0.1.4" + get-stream "^3.0.0" + into-stream "^3.1.0" + is-retry-allowed "^1.1.0" + isurl "^1.0.0-alpha5" + lowercase-keys "^1.0.0" + mimic-response "^1.0.0" + p-cancelable "^0.4.0" + p-timeout "^2.0.1" + pify "^3.0.0" + safe-buffer "^5.1.1" + timed-out "^4.0.1" + url-parse-lax "^3.0.0" + url-to-options "^1.0.1" + +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: + version "4.1.15" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" + integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== + +growly@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= + +handlebars@^4.0.2, handlebars@^4.0.3: + version "4.0.12" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.12.tgz#2c15c8a96d46da5e266700518ba8cb8d919d5bc5" + integrity sha512-RhmTekP+FZL+XNhwS1Wf+bTTZpdLougwt5pcgA1tuz6Jcx0fpH/7z0qd71RKnZHBCxIRBHfBOnio4gViPemNzA== + dependencies: + async "^2.5.0" + optimist "^0.6.1" + source-map "^0.6.1" + optionalDependencies: + uglify-js "^3.1.4" + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= + +har-validator@~5.1.0: + version "5.1.3" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" + integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== + dependencies: + ajv "^6.5.5" + har-schema "^2.0.0" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + dependencies: + ansi-regex "^2.0.0" + +has-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +has-symbol-support-x@^1.4.1: + version "1.4.2" + resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455" + integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw== + +has-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" + integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= + +has-to-string-tag-x@^1.2.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d" + integrity sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw== + dependencies: + has-symbol-support-x "^1.4.1" + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +has@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hercule@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/hercule/-/hercule-4.1.1.tgz#5d262332ce858cbae1202271d0283983889051c8" + integrity sha512-ws8KMjT6SZU8jbdq+w3/O0aSdEDxKCXyhYQkAKknvadhzcLf5Qw413laK0UjhWM9jxwCr3nYsbTYVYbOIWK5+g== + dependencies: + async "^2.1.4" + clone-regexp "^1.0.0" + duplexer3 "^0.1.4" + get-stream "^3.0.0" + got "^8.0.0" + isstream "^0.1.2" + left-split "^1.0.0" + lodash "^4.0.0" + meow "^3.7.0" + source-map "^0.6.0" + through2 "^2.0.0" + through2-get "^0.1.0" + +home-or-tmp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" + integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg= + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.1" + +hosted-git-info@^2.1.4, hosted-git-info@^2.5.0: + version "2.7.1" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" + integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== + +html-encoding-sniffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== + dependencies: + whatwg-encoding "^1.0.1" + +http-cache-semantics@3.8.1: + version "3.8.1" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" + integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w== + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +husky@^0.14.0: + version "0.14.3" + resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" + integrity sha512-e21wivqHpstpoiWA/Yi8eFti8E+sQDSS53cpJsPptPs295QTOQR0ZwnHo2TXy1XOpZFD9rPOd3NpmqTK6uMLJA== + dependencies: + is-ci "^1.0.10" + normalize-path "^1.0.0" + strip-indent "^2.0.0" + +iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.4: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ignore-by-default@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" + integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk= + +ignore-walk@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" + integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== + dependencies: + minimatch "^3.0.4" + +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + +import-lazy@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" + integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= + +import-local@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" + integrity sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ== + dependencies: + pkg-dir "^2.0.0" + resolve-cwd "^2.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= + dependencies: + repeating "^2.0.0" + +indent-string@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" + integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + +ini@^1.3.2, ini@^1.3.4, ini@~1.3.0: + version "1.3.5" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== + +inquirer@^3.2.2: + version "3.3.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" + integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.0.4" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rx-lite "^4.0.8" + rx-lite-aggregates "^4.0.8" + string-width "^2.1.0" + strip-ansi "^4.0.0" + through "^2.3.6" + +into-stream@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6" + integrity sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY= + dependencies: + from2 "^2.1.1" + p-is-promise "^1.1.0" + +invariant@^2.2.2, invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= + +io-ts@1.8.5: + version "1.8.5" + resolved "https://registry.yarnpkg.com/io-ts/-/io-ts-1.8.5.tgz#2e102f7f518abe17b0f7e7ede0db54a4c4ddc188" + integrity sha512-4HzDeg7mTygFjFIKh7ajBSanoVaFryYSFI0ocdwndSWl3eWQXhg3wVR0WI+Li5Vq11TIsoIngQszVbN4dy//9A== + dependencies: + fp-ts "^1.0.0" + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== + dependencies: + kind-of "^6.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= + dependencies: + binary-extensions "^1.0.0" + +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-builtin-module@^1.0.0: + version "1.0.0" + resolved "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + integrity sha1-VAVy0096wxGfj3bDDLwbHgN6/74= + dependencies: + builtin-modules "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" + integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== + +is-ci@^1.0.10: + version "1.2.1" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" + integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg== + dependencies: + ci-info "^1.5.0" + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== + dependencies: + kind-of "^6.0.0" + +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= + +is-dotfile@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" + integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE= + +is-equal-shallow@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" + integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ= + dependencies: + is-primitive "^2.0.0" + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= + +is-extglob@^2.1.0, is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + +is-finite@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-generator-fn@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" + integrity sha1-lp1J4bszKfa7fwkIm+JleLLd1Go= + +is-glob@^2.0.0, is-glob@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= + dependencies: + is-extglob "^1.0.0" + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= + dependencies: + is-extglob "^2.1.0" + +is-glob@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" + integrity sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A= + dependencies: + is-extglob "^2.1.1" + +is-installed-globally@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" + integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= + dependencies: + global-dirs "^0.1.0" + is-path-inside "^1.0.0" + +is-npm@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" + integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= + +is-number@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= + dependencies: + kind-of "^3.0.2" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= + dependencies: + kind-of "^3.0.2" + +is-number@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" + integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== + +is-obj@^1.0.0, is-obj@^1.0.1: + version "1.0.1" + resolved "http://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= + +is-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" + integrity sha1-iVJojF7C/9awPsyF52ngKQMINHA= + +is-observable@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" + integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA== + dependencies: + symbol-observable "^1.1.0" + +is-path-inside@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" + integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= + dependencies: + path-is-inside "^1.0.1" + +is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= + +is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-posix-bracket@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" + integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q= + +is-primitive@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" + integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= + +is-promise@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= + +is-redirect@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" + integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= + +is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= + dependencies: + has "^1.0.1" + +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= + +is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" + integrity sha1-EaBgVotnM5REAz0BJaYaINVk+zQ= + +is-stream@^1.0.0, is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + +is-subset@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" + integrity sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY= + +is-supported-regexp-flag@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz#21ee16518d2c1dd3edd3e9a0d57e50207ac364ca" + integrity sha512-3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ== + +is-symbol@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" + integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== + dependencies: + has-symbols "^1.0.0" + +is-text-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" + integrity sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4= + dependencies: + text-extensions "^1.0.0" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= + +is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +isarray@1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= + +isstream@^0.1.2, isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= + +istanbul-api@^1.3.1: + version "1.3.7" + resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.7.tgz#a86c770d2b03e11e3f778cd7aedd82d2722092aa" + integrity sha512-4/ApBnMVeEPG3EkSzcw25wDe4N66wxwn+KKn6b47vyek8Xb3NBAcg4xfuQbS7BqcZuTX4wxfD5lVagdggR3gyA== + dependencies: + async "^2.1.4" + fileset "^2.0.2" + istanbul-lib-coverage "^1.2.1" + istanbul-lib-hook "^1.2.2" + istanbul-lib-instrument "^1.10.2" + istanbul-lib-report "^1.1.5" + istanbul-lib-source-maps "^1.2.6" + istanbul-reports "^1.5.1" + js-yaml "^3.7.0" + mkdirp "^0.5.1" + once "^1.4.0" + +istanbul-lib-coverage@^1.2.0, istanbul-lib-coverage@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0" + integrity sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ== + +istanbul-lib-hook@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86" + integrity sha512-/Jmq7Y1VeHnZEQ3TL10VHyb564mn6VrQXHchON9Jf/AEcmQ3ZIiyD1BVzNOKTZf/G3gE+kiGK6SmpF9y3qGPLw== + dependencies: + append-transform "^0.4.0" + +istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.10.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca" + integrity sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A== + dependencies: + babel-generator "^6.18.0" + babel-template "^6.16.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + babylon "^6.18.0" + istanbul-lib-coverage "^1.2.1" + semver "^5.3.0" + +istanbul-lib-report@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c" + integrity sha512-UsYfRMoi6QO/doUshYNqcKJqVmFe9w51GZz8BS3WB0lYxAllQYklka2wP9+dGZeHYaWIdcXUx8JGdbqaoXRXzw== + dependencies: + istanbul-lib-coverage "^1.2.1" + mkdirp "^0.5.1" + path-parse "^1.0.5" + supports-color "^3.1.2" + +istanbul-lib-source-maps@^1.2.4, istanbul-lib-source-maps@^1.2.6: + version "1.2.6" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f" + integrity sha512-TtbsY5GIHgbMsMiRw35YBHGpZ1DVFEO19vxxeiDMYaeOFOCzfnYVxvl6pOUIZR4dtPhAGpSMup8OyF8ubsaqEg== + dependencies: + debug "^3.1.0" + istanbul-lib-coverage "^1.2.1" + mkdirp "^0.5.1" + rimraf "^2.6.1" + source-map "^0.5.3" + +istanbul-reports@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a" + integrity sha512-+cfoZ0UXzWjhAdzosCPP3AN8vvef8XDkWtTfgaN+7L3YTpNYITnCaEkceo5SEYy644VkHka/P1FvkWvrG/rrJw== + dependencies: + handlebars "^4.0.3" + +isurl@^1.0.0-alpha5: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67" + integrity sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w== + dependencies: + has-to-string-tag-x "^1.2.0" + is-object "^1.0.1" + +jest-changed-files@^23.4.2: + version "23.4.2" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.4.2.tgz#1eed688370cd5eebafe4ae93d34bb3b64968fe83" + integrity sha512-EyNhTAUWEfwnK0Is/09LxoqNDOn7mU7S3EHskG52djOFS/z+IT0jT3h3Ql61+dklcG7bJJitIWEMB4Sp1piHmA== + dependencies: + throat "^4.0.0" + +jest-cli@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.6.0.tgz#61ab917744338f443ef2baa282ddffdd658a5da4" + integrity sha512-hgeD1zRUp1E1zsiyOXjEn4LzRLWdJBV//ukAHGlx6s5mfCNJTbhbHjgxnDUXA8fsKWN/HqFFF6X5XcCwC/IvYQ== + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.1" + exit "^0.1.2" + glob "^7.1.2" + graceful-fs "^4.1.11" + import-local "^1.0.0" + is-ci "^1.0.10" + istanbul-api "^1.3.1" + istanbul-lib-coverage "^1.2.0" + istanbul-lib-instrument "^1.10.1" + istanbul-lib-source-maps "^1.2.4" + jest-changed-files "^23.4.2" + jest-config "^23.6.0" + jest-environment-jsdom "^23.4.0" + jest-get-type "^22.1.0" + jest-haste-map "^23.6.0" + jest-message-util "^23.4.0" + jest-regex-util "^23.3.0" + jest-resolve-dependencies "^23.6.0" + jest-runner "^23.6.0" + jest-runtime "^23.6.0" + jest-snapshot "^23.6.0" + jest-util "^23.4.0" + jest-validate "^23.6.0" + jest-watcher "^23.4.0" + jest-worker "^23.2.0" + micromatch "^2.3.11" + node-notifier "^5.2.1" + prompts "^0.1.9" + realpath-native "^1.0.0" + rimraf "^2.5.4" + slash "^1.0.0" + string-length "^2.0.0" + strip-ansi "^4.0.0" + which "^1.2.12" + yargs "^11.0.0" + +jest-config@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.6.0.tgz#f82546a90ade2d8c7026fbf6ac5207fc22f8eb1d" + integrity sha512-i8V7z9BeDXab1+VNo78WM0AtWpBRXJLnkT+lyT+Slx/cbP5sZJ0+NDuLcmBE5hXAoK0aUp7vI+MOxR+R4d8SRQ== + dependencies: + babel-core "^6.0.0" + babel-jest "^23.6.0" + chalk "^2.0.1" + glob "^7.1.1" + jest-environment-jsdom "^23.4.0" + jest-environment-node "^23.4.0" + jest-get-type "^22.1.0" + jest-jasmine2 "^23.6.0" + jest-regex-util "^23.3.0" + jest-resolve "^23.6.0" + jest-util "^23.4.0" + jest-validate "^23.6.0" + micromatch "^2.3.11" + pretty-format "^23.6.0" + +jest-diff@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.6.0.tgz#1500f3f16e850bb3d71233408089be099f610c7d" + integrity sha512-Gz9l5Ov+X3aL5L37IT+8hoCUsof1CVYBb2QEkOupK64XyRR3h+uRpYIm97K7sY8diFxowR8pIGEdyfMKTixo3g== + dependencies: + chalk "^2.0.1" + diff "^3.2.0" + jest-get-type "^22.1.0" + pretty-format "^23.6.0" + +jest-docblock@^23.2.0: + version "23.2.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.2.0.tgz#f085e1f18548d99fdd69b20207e6fd55d91383a7" + integrity sha1-8IXh8YVI2Z/dabICB+b9VdkTg6c= + dependencies: + detect-newline "^2.1.0" + +jest-each@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-23.6.0.tgz#ba0c3a82a8054387016139c733a05242d3d71575" + integrity sha512-x7V6M/WGJo6/kLoissORuvLIeAoyo2YqLOoCDkohgJ4XOXSqOtyvr8FbInlAWS77ojBsZrafbozWoKVRdtxFCg== + dependencies: + chalk "^2.0.1" + pretty-format "^23.6.0" + +jest-environment-jsdom@^23.4.0: + version "23.4.0" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.4.0.tgz#056a7952b3fea513ac62a140a2c368c79d9e6023" + integrity sha1-BWp5UrP+pROsYqFAosNox52eYCM= + dependencies: + jest-mock "^23.2.0" + jest-util "^23.4.0" + jsdom "^11.5.1" + +jest-environment-node@^23.4.0: + version "23.4.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.4.0.tgz#57e80ed0841dea303167cce8cd79521debafde10" + integrity sha1-V+gO0IQd6jAxZ8zozXlSHeuv3hA= + dependencies: + jest-mock "^23.2.0" + jest-util "^23.4.0" + +jest-get-type@^22.1.0: + version "22.4.3" + resolved "http://registry.npmjs.org/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" + integrity sha512-/jsz0Y+V29w1chdXVygEKSz2nBoHoYqNShPe+QgxSNjAuP1i8+k4LbQNrfoliKej0P45sivkSCh7yiD6ubHS3w== + +jest-haste-map@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.6.0.tgz#2e3eb997814ca696d62afdb3f2529f5bbc935e16" + integrity sha512-uyNhMyl6dr6HaXGHp8VF7cK6KpC6G9z9LiMNsst+rJIZ8l7wY0tk8qwjPmEghczojZ2/ZhtEdIabZ0OQRJSGGg== + dependencies: + fb-watchman "^2.0.0" + graceful-fs "^4.1.11" + invariant "^2.2.4" + jest-docblock "^23.2.0" + jest-serializer "^23.0.1" + jest-worker "^23.2.0" + micromatch "^2.3.11" + sane "^2.0.0" + +jest-jasmine2@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.6.0.tgz#840e937f848a6c8638df24360ab869cc718592e0" + integrity sha512-pe2Ytgs1nyCs8IvsEJRiRTPC0eVYd8L/dXJGU08GFuBwZ4sYH/lmFDdOL3ZmvJR8QKqV9MFuwlsAi/EWkFUbsQ== + dependencies: + babel-traverse "^6.0.0" + chalk "^2.0.1" + co "^4.6.0" + expect "^23.6.0" + is-generator-fn "^1.0.0" + jest-diff "^23.6.0" + jest-each "^23.6.0" + jest-matcher-utils "^23.6.0" + jest-message-util "^23.4.0" + jest-snapshot "^23.6.0" + jest-util "^23.4.0" + pretty-format "^23.6.0" + +jest-leak-detector@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.6.0.tgz#e4230fd42cf381a1a1971237ad56897de7e171de" + integrity sha512-f/8zA04rsl1Nzj10HIyEsXvYlMpMPcy0QkQilVZDFOaPbv2ur71X5u2+C4ZQJGyV/xvVXtCCZ3wQ99IgQxftCg== + dependencies: + pretty-format "^23.6.0" + +jest-matcher-utils@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.6.0.tgz#726bcea0c5294261a7417afb6da3186b4b8cac80" + integrity sha512-rosyCHQfBcol4NsckTn01cdelzWLU9Cq7aaigDf8VwwpIRvWE/9zLgX2bON+FkEW69/0UuYslUe22SOdEf2nog== + dependencies: + chalk "^2.0.1" + jest-get-type "^22.1.0" + pretty-format "^23.6.0" + +jest-message-util@^23.4.0: + version "23.4.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.4.0.tgz#17610c50942349508d01a3d1e0bda2c079086a9f" + integrity sha1-F2EMUJQjSVCNAaPR4L2iwHkIap8= + dependencies: + "@babel/code-frame" "^7.0.0-beta.35" + chalk "^2.0.1" + micromatch "^2.3.11" + slash "^1.0.0" + stack-utils "^1.0.1" + +jest-mock@^23.2.0: + version "23.2.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.2.0.tgz#ad1c60f29e8719d47c26e1138098b6d18b261134" + integrity sha1-rRxg8p6HGdR8JuETgJi20YsmETQ= + +jest-regex-util@^23.3.0: + version "23.3.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.3.0.tgz#5f86729547c2785c4002ceaa8f849fe8ca471bc5" + integrity sha1-X4ZylUfCeFxAAs6qj4Sf6MpHG8U= + +jest-resolve-dependencies@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.6.0.tgz#b4526af24c8540d9a3fab102c15081cf509b723d" + integrity sha512-EkQWkFWjGKwRtRyIwRwI6rtPAEyPWlUC2MpzHissYnzJeHcyCn1Hc8j7Nn1xUVrS5C6W5+ZL37XTem4D4pLZdA== + dependencies: + jest-regex-util "^23.3.0" + jest-snapshot "^23.6.0" + +jest-resolve@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.6.0.tgz#cf1d1a24ce7ee7b23d661c33ba2150f3aebfa0ae" + integrity sha512-XyoRxNtO7YGpQDmtQCmZjum1MljDqUCob7XlZ6jy9gsMugHdN2hY4+Acz9Qvjz2mSsOnPSH7skBmDYCHXVZqkA== + dependencies: + browser-resolve "^1.11.3" + chalk "^2.0.1" + realpath-native "^1.0.0" + +jest-runner@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.6.0.tgz#3894bd219ffc3f3cb94dc48a4170a2e6f23a5a38" + integrity sha512-kw0+uj710dzSJKU6ygri851CObtCD9cN8aNkg8jWJf4ewFyEa6kwmiH/r/M1Ec5IL/6VFa0wnAk6w+gzUtjJzA== + dependencies: + exit "^0.1.2" + graceful-fs "^4.1.11" + jest-config "^23.6.0" + jest-docblock "^23.2.0" + jest-haste-map "^23.6.0" + jest-jasmine2 "^23.6.0" + jest-leak-detector "^23.6.0" + jest-message-util "^23.4.0" + jest-runtime "^23.6.0" + jest-util "^23.4.0" + jest-worker "^23.2.0" + source-map-support "^0.5.6" + throat "^4.0.0" + +jest-runtime@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.6.0.tgz#059e58c8ab445917cd0e0d84ac2ba68de8f23082" + integrity sha512-ycnLTNPT2Gv+TRhnAYAQ0B3SryEXhhRj1kA6hBPSeZaNQkJ7GbZsxOLUkwg6YmvWGdX3BB3PYKFLDQCAE1zNOw== + dependencies: + babel-core "^6.0.0" + babel-plugin-istanbul "^4.1.6" + chalk "^2.0.1" + convert-source-map "^1.4.0" + exit "^0.1.2" + fast-json-stable-stringify "^2.0.0" + graceful-fs "^4.1.11" + jest-config "^23.6.0" + jest-haste-map "^23.6.0" + jest-message-util "^23.4.0" + jest-regex-util "^23.3.0" + jest-resolve "^23.6.0" + jest-snapshot "^23.6.0" + jest-util "^23.4.0" + jest-validate "^23.6.0" + micromatch "^2.3.11" + realpath-native "^1.0.0" + slash "^1.0.0" + strip-bom "3.0.0" + write-file-atomic "^2.1.0" + yargs "^11.0.0" + +jest-serializer@^23.0.1: + version "23.0.1" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" + integrity sha1-o3dq6zEekP6D+rnlM+hRAr0WQWU= + +jest-snapshot@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.6.0.tgz#f9c2625d1b18acda01ec2d2b826c0ce58a5aa17a" + integrity sha512-tM7/Bprftun6Cvj2Awh/ikS7zV3pVwjRYU2qNYS51VZHgaAMBs5l4o/69AiDHhQrj5+LA2Lq4VIvK7zYk/bswg== + dependencies: + babel-types "^6.0.0" + chalk "^2.0.1" + jest-diff "^23.6.0" + jest-matcher-utils "^23.6.0" + jest-message-util "^23.4.0" + jest-resolve "^23.6.0" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + pretty-format "^23.6.0" + semver "^5.5.0" + +jest-util@^23.4.0: + version "23.4.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.4.0.tgz#4d063cb927baf0a23831ff61bec2cbbf49793561" + integrity sha1-TQY8uSe68KI4Mf9hvsLLv0l5NWE= + dependencies: + callsites "^2.0.0" + chalk "^2.0.1" + graceful-fs "^4.1.11" + is-ci "^1.0.10" + jest-message-util "^23.4.0" + mkdirp "^0.5.1" + slash "^1.0.0" + source-map "^0.6.0" + +jest-validate@^23.5.0, jest-validate@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.6.0.tgz#36761f99d1ed33fcd425b4e4c5595d62b6597474" + integrity sha512-OFKapYxe72yz7agrDAWi8v2WL8GIfVqcbKRCLbRG9PAxtzF9b1SEDdTpytNDN12z2fJynoBwpMpvj2R39plI2A== + dependencies: + chalk "^2.0.1" + jest-get-type "^22.1.0" + leven "^2.1.0" + pretty-format "^23.6.0" + +jest-watcher@^23.4.0: + version "23.4.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-23.4.0.tgz#d2e28ce74f8dad6c6afc922b92cabef6ed05c91c" + integrity sha1-0uKM50+NrWxq/JIrksq+9u0FyRw= + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.1" + string-length "^2.0.0" + +jest-worker@^23.2.0: + version "23.2.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.2.0.tgz#faf706a8da36fae60eb26957257fa7b5d8ea02b9" + integrity sha1-+vcGqNo2+uYOsmlXJX+ntdjqArk= + dependencies: + merge-stream "^1.0.1" + +jest@^23.5.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-23.6.0.tgz#ad5835e923ebf6e19e7a1d7529a432edfee7813d" + integrity sha512-lWzcd+HSiqeuxyhG+EnZds6iO3Y3ZEnMrfZq/OTGvF/C+Z4fPMCdhWTGSAiO2Oym9rbEXfwddHhh6jqrTF3+Lw== + dependencies: + import-local "^1.0.0" + jest-cli "^23.6.0" + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= + +js-yaml@^3.7.0, js-yaml@^3.9.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" + integrity sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= + +jsdom@^11.5.1: + version "11.12.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" + integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== + dependencies: + abab "^2.0.0" + acorn "^5.5.3" + acorn-globals "^4.1.0" + array-equal "^1.0.0" + cssom ">= 0.3.2 < 0.4.0" + cssstyle "^1.0.0" + data-urls "^1.0.0" + domexception "^1.0.1" + escodegen "^1.9.1" + html-encoding-sniffer "^1.0.2" + left-pad "^1.3.0" + nwsapi "^2.0.7" + parse5 "4.0.0" + pn "^1.1.0" + request "^2.87.0" + request-promise-native "^1.0.5" + sax "^1.2.4" + symbol-tree "^3.2.2" + tough-cookie "^2.3.4" + w3c-hr-time "^1.0.1" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.3" + whatwg-mimetype "^2.1.0" + whatwg-url "^6.4.1" + ws "^5.2.0" + xml-name-validator "^3.0.0" + +jsesc@^1.3.0: + version "1.3.0" + resolved "http://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" + integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s= + +json-buffer@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" + integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= + +json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= + +json5@^0.5.0, json5@^0.5.1: + version "0.5.1" + resolved "http://registry.npmjs.org/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" + integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= + optionalDependencies: + graceful-fs "^4.1.6" + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= + +jsonwebtoken@^8.3.0: + version "8.4.0" + resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.4.0.tgz#8757f7b4cb7440d86d5e2f3becefa70536c8e46a" + integrity sha512-coyXjRTCy0pw5WYBpMvWOMN+Kjaik2MwTUIq9cna/W7NpO9E+iYbumZONAz3hcr+tXFJECoQVrtmIoC3Oz0gvg== + dependencies: + jws "^3.1.5" + lodash.includes "^4.3.0" + lodash.isboolean "^3.0.3" + lodash.isinteger "^4.0.4" + lodash.isnumber "^3.0.3" + lodash.isplainobject "^4.0.6" + lodash.isstring "^4.0.1" + lodash.once "^4.0.0" + ms "^2.1.1" + +jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +jwa@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.1.6.tgz#87240e76c9808dbde18783cf2264ef4929ee50e6" + integrity sha512-tBO/cf++BUsJkYql/kBbJroKOgHWEigTKBAjjBEmrMGYd1QMBC74Hr4Wo2zCZw6ZrVhlJPvoMrkcOnlWR/DJfw== + dependencies: + buffer-equal-constant-time "1.0.1" + ecdsa-sig-formatter "1.0.10" + safe-buffer "^5.0.1" + +jws@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/jws/-/jws-3.1.5.tgz#80d12d05b293d1e841e7cb8b4e69e561adcf834f" + integrity sha512-GsCSexFADNQUr8T5HPJvayTjvPIfoyJPtLQBwn5a4WZQchcrPMPMAWcC1AzJVRDKyD6ZPROPAxgv6rfHViO4uQ== + dependencies: + jwa "^1.1.5" + safe-buffer "^5.0.1" + +kareem@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/kareem/-/kareem-2.3.0.tgz#ef33c42e9024dce511eeaf440cd684f3af1fc769" + integrity sha512-6hHxsp9e6zQU8nXsP+02HGWXwTkOEw6IROhF2ZA28cYbUk4eJ6QbtZvdqZOdD9YPKghG3apk5eOCvs+tLl3lRg== + +keyv@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373" + integrity sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA== + dependencies: + json-buffer "3.0.0" + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" + integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== + +kleur@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-2.0.2.tgz#b704f4944d95e255d038f0cb05fb8a602c55a300" + integrity sha512-77XF9iTllATmG9lSlIv0qdQ2BQ/h9t0bJllHlbvsQ0zUWfU7Yi0S8L5JXzPZgkefIiajLmBJJ4BsMJmqcf7oxQ== + +latest-version@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" + integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU= + dependencies: + package-json "^4.0.0" + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= + dependencies: + invert-kv "^1.0.0" + +left-pad@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" + integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== + +left-split@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/left-split/-/left-split-1.0.0.tgz#bec514c23cfb4c957a9974edfda385bc59728806" + integrity sha1-vsUUwjz7TJV6mXTt/aOFvFlyiAY= + +lerna@^2.11.0: + version "2.11.0" + resolved "https://registry.yarnpkg.com/lerna/-/lerna-2.11.0.tgz#89b5681e286d388dda5bbbdbbf6b84c8094eff65" + integrity sha512-kgM6zwe2P2tR30MYvgiLLW+9buFCm6E7o8HnRlhTgm70WVBvXVhydqv+q/MF2HrVZkCawfVtCfetyQmtd4oHhQ== + dependencies: + async "^1.5.0" + chalk "^2.1.0" + cmd-shim "^2.0.2" + columnify "^1.5.4" + command-join "^2.0.0" + conventional-changelog-cli "^1.3.13" + conventional-recommended-bump "^1.2.1" + dedent "^0.7.0" + execa "^0.8.0" + find-up "^2.1.0" + fs-extra "^4.0.1" + get-port "^3.2.0" + glob "^7.1.2" + glob-parent "^3.1.0" + globby "^6.1.0" + graceful-fs "^4.1.11" + hosted-git-info "^2.5.0" + inquirer "^3.2.2" + is-ci "^1.0.10" + load-json-file "^4.0.0" + lodash "^4.17.4" + minimatch "^3.0.4" + npmlog "^4.1.2" + p-finally "^1.0.0" + package-json "^4.0.1" + path-exists "^3.0.0" + read-cmd-shim "^1.0.1" + read-pkg "^3.0.0" + rimraf "^2.6.1" + safe-buffer "^5.1.1" + semver "^5.4.1" + signal-exit "^3.0.2" + slash "^1.0.0" + strong-log-transformer "^1.0.6" + temp-write "^3.3.0" + write-file-atomic "^2.3.0" + write-json-file "^2.2.0" + write-pkg "^3.1.0" + yargs "^8.0.2" + +leven@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" + integrity sha1-wuep93IJTe6dNCAq6KzORoeHVYA= + +levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +lint-staged@^7.2.2: + version "7.3.0" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-7.3.0.tgz#90ff33e5ca61ed3dbac35b6f6502dbefdc0db58d" + integrity sha512-AXk40M9DAiPi7f4tdJggwuKIViUplYtVj1os1MVEteW7qOkU50EOehayCfO9TsoGK24o/EsWb41yrEgfJDDjCw== + dependencies: + chalk "^2.3.1" + commander "^2.14.1" + cosmiconfig "^5.0.2" + debug "^3.1.0" + dedent "^0.7.0" + execa "^0.9.0" + find-parent-dir "^0.3.0" + is-glob "^4.0.0" + is-windows "^1.0.2" + jest-validate "^23.5.0" + listr "^0.14.1" + lodash "^4.17.5" + log-symbols "^2.2.0" + micromatch "^3.1.8" + npm-which "^3.0.1" + p-map "^1.1.1" + path-is-inside "^1.0.2" + pify "^3.0.0" + please-upgrade-node "^3.0.2" + staged-git-files "1.1.1" + string-argv "^0.0.2" + stringify-object "^3.2.2" + +listr-silent-renderer@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" + integrity sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4= + +listr-update-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2" + integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== + dependencies: + chalk "^1.1.3" + cli-truncate "^0.2.1" + elegant-spinner "^1.0.1" + figures "^1.7.0" + indent-string "^3.0.0" + log-symbols "^1.0.2" + log-update "^2.3.0" + strip-ansi "^3.0.1" + +listr-verbose-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db" + integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== + dependencies: + chalk "^2.4.1" + cli-cursor "^2.1.0" + date-fns "^1.27.2" + figures "^2.0.0" + +listr@^0.14.1: + version "0.14.3" + resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" + integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== + dependencies: + "@samverschueren/stream-to-observable" "^0.3.0" + is-observable "^1.1.0" + is-promise "^2.1.0" + is-stream "^1.1.0" + listr-silent-renderer "^1.1.1" + listr-update-renderer "^0.5.0" + listr-verbose-renderer "^0.5.0" + p-map "^2.0.0" + rxjs "^6.3.3" + +load-json-file@^1.0.0: + version "1.1.0" + resolved "http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" + +load-json-file@^2.0.0: + version "2.0.0" + resolved "http://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +lodash._reinterpolate@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" + integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= + +lodash.get@4.4.2, lodash.get@^4.0.0: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= + +lodash.includes@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" + integrity sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8= + +lodash.isboolean@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" + integrity sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY= + +lodash.isinteger@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" + integrity sha1-YZwK89A/iwTDH1iChAt3sRzWg0M= + +lodash.isnumber@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" + integrity sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w= + +lodash.isplainobject@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" + integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs= + +lodash.isstring@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" + integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= + +lodash.once@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" + integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= + +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= + +lodash.template@^4.0.2: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" + integrity sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A= + dependencies: + lodash._reinterpolate "~3.0.0" + lodash.templatesettings "^4.0.0" + +lodash.templatesettings@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" + integrity sha1-K01OlbpEDZFf8IvImeRVNmZxMxY= + dependencies: + lodash._reinterpolate "~3.0.0" + +lodash@4.17.10: + version "4.17.10" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" + integrity sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg== + +lodash@^4.0.0, lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.1, lodash@^4.3.0: + version "4.17.11" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" + integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== + +log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + integrity sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg= + dependencies: + chalk "^1.0.0" + +log-symbols@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== + dependencies: + chalk "^2.0.1" + +log-update@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" + integrity sha1-iDKP19HOeTiykoN0bwsbwSayRwg= + dependencies: + ansi-escapes "^3.0.0" + cli-cursor "^2.0.0" + wrap-ansi "^3.0.1" + +loose-envify@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + +lowercase-keys@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" + integrity sha1-TjNms55/VFfjXxMkvfb4jQv8cwY= + +lowercase-keys@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" + integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== + +lru-cache@^4.0.1: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +make-dir@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" + integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== + dependencies: + pify "^3.0.0" + +make-error@^1.1.1: + version "1.3.5" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" + integrity sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g== + +makeerror@1.0.x: + version "1.0.11" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" + integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= + dependencies: + tmpl "1.0.x" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + +map-obj@^1.0.0, map-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= + +map-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" + integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk= + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= + dependencies: + object-visit "^1.0.0" + +math-random@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" + integrity sha1-izqsWIuKZuSXXjzepn97sylgH6w= + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= + +mem@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" + integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y= + dependencies: + mimic-fn "^1.0.0" + +memory-pager@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/memory-pager/-/memory-pager-1.1.0.tgz#9308915e0e972849fefbae6f8bc95d6b350e7344" + integrity sha512-Mf9OHV/Y7h6YWDxTzX/b4ZZ4oh9NSXblQL8dtPCOomOtZciEHxePR78+uHFLLlsk01A6jVHhHsQZZ/WcIPpnzg== + +meow@^3.3.0, meow@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= + dependencies: + camelcase-keys "^2.0.0" + decamelize "^1.1.2" + loud-rejection "^1.0.0" + map-obj "^1.0.1" + minimist "^1.1.3" + normalize-package-data "^2.3.4" + object-assign "^4.0.1" + read-pkg-up "^1.0.1" + redent "^1.0.0" + trim-newlines "^1.0.0" + +meow@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/meow/-/meow-4.0.1.tgz#d48598f6f4b1472f35bf6317a95945ace347f975" + integrity sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A== + dependencies: + camelcase-keys "^4.0.0" + decamelize-keys "^1.0.0" + loud-rejection "^1.0.0" + minimist "^1.1.3" + minimist-options "^3.0.1" + normalize-package-data "^2.3.4" + read-pkg-up "^3.0.0" + redent "^2.0.0" + trim-newlines "^2.0.0" + +merge-stream@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" + integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= + dependencies: + readable-stream "^2.0.1" + +merge@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" + integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ== + +methods@^1.1.1, methods@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= + +micromatch@^2.3.11: + version "2.3.11" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" + integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= + dependencies: + arr-diff "^2.0.0" + array-unique "^0.2.1" + braces "^1.8.2" + expand-brackets "^0.1.4" + extglob "^0.3.1" + filename-regex "^2.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.1" + kind-of "^3.0.2" + normalize-path "^2.0.1" + object.omit "^2.0.0" + parse-glob "^3.0.4" + regex-cache "^0.4.2" + +micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +mime-db@~1.37.0: + version "1.37.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8" + integrity sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg== + +mime-types@^2.1.12, mime-types@~2.1.18, mime-types@~2.1.19: + version "2.1.21" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz#28995aa1ecb770742fe6ae7e58f9181c744b3f96" + integrity sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg== + dependencies: + mime-db "~1.37.0" + +mime@^1.4.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mime@^2.3.1: + version "2.4.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.0.tgz#e051fd881358585f3279df333fe694da0bcffdd6" + integrity sha512-ikBcWwyqXQSHKtciCcctu9YfPbFYZ4+gbHEmE0Q8jzcTYQg5dHCr3g2wwAZjPoJfQVXZq6KXAjpXOTf5/cjT7w== + +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + +mimic-response@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" + integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== + +minimatch@^3.0.3, minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + +minimist-options@^3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" + integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ== + dependencies: + arrify "^1.0.1" + is-plain-obj "^1.1.0" + +minimist@0.0.8: + version "0.0.8" + resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= + +minimist@^0.1.0: + version "0.1.0" + resolved "http://registry.npmjs.org/minimist/-/minimist-0.1.0.tgz#99df657a52574c21c9057497df742790b2b4c0de" + integrity sha1-md9lelJXTCHJBXSX33QnkLK0wN4= + +minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: + version "1.2.0" + resolved "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= + +minimist@~0.0.1: + version "0.0.10" + resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" + integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= + +minipass@^2.2.1, minipass@^2.3.4: + version "2.3.5" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" + integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== + dependencies: + safe-buffer "^5.1.2" + yallist "^3.0.0" + +minizlib@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.1.tgz#6734acc045a46e61d596a43bb9d9cd326e19cc42" + integrity sha512-TrfjCjk4jLhcJyGMYymBH6oTXcWjYbUAXTHDbtnWHjZC25h0cdajHuPE1zxb4DVmu8crfh+HwH/WMuyLG0nHBg== + dependencies: + minipass "^2.2.1" + +mixin-deep@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" + integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: + version "0.5.1" + resolved "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= + dependencies: + minimist "0.0.8" + +modify-values@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" + integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== + +moment@^2.6.0: + version "2.22.2" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.22.2.tgz#3c257f9839fc0e93ff53149632239eb90783ff66" + integrity sha1-PCV/mDn8DpP/UxSWMiOeuQeD/2Y= + +mongodb-core@3.1.9: + version "3.1.9" + resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-3.1.9.tgz#c31ee407bf932b0149eaed775c17ee09974e4ca3" + integrity sha512-MJpciDABXMchrZphh3vMcqu8hkNf/Mi+Gk6btOimVg1XMxLXh87j6FAvRm+KmwD1A9fpu3qRQYcbQe4egj23og== + dependencies: + bson "^1.1.0" + require_optional "^1.0.1" + safe-buffer "^5.1.2" + optionalDependencies: + saslprep "^1.0.0" + +mongodb@3.1.10: + version "3.1.10" + resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-3.1.10.tgz#45ad9b74ea376f4122d0881b75e5489b9e504ed7" + integrity sha512-Uml42GeFxhTGQVml1XQ4cD0o/rp7J2ROy0fdYUcVitoE7vFqEhKH4TYVqRDpQr/bXtCJVxJdNQC1ntRxNREkPQ== + dependencies: + mongodb-core "3.1.9" + safe-buffer "^5.1.2" + +mongoose-legacy-pluralize@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/mongoose-legacy-pluralize/-/mongoose-legacy-pluralize-1.0.2.tgz#3ba9f91fa507b5186d399fb40854bff18fb563e4" + integrity sha512-Yo/7qQU4/EyIS8YDFSeenIvXxZN+ld7YdV9LqFVQJzTLye8unujAWPZ4NWKfFA+RNjh+wvTWKY9Z3E5XM6ZZiQ== + +mongoose@^5.0.0, mongoose@^5.2.14: + version "5.3.15" + resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-5.3.15.tgz#11a803a4ae640b0cce29a2579282ac9dd005c47a" + integrity sha512-51PchMQn2kFZYPSe0vfr8RcJxm6g7RokfcVl2xVORogtT5GUKu6RgnRXsUV7v9vZ+b3Wh//ph53kuIyhtXi56g== + dependencies: + async "2.6.1" + bson "~1.1.0" + kareem "2.3.0" + lodash.get "4.4.2" + mongodb "3.1.10" + mongodb-core "3.1.9" + mongoose-legacy-pluralize "1.0.2" + mpath "0.5.1" + mquery "3.2.0" + ms "2.0.0" + regexp-clone "0.0.1" + safe-buffer "5.1.2" + sliced "1.0.1" + +mpath@0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.5.1.tgz#17131501f1ff9e6e4fbc8ffa875aa7065b5775ab" + integrity sha512-H8OVQ+QEz82sch4wbODFOz+3YQ61FYz/z3eJ5pIdbMEaUzDqA268Wd+Vt4Paw9TJfvDgVKaayC0gBzMIw2jhsg== + +mquery@3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/mquery/-/mquery-3.2.0.tgz#e276472abd5109686a15eb2a8e0761db813c81cc" + integrity sha512-qPJcdK/yqcbQiKoemAt62Y0BAc0fTEKo1IThodBD+O5meQRJT/2HSe5QpBNwaa4CjskoGrYWsEyjkqgiE0qjhg== + dependencies: + bluebird "3.5.1" + debug "3.1.0" + regexp-clone "0.0.1" + safe-buffer "5.1.2" + sliced "1.0.1" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +ms@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + +mute-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= + +nan@^2.9.2: + version "2.11.1" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.11.1.tgz#90e22bccb8ca57ea4cd37cc83d3819b52eea6766" + integrity sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA== + +nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + +needle@^2.2.1: + version "2.2.4" + resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" + integrity sha512-HyoqEb4wr/rsoaIDfTH2aVL9nWtQqba2/HvMv+++m8u0dz808MaagKILxtfeSN7QU7nvbQ79zk3vYOJp9zsNEA== + dependencies: + debug "^2.1.2" + iconv-lite "^0.4.4" + sax "^1.2.4" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= + +node-notifier@^5.2.1: + version "5.3.0" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.3.0.tgz#c77a4a7b84038733d5fb351aafd8a268bfe19a01" + integrity sha512-AhENzCSGZnZJgBARsUjnQ7DnZbzyP+HxlVXuD0xqAnvL8q+OqtSX7lGg9e8nHzwXkMMXNdVeqq4E2M3EUAqX6Q== + dependencies: + growly "^1.3.0" + semver "^5.5.0" + shellwords "^0.1.1" + which "^1.3.0" + +node-pre-gyp@^0.10.0: + version "0.10.3" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" + integrity sha512-d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A== + dependencies: + detect-libc "^1.0.2" + mkdirp "^0.5.1" + needle "^2.2.1" + nopt "^4.0.1" + npm-packlist "^1.1.6" + npmlog "^4.0.2" + rc "^1.2.7" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^4" + +nodemon@^1.17.3: + version "1.18.7" + resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.18.7.tgz#716b66bf3e89ac4fcfb38a9e61887a03fc82efbb" + integrity sha512-xuC1V0F5EcEyKQ1VhHYD13owznQbUw29JKvZ8bVH7TmuvVNHvvbp9pLgE4PjTMRJVe0pJ8fGRvwR2nMiosIsPQ== + dependencies: + chokidar "^2.0.4" + debug "^3.1.0" + ignore-by-default "^1.0.1" + minimatch "^3.0.4" + pstree.remy "^1.1.2" + semver "^5.5.0" + supports-color "^5.2.0" + touch "^3.1.0" + undefsafe "^2.0.2" + update-notifier "^2.3.0" + +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= + dependencies: + abbrev "1" + osenv "^0.1.4" + +nopt@~1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" + integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= + dependencies: + abbrev "1" + +normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: + version "2.4.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" + integrity sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw== + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" + integrity sha1-MtDkcvkf80VwHBWoMRAY07CpA3k= + +normalize-path@^2.0.1, normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-url@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6" + integrity sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw== + dependencies: + prepend-http "^2.0.0" + query-string "^5.0.1" + sort-keys "^2.0.0" + +npm-bundled@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" + integrity sha512-m/e6jgWu8/v5niCUKQi9qQl8QdeEduFA96xHDDzFGqly0OOjI7c+60KM/2sppfnUU9JJagf+zs+yGhqSOFj71g== + +npm-packlist@^1.1.6: + version "1.1.12" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.12.tgz#22bde2ebc12e72ca482abd67afc51eb49377243a" + integrity sha512-WJKFOVMeAlsU/pjXuqVdzU0WfgtIBCupkEVwn+1Y0ERAbUfWw8R4GjgVbaKnUjRoD2FoQbHOCbOyT5Mbs9Lw4g== + dependencies: + ignore-walk "^3.0.1" + npm-bundled "^1.0.1" + +npm-path@^2.0.2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz#c641347a5ff9d6a09e4d9bce5580c4f505278e64" + integrity sha512-IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw== + dependencies: + which "^1.2.10" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + +npm-which@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" + integrity sha1-kiXybsOihcIJyuZ8OxGmtKtxQKo= + dependencies: + commander "^2.9.0" + npm-path "^2.0.2" + which "^1.2.10" + +npmlog@^4.0.2, npmlog@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + +nwsapi@^2.0.7: + version "2.0.9" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.0.9.tgz#77ac0cdfdcad52b6a1151a84e73254edc33ed016" + integrity sha512-nlWFSCTYQcHk/6A9FFnfhKc14c3aFhfdNBXgo8Qgi9QTBu/qg3Ww+Uiz9wMzXd1T8GFxPc2QIHB6Qtf2XFryFQ== + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +object-assign@^4.0.1, object-assign@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-keys@^1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" + integrity sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag== + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= + dependencies: + isobject "^3.0.0" + +object.getownpropertydescriptors@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" + integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= + dependencies: + define-properties "^1.1.2" + es-abstract "^1.5.1" + +object.omit@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo= + dependencies: + for-own "^0.1.4" + is-extendable "^0.1.1" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= + dependencies: + isobject "^3.0.1" + +once@^1.3.0, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= + dependencies: + mimic-fn "^1.0.0" + +optimist@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +optionator@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + +os-homedir@^1.0.0: + version "1.0.2" + resolved "http://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= + +os-locale@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" + integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA== + dependencies: + execa "^0.7.0" + lcid "^1.0.0" + mem "^1.1.0" + +os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: + version "1.0.2" + resolved "http://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +osenv@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +p-cancelable@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0" + integrity sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ== + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + +p-is-promise@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e" + integrity sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4= + +p-limit@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== + dependencies: + p-try "^1.0.0" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= + dependencies: + p-limit "^1.1.0" + +p-map@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" + integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA== + +p-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.0.0.tgz#be18c5a5adeb8e156460651421aceca56c213a50" + integrity sha512-GO107XdrSUmtHxVoi60qc9tUl/KkNKm+X2CF4P9amalpGxv5YqVPJNfSb0wcA+syCopkZvYYIzW8OVTQW59x/w== + +p-timeout@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038" + integrity sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA== + dependencies: + p-finally "^1.0.0" + +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= + +package-json@^4.0.0, package-json@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" + integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0= + dependencies: + got "^6.7.1" + registry-auth-token "^3.0.1" + registry-url "^3.0.3" + semver "^5.1.0" + +parse-github-repo-url@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" + integrity sha1-nn2LslKmy2ukJZUGC3v23z28H1A= + +parse-glob@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" + integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw= + dependencies: + glob-base "^0.3.0" + is-dotfile "^1.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.0" + +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= + dependencies: + error-ex "^1.2.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse5@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" + integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= + +path-dirname@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" + integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= + +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= + dependencies: + pinkie-promise "^2.0.0" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + +path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: + version "1.0.1" + resolved "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-is-inside@^1.0.1, path-is-inside@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= + +path-key@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + +path-parse@^1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== + +path-to-regexp@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.4.0.tgz#35ce7f333d5616f1c1e1bfe266c3aba2e5b2e704" + integrity sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w== + +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= + dependencies: + pify "^2.0.0" + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + +pify@^2.0.0, pify@^2.3.0: + version "2.3.0" + resolved "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= + +pkg-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= + dependencies: + find-up "^2.1.0" + +please-upgrade-node@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz#ed320051dfcc5024fae696712c8288993595e8ac" + integrity sha512-KY1uHnQ2NlQHqIJQpnh/i54rKkuxCEBx+voJIS/Mvb+L2iYd2NMotwduhKTMjfC1uKoX3VXOxLjIYG66dfJTVQ== + dependencies: + semver-compare "^1.0.0" + +pn@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= + +prepend-http@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= + +prepend-http@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" + integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= + +preserve@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= + +pretty-format@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz#5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760" + integrity sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw== + dependencies: + ansi-regex "^3.0.0" + ansi-styles "^3.2.0" + +private@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== + +process-nextick-args@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" + integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== + +prompts@^0.1.9: + version "0.1.14" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-0.1.14.tgz#a8e15c612c5c9ec8f8111847df3337c9cbd443b2" + integrity sha512-rxkyiE9YH6zAz/rZpywySLKkpaj0NMVyNw1qhsubdbjjSgcayjTShDreZGlFMcGSu5sab3bAKPfFk78PB90+8w== + dependencies: + kleur "^2.0.1" + sisteransi "^0.1.1" + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= + +psl@^1.1.24, psl@^1.1.28: + version "1.1.29" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.29.tgz#60f580d360170bb722a797cc704411e6da850c67" + integrity sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ== + +pstree.remy@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.2.tgz#4448bbeb4b2af1fed242afc8dc7416a6f504951a" + integrity sha512-vL6NLxNHzkNTjGJUpMm5PLC+94/0tTlC1vkP9bdU0pOHih+EujMjgMTwfZopZvHWRFbqJ5Y73OMoau50PewDDA== + +punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= + +punycode@^2.1.0, punycode@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +q@^1.4.1, q@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" + integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= + +qs@^6.5.1, qs@^6.6.0: + version "6.6.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.6.0.tgz#a99c0f69a8d26bf7ef012f871cdabb0aee4424c2" + integrity sha512-KIJqT9jQJDQx5h5uAVPimw6yVg2SekOKu959OCtktD3FjzbpvaPr8i4zzg07DOMz+igA4W/aNM7OV8H37pFYfA== + +qs@~6.5.2: + version "6.5.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== + +query-string@^5.0.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb" + integrity sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw== + dependencies: + decode-uri-component "^0.2.0" + object-assign "^4.1.0" + strict-uri-encode "^1.0.0" + +quick-lru@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" + integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g= + +randomatic@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" + integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== + dependencies: + is-number "^4.0.0" + kind-of "^6.0.0" + math-random "^1.0.1" + +rc@^1.0.1, rc@^1.1.6, rc@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +read-cmd-shim@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-1.0.1.tgz#2d5d157786a37c055d22077c32c53f8329e91c7b" + integrity sha1-LV0Vd4ajfAVdIgd8MsU/gynpHHs= + dependencies: + graceful-fs "^4.1.2" + +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= + dependencies: + find-up "^1.0.0" + read-pkg "^1.0.0" + +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + +read-pkg-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" + integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= + dependencies: + find-up "^2.0.0" + read-pkg "^3.0.0" + +read-pkg@^1.0.0, read-pkg@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@^2.3.5, readable-stream@~2.3.6: + version "2.3.6" + resolved "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" + integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readdirp@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" + integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== + dependencies: + graceful-fs "^4.1.11" + micromatch "^3.1.10" + readable-stream "^2.0.2" + +realpath-native@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.2.tgz#cd51ce089b513b45cf9b1516c82989b51ccc6560" + integrity sha512-+S3zTvVt9yTntFrBpm7TQmQ3tzpCrnA1a/y+3cUHAc9ZR6aIjG0WNLR+Rj79QpJktY+VeW/TQtFlQ1bzsehI8g== + dependencies: + util.promisify "^1.0.0" + +redent@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= + dependencies: + indent-string "^2.1.0" + strip-indent "^1.0.1" + +redent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" + integrity sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo= + dependencies: + indent-string "^3.0.0" + strip-indent "^2.0.0" + +reflect-metadata@^0.1.12: + version "0.1.12" + resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.12.tgz#311bf0c6b63cd782f228a81abe146a2bfa9c56f2" + integrity sha512-n+IyV+nGz3+0q3/Yf1ra12KpCyi001bi4XFxSjbiWWjfqb52iTTtpGXmCCAOWWIAn9KEuFZKGqBERHmrtScZ3A== + +regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== + +regex-cache@^0.4.2: + version "0.4.4" + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" + integrity sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ== + dependencies: + is-equal-shallow "^0.1.3" + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regexp-clone@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/regexp-clone/-/regexp-clone-0.0.1.tgz#a7c2e09891fdbf38fbb10d376fb73003e68ac589" + integrity sha1-p8LgmJH9vzj7sQ03b7cwA+aKxYk= + +registry-auth-token@^3.0.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" + integrity sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ== + dependencies: + rc "^1.1.6" + safe-buffer "^5.0.1" + +registry-url@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" + integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= + dependencies: + rc "^1.0.1" + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + +repeat-element@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" + integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== + +repeat-string@^1.5.2, repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= + dependencies: + is-finite "^1.0.0" + +request-promise-core@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" + integrity sha1-Pu4AssWqgyOc+wTFcA2jb4HNCLY= + dependencies: + lodash "^4.13.1" + +request-promise-native@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" + integrity sha1-UoF3D2jgyXGeUWP9P6tIIhX0/aU= + dependencies: + request-promise-core "1.1.1" + stealthy-require "^1.1.0" + tough-cookie ">=2.3.3" + +request@^2.87.0: + version "2.88.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" + integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.0" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.4.3" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= + +require_optional@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.1.tgz#4cf35a4247f64ca3df8c2ef208cc494b1ca8fc2e" + integrity sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g== + dependencies: + resolve-from "^2.0.0" + semver "^5.1.0" + +resolve-cwd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" + integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= + dependencies: + resolve-from "^3.0.0" + +resolve-from@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" + integrity sha1-lICrIOlP+h2egKgEx+oUdhGWa1c= + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha1-six699nWiBvItuZTM17rywoYh0g= + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + +resolve@1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" + integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= + +resolve@^1.3.2: + version "1.8.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" + integrity sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA== + dependencies: + path-parse "^1.0.5" + +responselike@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" + integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= + dependencies: + lowercase-keys "^1.0.0" + +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" + integrity sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w== + dependencies: + glob "^7.0.5" + +rsvp@^3.3.3: + version "3.6.2" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" + integrity sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw== + +run-async@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" + integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= + dependencies: + is-promise "^2.1.0" + +rx-lite-aggregates@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" + integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= + dependencies: + rx-lite "*" + +rx-lite@*, rx-lite@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" + integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= + +rxjs@^6.3.3, rxjs@~6.3.3: + version "6.3.3" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz#3c6a7fa420e844a81390fb1158a9ec614f4bad55" + integrity sha512-JTWmoY9tWCs7zvIk/CvRjhjGaOd+OVBM987mxFo+OW66cGpdKjZcpmc74ES1sB//7Kl/PAe8+wEakuhG4pcgOw== + dependencies: + tslib "^1.9.0" + +safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-regex@^1.1.0: + version "1.1.0" + resolved "http://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + dependencies: + ret "~0.1.10" + +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sane@^2.0.0: + version "2.5.2" + resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa" + integrity sha1-tNwYYcIbQn6SlQej51HiosuKs/o= + dependencies: + anymatch "^2.0.0" + capture-exit "^1.2.0" + exec-sh "^0.2.0" + fb-watchman "^2.0.0" + micromatch "^3.1.4" + minimist "^1.1.1" + walker "~1.0.5" + watch "~0.18.0" + optionalDependencies: + fsevents "^1.2.3" + +saslprep@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/saslprep/-/saslprep-1.0.2.tgz#da5ab936e6ea0bbae911ffec77534be370c9f52d" + integrity sha512-4cDsYuAjXssUSjxHKRe4DTZC0agDwsCqcMqtJAQPzC74nJ7LfAJflAtC1Zed5hMzEQKj82d3tuzqdGNRsLJ4Gw== + dependencies: + sparse-bitfield "^3.0.3" + +sax@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + +semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= + +semver-diff@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" + integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= + dependencies: + semver "^5.0.3" + +"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" + integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +set-value@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" + integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.1" + to-object-path "^0.3.0" + +set-value@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" + integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + +shellwords@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= + +sisteransi@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-0.1.1.tgz#5431447d5f7d1675aac667ccd0b865a4994cb3ce" + integrity sha512-PmGOd02bM9YO5ifxpw36nrNMBTptEtfRl4qUYl9SndkolplkrZZOW7PGHjrZL53QvMVj9nQ+TKqUnRsw4tJa4g== + +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= + +slice-ansi@0.0.4: + version "0.0.4" + resolved "http://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + integrity sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU= + +sliced@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/sliced/-/sliced-1.0.1.tgz#0b3a662b5d04c3177b1926bea82b03f837a2ef41" + integrity sha1-CzpmK10Ewxd7GSa+qCsD+Dei70E= + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +sort-keys@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" + integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg= + dependencies: + is-plain-obj "^1.0.0" + +source-map-resolve@^0.5.0: + version "0.5.2" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" + integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== + dependencies: + atob "^2.1.1" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-support@^0.4.15: + version "0.4.18" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" + integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== + dependencies: + source-map "^0.5.6" + +source-map-support@^0.5.6: + version "0.5.9" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f" + integrity sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-url@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= + +source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +sparse-bitfield@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz#ff4ae6e68656056ba4b3e792ab3334d38273ca11" + integrity sha1-/0rm5oZWBWuks+eSqzM004JzyhE= + dependencies: + memory-pager "^1.0.2" + +spdx-correct@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" + integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" + integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== + +spdx-expression-parse@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" + integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz#a59efc09784c2a5bada13cfeaf5c75dd214044d2" + integrity sha512-qky9CVt0lVIECkEsYbNILVnPvycuEBkXoMFLRWsREkomQLevYhtRKC+R91a5TOAQ3bCMjikRwhyaRqj1VYatYg== + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + dependencies: + extend-shallow "^3.0.0" + +split2@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" + integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw== + dependencies: + through2 "^2.0.2" + +split@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" + integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== + dependencies: + through "2" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + +sshpk@^1.7.0: + version "1.15.2" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.15.2.tgz#c946d6bd9b1a39d0e8635763f5242d6ed6dcb629" + integrity sha512-Ra/OXQtuh0/enyl4ETZAfTaeksa6BXks5ZcjpSUNrjBr0DvrJKX+1fsKDPpT9TBXgHAFsa4510aNVgI8g/+SzA== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + +stack-utils@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" + integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== + +staged-git-files@1.1.1: + version "1.1.1" + resolved "http://registry.npmjs.org/staged-git-files/-/staged-git-files-1.1.1.tgz#37c2218ef0d6d26178b1310719309a16a59f8f7b" + integrity sha512-H89UNKr1rQJvI1c/PIR3kiAMBV23yvR7LItZiV74HWZwzt7f3YHuujJ9nJZlt58WlFox7XQsOahexwk7nTe69A== + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +stealthy-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= + +strict-uri-encode@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" + integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= + +string-argv@^0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.0.2.tgz#dac30408690c21f3c3630a3ff3a05877bdcbd736" + integrity sha1-2sMECGkMIfPDYwo/86BYd73L1zY= + +string-length@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" + integrity sha1-1A27aGo6zpYMHP/KVivyxF+DY+0= + dependencies: + astral-regex "^1.0.0" + strip-ansi "^4.0.0" + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "http://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +stringify-object@^3.2.2: + version "3.3.0" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" + integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== + dependencies: + get-own-enumerable-property-symbols "^3.0.0" + is-obj "^1.0.1" + is-regexp "^1.0.0" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-bom@3.0.0, strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= + dependencies: + is-utf8 "^0.2.0" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "http://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + +strip-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= + dependencies: + get-stdin "^4.0.1" + +strip-indent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" + integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + +strong-log-transformer@^1.0.6: + version "1.0.6" + resolved "http://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-1.0.6.tgz#f7fb93758a69a571140181277eea0c2eb1301fa3" + integrity sha1-9/uTdYpppXEUAYEnfuoMLrEwH6M= + dependencies: + byline "^5.0.0" + duplexer "^0.1.1" + minimist "^0.1.0" + moment "^2.6.0" + through "^2.3.4" + +superagent@^3.8.3: + version "3.8.3" + resolved "https://registry.yarnpkg.com/superagent/-/superagent-3.8.3.tgz#460ea0dbdb7d5b11bc4f78deba565f86a178e128" + integrity sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA== + dependencies: + component-emitter "^1.2.0" + cookiejar "^2.1.0" + debug "^3.1.0" + extend "^3.0.0" + form-data "^2.3.1" + formidable "^1.2.0" + methods "^1.1.1" + mime "^1.4.1" + qs "^6.5.1" + readable-stream "^2.3.5" + +supertest@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/supertest/-/supertest-3.3.0.tgz#79b27bd7d34392974ab33a31fa51a3e23385987e" + integrity sha512-dMQSzYdaZRSANH5LL8kX3UpgK9G1LRh/jnggs/TI0W2Sz7rkMx9Y48uia3K9NgcaWEV28tYkBnXE4tiFC77ygQ== + dependencies: + methods "^1.1.2" + superagent "^3.8.3" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + +supports-color@^3.1.2: + version "3.2.3" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" + integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= + dependencies: + has-flag "^1.0.0" + +supports-color@^5.2.0, supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +symbol-observable@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" + integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== + +symbol-tree@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" + integrity sha1-rifbOPZgp64uHDt9G8KQgZuFGeY= + +tar@^4: + version "4.4.8" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" + integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ== + dependencies: + chownr "^1.1.1" + fs-minipass "^1.2.5" + minipass "^2.3.4" + minizlib "^1.1.1" + mkdirp "^0.5.0" + safe-buffer "^5.1.2" + yallist "^3.0.2" + +temp-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" + integrity sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0= + +temp-write@^3.3.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/temp-write/-/temp-write-3.4.0.tgz#8cff630fb7e9da05f047c74ce4ce4d685457d492" + integrity sha1-jP9jD7fp2gXwR8dM5M5NaFRX1JI= + dependencies: + graceful-fs "^4.1.2" + is-stream "^1.1.0" + make-dir "^1.0.0" + pify "^3.0.0" + temp-dir "^1.0.0" + uuid "^3.0.1" + +tempfile@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-1.1.1.tgz#5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2" + integrity sha1-W8xOrsxKsscH2LwR2ZzMmiyyh/I= + dependencies: + os-tmpdir "^1.0.0" + uuid "^2.0.1" + +term-size@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" + integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= + dependencies: + execa "^0.7.0" + +test-exclude@^4.2.1: + version "4.2.3" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.3.tgz#a9a5e64474e4398339245a0a769ad7c2f4a97c20" + integrity sha512-SYbXgY64PT+4GAL2ocI3HwPa4Q4TBKm0cwAVeKOt/Aoc0gSpNRjJX8w0pA1LMKZ3LBmd8pYBqApFNQLII9kavA== + dependencies: + arrify "^1.0.1" + micromatch "^2.3.11" + object-assign "^4.1.0" + read-pkg-up "^1.0.1" + require-main-filename "^1.0.1" + +text-extensions@^1.0.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" + integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== + +throat@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" + integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo= + +through2-get@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/through2-get/-/through2-get-0.1.0.tgz#8ec59bb515b3352c1accff434ed7e81ac9d849b7" + integrity sha512-hlySS8S0Xr75MJ8BvTKiGegiJD4V08lJVPO0qzFzx/1XJCkSbn9q2secwiYkoa6jvaHOwF5eAKOutdEXRnKGXg== + dependencies: + lodash.get "^4.0.0" + through2 "^2.0.0" + +through2@^2.0.0, through2@^2.0.2: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6: + version "2.3.8" + resolved "http://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + +timed-out@^4.0.0, timed-out@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" + integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tmpl@1.0.x: + version "1.0.4" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" + integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= + +to-fast-properties@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +touch@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" + integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== + dependencies: + nopt "~1.0.10" + +tough-cookie@>=2.3.3, tough-cookie@^2.3.4: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + +tough-cookie@~2.4.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" + integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== + dependencies: + psl "^1.1.24" + punycode "^1.4.1" + +tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= + dependencies: + punycode "^2.1.0" + +trim-newlines@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= + +trim-newlines@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" + integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA= + +trim-off-newlines@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" + integrity sha1-n5up2e+odkw4dpi8v+sshI8RrbM= + +trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= + +ts-jest@~23.1.3: + version "23.1.4" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-23.1.4.tgz#66ac1d8d3fbf8f9a98432b11aa377aa850664b2b" + integrity sha512-9rCSxbWfoZxxeXnSoEIzRNr9hDIQ8iEJAWmSRsWhDHDT8OeuGfURhJQUE8jtJlkyEygs6rngH8RYtHz9cfjmEA== + dependencies: + closest-file-data "^0.1.4" + fs-extra "6.0.1" + json5 "^0.5.0" + lodash "^4.17.10" + +ts-node@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-7.0.1.tgz#9562dc2d1e6d248d24bc55f773e3f614337d9baf" + integrity sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw== + dependencies: + arrify "^1.0.0" + buffer-from "^1.1.0" + diff "^3.1.0" + make-error "^1.1.1" + minimist "^1.2.0" + mkdirp "^0.5.1" + source-map-support "^0.5.6" + yn "^2.0.0" + +tsconfig-paths@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.7.0.tgz#02ae978db447b22e09dafcd4198be95c4885ceb2" + integrity sha512-7iE+Q/2E1lgvxD+c0Ot+GFFmgmfIjt/zCayyruXkXQ84BLT85gHXy0WSoQSiuFX9+d+keE/jiON7notV74ZY+A== + dependencies: + "@types/json5" "^0.0.29" + deepmerge "^2.0.1" + json5 "^1.0.1" + minimist "^1.2.0" + strip-bom "^3.0.0" + +tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" + integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== + +tslint@~5.9.1: + version "5.9.1" + resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.9.1.tgz#1255f87a3ff57eb0b0e1f0e610a8b4748046c9ae" + integrity sha1-ElX4ej/1frCw4fDmEKi0dIBGya4= + dependencies: + babel-code-frame "^6.22.0" + builtin-modules "^1.1.1" + chalk "^2.3.0" + commander "^2.12.1" + diff "^3.2.0" + glob "^7.1.1" + js-yaml "^3.7.0" + minimatch "^3.0.4" + resolve "^1.3.2" + semver "^5.3.0" + tslib "^1.8.0" + tsutils "^2.12.1" + +tsutils@^2.12.1: + version "2.29.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99" + integrity sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== + dependencies: + tslib "^1.8.1" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= + dependencies: + prelude-ls "~1.1.2" + +type-is@~1.6.16: + version "1.6.16" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194" + integrity sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.18" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + +typegoose@^5.2.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/typegoose/-/typegoose-5.4.1.tgz#1c79170776df10ee4e7b7a04831976c0f315c5a1" + integrity sha512-z4ZgALqV/RKIMhnfflsOyrTSyazMDM7qFqv5lvFmrMaDhMiUfdkHwCd4dv/vAosXJ14B9tncyda9EUt4Rtf70Q== + dependencies: + lodash "4.17.10" + mongoose "^5.0.0" + reflect-metadata "^0.1.12" + +typescript@~3.1.1: + version "3.1.6" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.1.6.tgz#b6543a83cfc8c2befb3f4c8fba6896f5b0c9be68" + integrity sha512-tDMYfVtvpb96msS1lDX9MEdHrW4yOuZ4Kdc4Him9oU796XldPYF/t2+uKoX0BBa0hXXwDlqYQbXY5Rzjzc5hBA== + +uglify-js@^3.1.4: + version "3.4.9" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.9.tgz#af02f180c1207d76432e473ed24a28f4a782bae3" + integrity sha512-8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q== + dependencies: + commander "~2.17.1" + source-map "~0.6.1" + +undefsafe@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.2.tgz#225f6b9e0337663e0d8e7cfd686fc2836ccace76" + integrity sha1-Il9rngM3Zj4Njnz9aG/Cg2zKznY= + dependencies: + debug "^2.2.0" + +union-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" + integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^0.4.3" + +unique-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" + integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= + dependencies: + crypto-random-string "^1.0.0" + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +unzip-response@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" + integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= + +upath@^1.0.5: + version "1.1.0" + resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd" + integrity sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw== + +update-notifier@^2.3.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" + integrity sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw== + dependencies: + boxen "^1.2.1" + chalk "^2.0.1" + configstore "^3.0.0" + import-lazy "^2.1.0" + is-ci "^1.0.10" + is-installed-globally "^0.1.0" + is-npm "^1.0.0" + latest-version "^3.0.0" + semver-diff "^2.0.0" + xdg-basedir "^3.0.0" + +uri-js@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + dependencies: + punycode "^2.1.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + +url-parse-lax@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" + integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= + dependencies: + prepend-http "^1.0.1" + +url-parse-lax@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" + integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= + dependencies: + prepend-http "^2.0.0" + +url-to-options@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9" + integrity sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k= + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +util.promisify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" + integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== + dependencies: + define-properties "^1.1.2" + object.getownpropertydescriptors "^2.0.3" + +uuid@^2.0.1: + version "2.0.3" + resolved "http://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" + integrity sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho= + +uuid@^3.0.1, uuid@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" + integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +w3c-hr-time@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" + integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= + dependencies: + browser-process-hrtime "^0.1.2" + +walker@~1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" + integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= + dependencies: + makeerror "1.0.x" + +watch@~0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" + integrity sha1-KAlUdsbffJDJYxOJkMClQj60uYY= + dependencies: + exec-sh "^0.2.0" + minimist "^1.2.0" + +wcwidth@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= + dependencies: + defaults "^1.0.3" + +webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: + version "1.0.5" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== + dependencies: + iconv-lite "0.4.24" + +whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + +whatwg-url@^6.4.1: + version "6.5.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" + integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +whatwg-url@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" + integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + +which@^1.2.10, which@^1.2.12, which@^1.2.9, which@^1.3.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== + dependencies: + string-width "^1.0.2 || 2" + +widest-line@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" + integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== + dependencies: + string-width "^2.1.1" + +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrap-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" + integrity sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo= + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +write-file-atomic@^2.0.0, write-file-atomic@^2.1.0, write-file-atomic@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" + integrity sha512-xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +write-json-file@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" + integrity sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8= + dependencies: + detect-indent "^5.0.0" + graceful-fs "^4.1.2" + make-dir "^1.0.0" + pify "^3.0.0" + sort-keys "^2.0.0" + write-file-atomic "^2.0.0" + +write-pkg@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.2.0.tgz#0e178fe97820d389a8928bc79535dbe68c2cff21" + integrity sha512-tX2ifZ0YqEFOF1wjRW2Pk93NLsj02+n1UP5RvO6rCs0K6R2g1padvf006cY74PQJKMGS2r42NK7FD0dG6Y6paw== + dependencies: + sort-keys "^2.0.0" + write-json-file "^2.2.0" + +ws@^5.2.0: + version "5.2.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" + integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== + dependencies: + async-limiter "~1.0.0" + +xdg-basedir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" + integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= + +xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== + +xtend@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= + +y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= + +yallist@^3.0.0, yallist@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" + integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== + +yargs-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" + integrity sha1-jQrELxbqVd69MyyvTEA4s+P139k= + dependencies: + camelcase "^4.1.0" + +yargs-parser@^9.0.2: + version "9.0.2" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" + integrity sha1-nM9qQ0YP5O1Aqbto9I1DuKaMwHc= + dependencies: + camelcase "^4.1.0" + +yargs@^11.0.0: + version "11.1.0" + resolved "http://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" + integrity sha512-NwW69J42EsCSanF8kyn5upxvjp5ds+t3+udGBeTbFnERA+lF541DDpMawzo4z6W/QrzNM18D+BPMiOBibnFV5A== + dependencies: + cliui "^4.0.0" + decamelize "^1.1.1" + find-up "^2.1.0" + get-caller-file "^1.0.1" + os-locale "^2.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1" + yargs-parser "^9.0.2" + +yargs@^8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" + integrity sha1-YpmpBVsc78lp/355wdkY3Osiw2A= + dependencies: + camelcase "^4.1.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^2.0.0" + read-pkg-up "^2.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1" + yargs-parser "^7.0.0" + +yn@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" + integrity sha1-5a2ryKz0CPY4X8dklWhMiOavaJo= diff --git a/integration/data/oracle.json b/integration/data/oracle.json deleted file mode 100644 index 57ef4b52..00000000 --- a/integration/data/oracle.json +++ /dev/null @@ -1,3031 +0,0 @@ -{ - "jsonVersion": 4, - "lang": "", - "serverUUID": "", - "serverName": "oracle", - "family": "oracle", - "release": "7.9", - "container": { - "containerID": "", - "name": "", - "image": "", - "type": "", - "uuid": "" - }, - "platform": { - "name": "aws", - "instanceID": "" - }, - "ipv4Addrs": [ - "192.168.0.221" - ], - "scannedAt": "2021-04-26T17:48:28.782669237+09:00", - "scanMode": "fast-root mode", - "scannedVersion": "v0.15.11", - "scannedRevision": "build-20210426_174218_8af2598", - "scannedBy": "dev", - "scannedVia": "remote", - "scannedIpv4Addrs": [ - "172.27.0.1" - ], - "reportedAt": "0001-01-01T00:00:00Z", - "reportedVersion": "", - "reportedRevision": "", - "reportedBy": "", - "errors": [], - "warnings": [], - "scannedCves": {}, - "runningKernel": { - "release": "5.4.17-2102.200.13.el7uek.x86_64", - "version": "", - "rebootRequired": false - }, - "packages": { - "GeoIP": { - "name": "GeoIP", - "version": "1.5.0", - "release": "14.el7", - "newVersion": "1.5.0", - "newRelease": "14.el7", - "arch": "x86_64", - "repository": "" - }, - "PyYAML": { - "name": "PyYAML", - "version": "3.10", - "release": "11.el7", - "newVersion": "3.10", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "acl": { - "name": "acl", - "version": "2.2.51", - "release": "15.el7", - "newVersion": "2.2.51", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "" - }, - "acpid": { - "name": "acpid", - "version": "2.0.19", - "release": "9.el7", - "newVersion": "2.0.19", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "audit-libs": { - "name": "audit-libs", - "version": "2.8.5", - "release": "4.el7", - "newVersion": "2.8.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "audit-libs-python": { - "name": "audit-libs-python", - "version": "2.8.5", - "release": "4.el7", - "newVersion": "2.8.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "authconfig": { - "name": "authconfig", - "version": "6.2.8", - "release": "30.el7", - "newVersion": "6.2.8", - "newRelease": "30.el7", - "arch": "x86_64", - "repository": "" - }, - "basesystem": { - "name": "basesystem", - "version": "10.0", - "release": "7.0.1.el7", - "newVersion": "10.0", - "newRelease": "7.0.1.el7", - "arch": "noarch", - "repository": "" - }, - "bash": { - "name": "bash", - "version": "4.2.46", - "release": "34.el7", - "newVersion": "4.2.46", - "newRelease": "34.el7", - "arch": "x86_64", - "repository": "" - }, - "bc": { - "name": "bc", - "version": "1.06.95", - "release": "13.el7", - "newVersion": "1.06.95", - "newRelease": "13.el7", - "arch": "x86_64", - "repository": "" - }, - "bind-export-libs": { - "name": "bind-export-libs", - "version": "32:9.11.4", - "release": "26.P2.el7_9.4", - "newVersion": "32:9.11.4", - "newRelease": "26.P2.el7_9.4", - "arch": "x86_64", - "repository": "" - }, - "bind-libs-lite": { - "name": "bind-libs-lite", - "version": "32:9.11.4", - "release": "26.P2.el7_9.4", - "newVersion": "32:9.11.4", - "newRelease": "26.P2.el7_9.4", - "arch": "x86_64", - "repository": "" - }, - "bind-license": { - "name": "bind-license", - "version": "32:9.11.4", - "release": "26.P2.el7_9.4", - "newVersion": "32:9.11.4", - "newRelease": "26.P2.el7_9.4", - "arch": "noarch", - "repository": "" - }, - "binutils": { - "name": "binutils", - "version": "2.27", - "release": "44.base.0.3.el7", - "newVersion": "2.27", - "newRelease": "44.base.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "btrfs-progs": { - "name": "btrfs-progs", - "version": "5.4.0", - "release": "1.el7", - "newVersion": "5.4.0", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "bzip2-libs": { - "name": "bzip2-libs", - "version": "1.0.6", - "release": "13.el7", - "newVersion": "1.0.6", - "newRelease": "13.el7", - "arch": "x86_64", - "repository": "" - }, - "ca-certificates": { - "name": "ca-certificates", - "version": "2020.2.41", - "release": "70.0.el7_8", - "newVersion": "2020.2.41", - "newRelease": "70.0.el7_8", - "arch": "noarch", - "repository": "" - }, - "checkpolicy": { - "name": "checkpolicy", - "version": "2.5", - "release": "8.el7", - "newVersion": "2.5", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "chkconfig": { - "name": "chkconfig", - "version": "1.7.6", - "release": "1.el7", - "newVersion": "1.7.6", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "chrony": { - "name": "chrony", - "version": "3.4", - "release": "1.0.1.el7", - "newVersion": "3.4", - "newRelease": "1.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "cloud-init": { - "name": "cloud-init", - "version": "19.4", - "release": "7.0.3.el7_9.4", - "newVersion": "19.4", - "newRelease": "7.0.3.el7_9.4", - "arch": "x86_64", - "repository": "" - }, - "cloud-utils-growpart": { - "name": "cloud-utils-growpart", - "version": "0.29", - "release": "5.el7", - "newVersion": "0.29", - "newRelease": "5.el7", - "arch": "noarch", - "repository": "" - }, - "coreutils": { - "name": "coreutils", - "version": "8.22", - "release": "24.0.1.el7_9.2", - "newVersion": "8.22", - "newRelease": "24.0.1.el7_9.2", - "arch": "x86_64", - "repository": "" - }, - "cpio": { - "name": "cpio", - "version": "2.11", - "release": "28.el7", - "newVersion": "2.11", - "newRelease": "28.el7", - "arch": "x86_64", - "repository": "" - }, - "cracklib": { - "name": "cracklib", - "version": "2.9.0", - "release": "11.el7", - "newVersion": "2.9.0", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "cracklib-dicts": { - "name": "cracklib-dicts", - "version": "2.9.0", - "release": "11.el7", - "newVersion": "2.9.0", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "cronie": { - "name": "cronie", - "version": "1.4.11", - "release": "23.el7", - "newVersion": "1.4.11", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "" - }, - "cronie-anacron": { - "name": "cronie-anacron", - "version": "1.4.11", - "release": "23.el7", - "newVersion": "1.4.11", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "" - }, - "crontabs": { - "name": "crontabs", - "version": "1.11", - "release": "6.20121102git.el7", - "newVersion": "1.11", - "newRelease": "6.20121102git.el7", - "arch": "noarch", - "repository": "" - }, - "cryptsetup-libs": { - "name": "cryptsetup-libs", - "version": "2.0.3", - "release": "6.el7", - "newVersion": "2.0.3", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "curl": { - "name": "curl", - "version": "7.29.0", - "release": "59.0.1.el7_9.1", - "newVersion": "7.29.0", - "newRelease": "59.0.1.el7_9.1", - "arch": "x86_64", - "repository": "" - }, - "cyrus-sasl-lib": { - "name": "cyrus-sasl-lib", - "version": "2.1.26", - "release": "23.el7", - "newVersion": "2.1.26", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "" - }, - "dbus": { - "name": "dbus", - "version": "1:1.10.24", - "release": "15.0.1.el7", - "newVersion": "1:1.10.24", - "newRelease": "15.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "dbus-glib": { - "name": "dbus-glib", - "version": "0.100", - "release": "7.el7", - "newVersion": "0.100", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "dbus-libs": { - "name": "dbus-libs", - "version": "1:1.10.24", - "release": "15.0.1.el7", - "newVersion": "1:1.10.24", - "newRelease": "15.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "dbus-python": { - "name": "dbus-python", - "version": "1.1.1", - "release": "9.el7", - "newVersion": "1.1.1", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "device-mapper": { - "name": "device-mapper", - "version": "7:1.02.170", - "release": "6.0.3.el7_9.4", - "newVersion": "7:1.02.170", - "newRelease": "6.0.3.el7_9.4", - "arch": "x86_64", - "repository": "" - }, - "device-mapper-libs": { - "name": "device-mapper-libs", - "version": "7:1.02.170", - "release": "6.0.3.el7_9.4", - "newVersion": "7:1.02.170", - "newRelease": "6.0.3.el7_9.4", - "arch": "x86_64", - "repository": "" - }, - "dhclient": { - "name": "dhclient", - "version": "12:4.2.5", - "release": "82.0.1.el7", - "newVersion": "12:4.2.5", - "newRelease": "82.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "dhcp-common": { - "name": "dhcp-common", - "version": "12:4.2.5", - "release": "82.0.1.el7", - "newVersion": "12:4.2.5", - "newRelease": "82.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "dhcp-libs": { - "name": "dhcp-libs", - "version": "12:4.2.5", - "release": "82.0.1.el7", - "newVersion": "12:4.2.5", - "newRelease": "82.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "diffutils": { - "name": "diffutils", - "version": "3.3", - "release": "5.el7", - "newVersion": "3.3", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "dmidecode": { - "name": "dmidecode", - "version": "1:3.2", - "release": "5.el7_9.1", - "newVersion": "1:3.2", - "newRelease": "5.el7_9.1", - "arch": "x86_64", - "repository": "" - }, - "dracut": { - "name": "dracut", - "version": "033", - "release": "572.0.3.el7", - "newVersion": "033", - "newRelease": "572.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "dracut-config-rescue": { - "name": "dracut-config-rescue", - "version": "033", - "release": "572.0.3.el7", - "newVersion": "033", - "newRelease": "572.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "e2fsprogs": { - "name": "e2fsprogs", - "version": "1.45.4", - "release": "3.0.5.el7", - "newVersion": "1.45.4", - "newRelease": "3.0.5.el7", - "arch": "x86_64", - "repository": "" - }, - "e2fsprogs-libs": { - "name": "e2fsprogs-libs", - "version": "1.45.4", - "release": "3.0.5.el7", - "newVersion": "1.45.4", - "newRelease": "3.0.5.el7", - "arch": "x86_64", - "repository": "" - }, - "ebtables": { - "name": "ebtables", - "version": "2.0.10", - "release": "16.el7", - "newVersion": "2.0.10", - "newRelease": "16.el7", - "arch": "x86_64", - "repository": "" - }, - "elfutils-default-yama-scope": { - "name": "elfutils-default-yama-scope", - "version": "0.176", - "release": "5.el7", - "newVersion": "0.176", - "newRelease": "5.el7", - "arch": "noarch", - "repository": "" - }, - "elfutils-libelf": { - "name": "elfutils-libelf", - "version": "0.176", - "release": "5.el7", - "newVersion": "0.176", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "elfutils-libs": { - "name": "elfutils-libs", - "version": "0.176", - "release": "5.el7", - "newVersion": "0.176", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "ethtool": { - "name": "ethtool", - "version": "2:4.8", - "release": "10.el7", - "newVersion": "2:4.8", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "expat": { - "name": "expat", - "version": "2.1.0", - "release": "12.el7", - "newVersion": "2.1.0", - "newRelease": "12.el7", - "arch": "x86_64", - "repository": "" - }, - "file": { - "name": "file", - "version": "5.11", - "release": "37.el7", - "newVersion": "5.11", - "newRelease": "37.el7", - "arch": "x86_64", - "repository": "" - }, - "file-libs": { - "name": "file-libs", - "version": "5.11", - "release": "37.el7", - "newVersion": "5.11", - "newRelease": "37.el7", - "arch": "x86_64", - "repository": "" - }, - "filesystem": { - "name": "filesystem", - "version": "3.2", - "release": "25.el7", - "newVersion": "3.2", - "newRelease": "25.el7", - "arch": "x86_64", - "repository": "" - }, - "findutils": { - "name": "findutils", - "version": "1:4.5.11", - "release": "6.el7", - "newVersion": "1:4.5.11", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "fipscheck": { - "name": "fipscheck", - "version": "1.4.1", - "release": "6.el7", - "newVersion": "1.4.1", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "fipscheck-lib": { - "name": "fipscheck-lib", - "version": "1.4.1", - "release": "6.el7", - "newVersion": "1.4.1", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "firewalld-filesystem": { - "name": "firewalld-filesystem", - "version": "0.6.3", - "release": "12.0.1.el7", - "newVersion": "0.6.3", - "newRelease": "12.0.1.el7", - "arch": "noarch", - "repository": "" - }, - "freetype": { - "name": "freetype", - "version": "2.8", - "release": "14.el7_9.1", - "newVersion": "2.8", - "newRelease": "14.el7_9.1", - "arch": "x86_64", - "repository": "" - }, - "fuse-libs": { - "name": "fuse-libs", - "version": "2.9.4", - "release": "1.0.9.el7", - "newVersion": "2.9.4", - "newRelease": "1.0.9.el7", - "arch": "x86_64", - "repository": "" - }, - "gawk": { - "name": "gawk", - "version": "4.0.2", - "release": "4.el7_3.1", - "newVersion": "4.0.2", - "newRelease": "4.el7_3.1", - "arch": "x86_64", - "repository": "" - }, - "gdbm": { - "name": "gdbm", - "version": "1.10", - "release": "8.el7", - "newVersion": "1.10", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "gdisk": { - "name": "gdisk", - "version": "0.8.10", - "release": "3.el7", - "newVersion": "0.8.10", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "geoipupdate": { - "name": "geoipupdate", - "version": "2.5.0", - "release": "1.el7", - "newVersion": "2.5.0", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "gettext": { - "name": "gettext", - "version": "0.19.8.1", - "release": "3.el7", - "newVersion": "0.19.8.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "gettext-libs": { - "name": "gettext-libs", - "version": "0.19.8.1", - "release": "3.el7", - "newVersion": "0.19.8.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "glib2": { - "name": "glib2", - "version": "2.56.1", - "release": "8.el7", - "newVersion": "2.56.1", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "glibc": { - "name": "glibc", - "version": "2.17", - "release": "323.0.1.el7_9", - "newVersion": "2.17", - "newRelease": "323.0.1.el7_9", - "arch": "x86_64", - "repository": "" - }, - "glibc-common": { - "name": "glibc-common", - "version": "2.17", - "release": "323.0.1.el7_9", - "newVersion": "2.17", - "newRelease": "323.0.1.el7_9", - "arch": "x86_64", - "repository": "" - }, - "gmp": { - "name": "gmp", - "version": "1:6.0.0", - "release": "15.el7", - "newVersion": "1:6.0.0", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "" - }, - "gnupg2": { - "name": "gnupg2", - "version": "2.0.22", - "release": "5.el7_5", - "newVersion": "2.0.22", - "newRelease": "5.el7_5", - "arch": "x86_64", - "repository": "" - }, - "gobject-introspection": { - "name": "gobject-introspection", - "version": "1.56.1", - "release": "1.el7", - "newVersion": "1.56.1", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "gpg-pubkey": { - "name": "gpg-pubkey", - "version": "ec551f03", - "release": "53619141", - "newVersion": "ec551f03", - "newRelease": "53619141", - "arch": "(none)", - "repository": "" - }, - "gpgme": { - "name": "gpgme", - "version": "1.3.2", - "release": "5.el7", - "newVersion": "1.3.2", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "grep": { - "name": "grep", - "version": "2.20", - "release": "3.el7", - "newVersion": "2.20", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "groff-base": { - "name": "groff-base", - "version": "1.22.2", - "release": "8.el7", - "newVersion": "1.22.2", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "grub2": { - "name": "grub2", - "version": "1:2.02", - "release": "0.87.0.9.el7_9.6", - "newVersion": "1:2.02", - "newRelease": "0.87.0.9.el7_9.6", - "arch": "x86_64", - "repository": "" - }, - "grub2-common": { - "name": "grub2-common", - "version": "1:2.02", - "release": "0.87.0.9.el7_9.6", - "newVersion": "1:2.02", - "newRelease": "0.87.0.9.el7_9.6", - "arch": "noarch", - "repository": "" - }, - "grub2-pc": { - "name": "grub2-pc", - "version": "1:2.02", - "release": "0.87.0.9.el7_9.6", - "newVersion": "1:2.02", - "newRelease": "0.87.0.9.el7_9.6", - "arch": "x86_64", - "repository": "" - }, - "grub2-pc-modules": { - "name": "grub2-pc-modules", - "version": "1:2.02", - "release": "0.87.0.9.el7_9.6", - "newVersion": "1:2.02", - "newRelease": "0.87.0.9.el7_9.6", - "arch": "noarch", - "repository": "" - }, - "grub2-tools": { - "name": "grub2-tools", - "version": "1:2.02", - "release": "0.87.0.9.el7_9.6", - "newVersion": "1:2.02", - "newRelease": "0.87.0.9.el7_9.6", - "arch": "x86_64", - "repository": "" - }, - "grub2-tools-extra": { - "name": "grub2-tools-extra", - "version": "1:2.02", - "release": "0.87.0.9.el7_9.6", - "newVersion": "1:2.02", - "newRelease": "0.87.0.9.el7_9.6", - "arch": "x86_64", - "repository": "" - }, - "grub2-tools-minimal": { - "name": "grub2-tools-minimal", - "version": "1:2.02", - "release": "0.87.0.9.el7_9.6", - "newVersion": "1:2.02", - "newRelease": "0.87.0.9.el7_9.6", - "arch": "x86_64", - "repository": "" - }, - "grubby": { - "name": "grubby", - "version": "8.28", - "release": "26.0.3.el7", - "newVersion": "8.28", - "newRelease": "26.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "gzip": { - "name": "gzip", - "version": "1.5", - "release": "10.el7", - "newVersion": "1.5", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "hardlink": { - "name": "hardlink", - "version": "1:1.0", - "release": "19.el7", - "newVersion": "1:1.0", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "" - }, - "hostname": { - "name": "hostname", - "version": "3.13", - "release": "3.el7_7.1", - "newVersion": "3.13", - "newRelease": "3.el7_7.1", - "arch": "x86_64", - "repository": "" - }, - "hwdata": { - "name": "hwdata", - "version": "0.252", - "release": "9.7.0.1.el7", - "newVersion": "0.252", - "newRelease": "9.7.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "info": { - "name": "info", - "version": "5.1", - "release": "5.el7", - "newVersion": "5.1", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "initscripts": { - "name": "initscripts", - "version": "9.49.53", - "release": "1.0.1.el7_9.1", - "newVersion": "9.49.53", - "newRelease": "1.0.1.el7_9.1", - "arch": "x86_64", - "repository": "" - }, - "iproute": { - "name": "iproute", - "version": "5.4.0", - "release": "1.0.1.el7", - "newVersion": "5.4.0", - "newRelease": "1.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "ipset": { - "name": "ipset", - "version": "7.1", - "release": "1.el7", - "newVersion": "7.1", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "ipset-libs": { - "name": "ipset-libs", - "version": "7.1", - "release": "1.el7", - "newVersion": "7.1", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "iptables": { - "name": "iptables", - "version": "1.4.21", - "release": "35.0.1.el7", - "newVersion": "1.4.21", - "newRelease": "35.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "iptables-services": { - "name": "iptables-services", - "version": "1.4.21", - "release": "35.0.1.el7", - "newVersion": "1.4.21", - "newRelease": "35.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "iputils": { - "name": "iputils", - "version": "20160308", - "release": "10.el7", - "newVersion": "20160308", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "irqbalance": { - "name": "irqbalance", - "version": "3:1.0.8", - "release": "2.el7", - "newVersion": "3:1.0.8", - "newRelease": "2.el7", - "arch": "x86_64", - "repository": "" - }, - "jbigkit-libs": { - "name": "jbigkit-libs", - "version": "2.0", - "release": "11.el7", - "newVersion": "2.0", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "json-c": { - "name": "json-c", - "version": "0.11", - "release": "4.el7_0", - "newVersion": "0.11", - "newRelease": "4.el7_0", - "arch": "x86_64", - "repository": "" - }, - "kbd": { - "name": "kbd", - "version": "1.15.5", - "release": "15.el7", - "newVersion": "1.15.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "" - }, - "kbd-legacy": { - "name": "kbd-legacy", - "version": "1.15.5", - "release": "15.el7", - "newVersion": "1.15.5", - "newRelease": "15.el7", - "arch": "noarch", - "repository": "" - }, - "kbd-misc": { - "name": "kbd-misc", - "version": "1.15.5", - "release": "15.el7", - "newVersion": "1.15.5", - "newRelease": "15.el7", - "arch": "noarch", - "repository": "" - }, - "kernel-tools": { - "name": "kernel-tools", - "version": "3.10.0", - "release": "1160.24.1.el7", - "newVersion": "3.10.0", - "newRelease": "1160.24.1.el7", - "arch": "x86_64", - "repository": "" - }, - "kernel-tools-libs": { - "name": "kernel-tools-libs", - "version": "3.10.0", - "release": "1160.24.1.el7", - "newVersion": "3.10.0", - "newRelease": "1160.24.1.el7", - "arch": "x86_64", - "repository": "" - }, - "kernel-uek": { - "name": "kernel-uek", - "version": "5.4.17", - "release": "2102.200.13.el7uek", - "newVersion": "5.4.17", - "newRelease": "2102.200.13.el7uek", - "arch": "x86_64", - "repository": "" - }, - "keyutils-libs": { - "name": "keyutils-libs", - "version": "1.5.8", - "release": "3.el7", - "newVersion": "1.5.8", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "kmod": { - "name": "kmod", - "version": "20", - "release": "28.0.3.el7", - "newVersion": "20", - "newRelease": "28.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "kmod-libs": { - "name": "kmod-libs", - "version": "20", - "release": "28.0.3.el7", - "newVersion": "20", - "newRelease": "28.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "kpartx": { - "name": "kpartx", - "version": "0.4.9", - "release": "134.0.3.el7_9", - "newVersion": "0.4.9", - "newRelease": "134.0.3.el7_9", - "arch": "x86_64", - "repository": "" - }, - "krb5-libs": { - "name": "krb5-libs", - "version": "1.15.1", - "release": "50.el7", - "newVersion": "1.15.1", - "newRelease": "50.el7", - "arch": "x86_64", - "repository": "" - }, - "less": { - "name": "less", - "version": "458", - "release": "9.el7", - "newVersion": "458", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "libacl": { - "name": "libacl", - "version": "2.2.51", - "release": "15.el7", - "newVersion": "2.2.51", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "" - }, - "libassuan": { - "name": "libassuan", - "version": "2.1.0", - "release": "3.el7", - "newVersion": "2.1.0", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "libattr": { - "name": "libattr", - "version": "2.4.46", - "release": "13.el7", - "newVersion": "2.4.46", - "newRelease": "13.el7", - "arch": "x86_64", - "repository": "" - }, - "libblkid": { - "name": "libblkid", - "version": "2.23.2", - "release": "65.0.1.el7_9.1", - "newVersion": "2.23.2", - "newRelease": "65.0.1.el7_9.1", - "arch": "x86_64", - "repository": "" - }, - "libcap": { - "name": "libcap", - "version": "2.22", - "release": "11.el7", - "newVersion": "2.22", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "libcap-ng": { - "name": "libcap-ng", - "version": "0.7.5", - "release": "4.el7", - "newVersion": "0.7.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libcgroup": { - "name": "libcgroup", - "version": "0.41", - "release": "21.el7", - "newVersion": "0.41", - "newRelease": "21.el7", - "arch": "x86_64", - "repository": "" - }, - "libcom_err": { - "name": "libcom_err", - "version": "1.45.4", - "release": "3.0.5.el7", - "newVersion": "1.45.4", - "newRelease": "3.0.5.el7", - "arch": "x86_64", - "repository": "" - }, - "libcroco": { - "name": "libcroco", - "version": "0.6.12", - "release": "6.el7_9", - "newVersion": "0.6.12", - "newRelease": "6.el7_9", - "arch": "x86_64", - "repository": "" - }, - "libcurl": { - "name": "libcurl", - "version": "7.29.0", - "release": "59.0.1.el7_9.1", - "newVersion": "7.29.0", - "newRelease": "59.0.1.el7_9.1", - "arch": "x86_64", - "repository": "" - }, - "libdaemon": { - "name": "libdaemon", - "version": "0.14", - "release": "7.el7", - "newVersion": "0.14", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "libdb": { - "name": "libdb", - "version": "5.3.21", - "release": "25.el7", - "newVersion": "5.3.21", - "newRelease": "25.el7", - "arch": "x86_64", - "repository": "" - }, - "libdb-utils": { - "name": "libdb-utils", - "version": "5.3.21", - "release": "25.el7", - "newVersion": "5.3.21", - "newRelease": "25.el7", - "arch": "x86_64", - "repository": "" - }, - "libedit": { - "name": "libedit", - "version": "3.0", - "release": "12.20121213cvs.el7", - "newVersion": "3.0", - "newRelease": "12.20121213cvs.el7", - "arch": "x86_64", - "repository": "" - }, - "libestr": { - "name": "libestr", - "version": "0.1.9", - "release": "2.el7", - "newVersion": "0.1.9", - "newRelease": "2.el7", - "arch": "x86_64", - "repository": "" - }, - "libfastjson": { - "name": "libfastjson", - "version": "0.99.4", - "release": "3.el7", - "newVersion": "0.99.4", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "libffi": { - "name": "libffi", - "version": "3.0.13", - "release": "19.el7", - "newVersion": "3.0.13", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "" - }, - "libgcc": { - "name": "libgcc", - "version": "4.8.5", - "release": "44.0.3.el7", - "newVersion": "4.8.5", - "newRelease": "44.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "libgcrypt": { - "name": "libgcrypt", - "version": "1.5.3", - "release": "14.el7", - "newVersion": "1.5.3", - "newRelease": "14.el7", - "arch": "x86_64", - "repository": "" - }, - "libgomp": { - "name": "libgomp", - "version": "4.8.5", - "release": "44.0.3.el7", - "newVersion": "4.8.5", - "newRelease": "44.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "libgpg-error": { - "name": "libgpg-error", - "version": "1.12", - "release": "3.el7", - "newVersion": "1.12", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "libgudev1": { - "name": "libgudev1", - "version": "219", - "release": "78.0.3.el7_9.3", - "newVersion": "219", - "newRelease": "78.0.3.el7_9.3", - "arch": "x86_64", - "repository": "" - }, - "libidn": { - "name": "libidn", - "version": "1.28", - "release": "4.el7", - "newVersion": "1.28", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libjpeg-turbo": { - "name": "libjpeg-turbo", - "version": "1.2.90", - "release": "8.el7", - "newVersion": "1.2.90", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "libmnl": { - "name": "libmnl", - "version": "1.0.3", - "release": "7.el7", - "newVersion": "1.0.3", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "libmount": { - "name": "libmount", - "version": "2.23.2", - "release": "65.0.1.el7_9.1", - "newVersion": "2.23.2", - "newRelease": "65.0.1.el7_9.1", - "arch": "x86_64", - "repository": "" - }, - "libndp": { - "name": "libndp", - "version": "1.2", - "release": "9.el7", - "newVersion": "1.2", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "libnetfilter_conntrack": { - "name": "libnetfilter_conntrack", - "version": "1.0.6", - "release": "1.el7_3", - "newVersion": "1.0.6", - "newRelease": "1.el7_3", - "arch": "x86_64", - "repository": "" - }, - "libnfnetlink": { - "name": "libnfnetlink", - "version": "1.0.1", - "release": "4.el7", - "newVersion": "1.0.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libnl": { - "name": "libnl", - "version": "1.1.4", - "release": "3.el7", - "newVersion": "1.1.4", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "libovmapi": { - "name": "libovmapi", - "version": "3.2", - "release": "1.el7", - "newVersion": "3.2", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "libovmapi-devel": { - "name": "libovmapi-devel", - "version": "3.2", - "release": "1.el7", - "newVersion": "3.2", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "libpipeline": { - "name": "libpipeline", - "version": "1.2.3", - "release": "3.el7", - "newVersion": "1.2.3", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "libpng": { - "name": "libpng", - "version": "2:1.5.13", - "release": "8.el7", - "newVersion": "2:1.5.13", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "libpwquality": { - "name": "libpwquality", - "version": "1.2.3", - "release": "5.el7", - "newVersion": "1.2.3", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "libseccomp": { - "name": "libseccomp", - "version": "2.3.1", - "release": "4.el7", - "newVersion": "2.3.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libselinux": { - "name": "libselinux", - "version": "2.5", - "release": "15.el7", - "newVersion": "2.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "" - }, - "libselinux-python": { - "name": "libselinux-python", - "version": "2.5", - "release": "15.el7", - "newVersion": "2.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "" - }, - "libselinux-utils": { - "name": "libselinux-utils", - "version": "2.5", - "release": "15.el7", - "newVersion": "2.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "" - }, - "libsemanage": { - "name": "libsemanage", - "version": "2.5", - "release": "14.el7", - "newVersion": "2.5", - "newRelease": "14.el7", - "arch": "x86_64", - "repository": "" - }, - "libsemanage-python": { - "name": "libsemanage-python", - "version": "2.5", - "release": "14.el7", - "newVersion": "2.5", - "newRelease": "14.el7", - "arch": "x86_64", - "repository": "" - }, - "libsepol": { - "name": "libsepol", - "version": "2.5", - "release": "10.el7", - "newVersion": "2.5", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "libsmartcols": { - "name": "libsmartcols", - "version": "2.23.2", - "release": "65.0.1.el7_9.1", - "newVersion": "2.23.2", - "newRelease": "65.0.1.el7_9.1", - "arch": "x86_64", - "repository": "" - }, - "libss": { - "name": "libss", - "version": "1.45.4", - "release": "3.0.5.el7", - "newVersion": "1.45.4", - "newRelease": "3.0.5.el7", - "arch": "x86_64", - "repository": "" - }, - "libssh2": { - "name": "libssh2", - "version": "1.8.0", - "release": "4.el7", - "newVersion": "1.8.0", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libstdc++": { - "name": "libstdc++", - "version": "4.8.5", - "release": "44.0.3.el7", - "newVersion": "4.8.5", - "newRelease": "44.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "libsysfs": { - "name": "libsysfs", - "version": "2.1.0", - "release": "16.el7", - "newVersion": "2.1.0", - "newRelease": "16.el7", - "arch": "x86_64", - "repository": "" - }, - "libtasn1": { - "name": "libtasn1", - "version": "4.10", - "release": "1.el7", - "newVersion": "4.10", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "libtiff": { - "name": "libtiff", - "version": "4.0.3", - "release": "35.el7", - "newVersion": "4.0.3", - "newRelease": "35.el7", - "arch": "x86_64", - "repository": "" - }, - "libunistring": { - "name": "libunistring", - "version": "0.9.3", - "release": "9.el7", - "newVersion": "0.9.3", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "libuser": { - "name": "libuser", - "version": "0.60", - "release": "9.el7", - "newVersion": "0.60", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "libutempter": { - "name": "libutempter", - "version": "1.1.6", - "release": "4.el7", - "newVersion": "1.1.6", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libuuid": { - "name": "libuuid", - "version": "2.23.2", - "release": "65.0.1.el7_9.1", - "newVersion": "2.23.2", - "newRelease": "65.0.1.el7_9.1", - "arch": "x86_64", - "repository": "" - }, - "libverto": { - "name": "libverto", - "version": "0.2.5", - "release": "4.el7", - "newVersion": "0.2.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libwebp": { - "name": "libwebp", - "version": "0.3.0", - "release": "7.el7", - "newVersion": "0.3.0", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "libxenstore": { - "name": "libxenstore", - "version": "4.7.0", - "release": "4.el7", - "newVersion": "4.7.0", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libxml2": { - "name": "libxml2", - "version": "2.9.1", - "release": "6.0.1.el7.5", - "newVersion": "2.9.1", - "newRelease": "6.0.1.el7.5", - "arch": "x86_64", - "repository": "" - }, - "libxml2-python": { - "name": "libxml2-python", - "version": "2.9.1", - "release": "6.0.1.el7.5", - "newVersion": "2.9.1", - "newRelease": "6.0.1.el7.5", - "arch": "x86_64", - "repository": "" - }, - "libyaml": { - "name": "libyaml", - "version": "0.1.4", - "release": "11.el7_0", - "newVersion": "0.1.4", - "newRelease": "11.el7_0", - "arch": "x86_64", - "repository": "" - }, - "libzstd": { - "name": "libzstd", - "version": "1.4.4", - "release": "1.el7", - "newVersion": "1.4.4", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "linux-firmware": { - "name": "linux-firmware", - "version": "999:20201217", - "release": "999.7.git7455a360.el7", - "newVersion": "999:20201217", - "newRelease": "999.7.git7455a360.el7", - "arch": "noarch", - "repository": "" - }, - "logrotate": { - "name": "logrotate", - "version": "3.8.6", - "release": "19.el7", - "newVersion": "3.8.6", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "" - }, - "lshw": { - "name": "lshw", - "version": "B.02.18", - "release": "17.el7", - "newVersion": "B.02.18", - "newRelease": "17.el7", - "arch": "x86_64", - "repository": "" - }, - "lua": { - "name": "lua", - "version": "5.1.4", - "release": "15.el7", - "newVersion": "5.1.4", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "" - }, - "lz4": { - "name": "lz4", - "version": "1.8.3", - "release": "1.el7", - "newVersion": "1.8.3", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "lzo": { - "name": "lzo", - "version": "2.06", - "release": "8.el7", - "newVersion": "2.06", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "m2crypto": { - "name": "m2crypto", - "version": "0.21.1", - "release": "17.el7", - "newVersion": "0.21.1", - "newRelease": "17.el7", - "arch": "x86_64", - "repository": "" - }, - "make": { - "name": "make", - "version": "1:3.82", - "release": "24.el7", - "newVersion": "1:3.82", - "newRelease": "24.el7", - "arch": "x86_64", - "repository": "" - }, - "man-db": { - "name": "man-db", - "version": "2.6.3", - "release": "11.el7", - "newVersion": "2.6.3", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "ncurses": { - "name": "ncurses", - "version": "5.9", - "release": "14.20130511.el7_4", - "newVersion": "5.9", - "newRelease": "14.20130511.el7_4", - "arch": "x86_64", - "repository": "" - }, - "ncurses-base": { - "name": "ncurses-base", - "version": "5.9", - "release": "14.20130511.el7_4", - "newVersion": "5.9", - "newRelease": "14.20130511.el7_4", - "arch": "noarch", - "repository": "" - }, - "ncurses-libs": { - "name": "ncurses-libs", - "version": "5.9", - "release": "14.20130511.el7_4", - "newVersion": "5.9", - "newRelease": "14.20130511.el7_4", - "arch": "x86_64", - "repository": "" - }, - "net-tools": { - "name": "net-tools", - "version": "2.0", - "release": "0.25.20131004git.el7", - "newVersion": "2.0", - "newRelease": "0.25.20131004git.el7", - "arch": "x86_64", - "repository": "" - }, - "newt": { - "name": "newt", - "version": "0.52.15", - "release": "4.el7", - "newVersion": "0.52.15", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "newt-python": { - "name": "newt-python", - "version": "0.52.15", - "release": "4.el7", - "newVersion": "0.52.15", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "nspr": { - "name": "nspr", - "version": "4.25.0", - "release": "2.el7_9", - "newVersion": "4.25.0", - "newRelease": "2.el7_9", - "arch": "x86_64", - "repository": "" - }, - "nss": { - "name": "nss", - "version": "3.53.1", - "release": "3.el7_9", - "newVersion": "3.53.1", - "newRelease": "3.el7_9", - "arch": "x86_64", - "repository": "" - }, - "nss-pem": { - "name": "nss-pem", - "version": "1.0.3", - "release": "7.el7", - "newVersion": "1.0.3", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "nss-softokn": { - "name": "nss-softokn", - "version": "3.53.1", - "release": "6.0.1.el7_9", - "newVersion": "3.53.1", - "newRelease": "6.0.1.el7_9", - "arch": "x86_64", - "repository": "" - }, - "nss-softokn-freebl": { - "name": "nss-softokn-freebl", - "version": "3.53.1", - "release": "6.0.1.el7_9", - "newVersion": "3.53.1", - "newRelease": "6.0.1.el7_9", - "arch": "x86_64", - "repository": "" - }, - "nss-sysinit": { - "name": "nss-sysinit", - "version": "3.53.1", - "release": "3.el7_9", - "newVersion": "3.53.1", - "newRelease": "3.el7_9", - "arch": "x86_64", - "repository": "" - }, - "nss-tools": { - "name": "nss-tools", - "version": "3.53.1", - "release": "3.el7_9", - "newVersion": "3.53.1", - "newRelease": "3.el7_9", - "arch": "x86_64", - "repository": "" - }, - "nss-util": { - "name": "nss-util", - "version": "3.53.1", - "release": "1.el7_9", - "newVersion": "3.53.1", - "newRelease": "1.el7_9", - "arch": "x86_64", - "repository": "" - }, - "numactl-libs": { - "name": "numactl-libs", - "version": "2.0.12", - "release": "5.0.3.el7", - "newVersion": "2.0.12", - "newRelease": "5.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "openldap": { - "name": "openldap", - "version": "2.4.44", - "release": "22.el7", - "newVersion": "2.4.44", - "newRelease": "22.el7", - "arch": "x86_64", - "repository": "" - }, - "openssh": { - "name": "openssh", - "version": "7.4p1", - "release": "21.0.1.el7", - "newVersion": "7.4p1", - "newRelease": "21.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "openssh-clients": { - "name": "openssh-clients", - "version": "7.4p1", - "release": "21.0.1.el7", - "newVersion": "7.4p1", - "newRelease": "21.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "openssh-server": { - "name": "openssh-server", - "version": "7.4p1", - "release": "21.0.1.el7", - "newVersion": "7.4p1", - "newRelease": "21.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "openssl": { - "name": "openssl", - "version": "1:1.0.2j", - "release": "21.0.1.el7_9", - "newVersion": "1:1.0.2k", - "newRelease": "21.0.1.el7_9", - "arch": "x86_64", - "repository": "" - }, - "openssl-libs": { - "name": "openssl-libs", - "version": "1:1.0.2j", - "release": "21.0.1.el7_9", - "newVersion": "1:1.0.2k", - "newRelease": "21.0.1.el7_9", - "arch": "x86_64", - "repository": "" - }, - "oracle-logos": { - "name": "oracle-logos", - "version": "70.7.0", - "release": "1.0.7.el7", - "newVersion": "70.7.0", - "newRelease": "1.0.7.el7", - "arch": "noarch", - "repository": "" - }, - "oraclelinux-release": { - "name": "oraclelinux-release", - "version": "7:7.9", - "release": "1.0.9.el7", - "newVersion": "7:7.9", - "newRelease": "1.0.9.el7", - "arch": "x86_64", - "repository": "" - }, - "oraclelinux-release-el7": { - "name": "oraclelinux-release-el7", - "version": "1.0", - "release": "16.el7", - "newVersion": "1.0", - "newRelease": "16.el7", - "arch": "x86_64", - "repository": "" - }, - "os-prober": { - "name": "os-prober", - "version": "1.58", - "release": "9.0.1.el7", - "newVersion": "1.58", - "newRelease": "9.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "p11-kit": { - "name": "p11-kit", - "version": "0.23.5", - "release": "3.el7", - "newVersion": "0.23.5", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "p11-kit-trust": { - "name": "p11-kit-trust", - "version": "0.23.5", - "release": "3.el7", - "newVersion": "0.23.5", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "pam": { - "name": "pam", - "version": "1.1.8", - "release": "23.el7", - "newVersion": "1.1.8", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "" - }, - "parted": { - "name": "parted", - "version": "3.1", - "release": "32.0.1.el7", - "newVersion": "3.1", - "newRelease": "32.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "passwd": { - "name": "passwd", - "version": "0.79", - "release": "6.el7", - "newVersion": "0.79", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "pciutils": { - "name": "pciutils", - "version": "3.5.1", - "release": "3.el7", - "newVersion": "3.5.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "pciutils-libs": { - "name": "pciutils-libs", - "version": "3.5.1", - "release": "3.el7", - "newVersion": "3.5.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "pcre": { - "name": "pcre", - "version": "8.32", - "release": "17.el7", - "newVersion": "8.32", - "newRelease": "17.el7", - "arch": "x86_64", - "repository": "" - }, - "pinentry": { - "name": "pinentry", - "version": "0.8.1", - "release": "17.el7", - "newVersion": "0.8.1", - "newRelease": "17.el7", - "arch": "x86_64", - "repository": "" - }, - "pkgconfig": { - "name": "pkgconfig", - "version": "1:0.27.1", - "release": "4.el7", - "newVersion": "1:0.27.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "policycoreutils": { - "name": "policycoreutils", - "version": "2.5", - "release": "34.0.1.el7", - "newVersion": "2.5", - "newRelease": "34.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "policycoreutils-python": { - "name": "policycoreutils-python", - "version": "2.5", - "release": "34.0.1.el7", - "newVersion": "2.5", - "newRelease": "34.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "popt": { - "name": "popt", - "version": "1.13", - "release": "16.el7", - "newVersion": "1.13", - "newRelease": "16.el7", - "arch": "x86_64", - "repository": "" - }, - "procps-ng": { - "name": "procps-ng", - "version": "3.3.10", - "release": "28.el7", - "newVersion": "3.3.10", - "newRelease": "28.el7", - "arch": "x86_64", - "repository": "" - }, - "psmisc": { - "name": "psmisc", - "version": "22.20", - "release": "17.el7", - "newVersion": "22.20", - "newRelease": "17.el7", - "arch": "x86_64", - "repository": "" - }, - "pth": { - "name": "pth", - "version": "2.0.7", - "release": "23.el7", - "newVersion": "2.0.7", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "" - }, - "pyOpenSSL": { - "name": "pyOpenSSL", - "version": "0.13.1", - "release": "4.el7", - "newVersion": "0.13.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "pygobject2": { - "name": "pygobject2", - "version": "2.28.6", - "release": "11.el7", - "newVersion": "2.28.6", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "pygpgme": { - "name": "pygpgme", - "version": "0.3", - "release": "9.el7", - "newVersion": "0.3", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "pyliblzma": { - "name": "pyliblzma", - "version": "0.5.3", - "release": "11.el7", - "newVersion": "0.5.3", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "pyserial": { - "name": "pyserial", - "version": "2.6", - "release": "6.el7", - "newVersion": "2.6", - "newRelease": "6.el7", - "arch": "noarch", - "repository": "" - }, - "python": { - "name": "python", - "version": "2.7.5", - "release": "90.0.3.el7", - "newVersion": "2.7.5", - "newRelease": "90.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "python-IPy": { - "name": "python-IPy", - "version": "0.75", - "release": "6.el7", - "newVersion": "0.75", - "newRelease": "6.el7", - "arch": "noarch", - "repository": "" - }, - "python-babel": { - "name": "python-babel", - "version": "0.9.6", - "release": "8.el7", - "newVersion": "0.9.6", - "newRelease": "8.el7", - "arch": "noarch", - "repository": "" - }, - "python-backports": { - "name": "python-backports", - "version": "1.0", - "release": "8.el7", - "newVersion": "1.0", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "python-backports-ssl_match_hostname": { - "name": "python-backports-ssl_match_hostname", - "version": "3.5.0.1", - "release": "1.el7", - "newVersion": "3.5.0.1", - "newRelease": "1.el7", - "arch": "noarch", - "repository": "" - }, - "python-boto": { - "name": "python-boto", - "version": "2.27.0", - "release": "1.el7", - "newVersion": "2.27.0", - "newRelease": "1.el7", - "arch": "noarch", - "repository": "" - }, - "python-chardet": { - "name": "python-chardet", - "version": "2.2.1", - "release": "3.el7", - "newVersion": "2.2.1", - "newRelease": "3.el7", - "arch": "noarch", - "repository": "" - }, - "python-cheetah": { - "name": "python-cheetah", - "version": "2.4.1", - "release": "1.el7", - "newVersion": "2.4.1", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "python-configobj": { - "name": "python-configobj", - "version": "4.7.2", - "release": "7.el7", - "newVersion": "4.7.2", - "newRelease": "7.el7", - "arch": "noarch", - "repository": "" - }, - "python-decorator": { - "name": "python-decorator", - "version": "3.4.0", - "release": "3.el7", - "newVersion": "3.4.0", - "newRelease": "3.el7", - "arch": "noarch", - "repository": "" - }, - "python-dmidecode": { - "name": "python-dmidecode", - "version": "3.12.2", - "release": "4.el7", - "newVersion": "3.12.2", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "python-ethtool": { - "name": "python-ethtool", - "version": "0.8", - "release": "8.el7", - "newVersion": "0.8", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "python-firewall": { - "name": "python-firewall", - "version": "0.6.3", - "release": "12.0.1.el7", - "newVersion": "0.6.3", - "newRelease": "12.0.1.el7", - "arch": "noarch", - "repository": "" - }, - "python-gobject-base": { - "name": "python-gobject-base", - "version": "3.22.0", - "release": "1.el7_4.1", - "newVersion": "3.22.0", - "newRelease": "1.el7_4.1", - "arch": "x86_64", - "repository": "" - }, - "python-gudev": { - "name": "python-gudev", - "version": "147.2", - "release": "7.el7", - "newVersion": "147.2", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "python-hwdata": { - "name": "python-hwdata", - "version": "1.7.3", - "release": "4.el7", - "newVersion": "1.7.3", - "newRelease": "4.el7", - "arch": "noarch", - "repository": "" - }, - "python-iniparse": { - "name": "python-iniparse", - "version": "0.4", - "release": "9.el7", - "newVersion": "0.4", - "newRelease": "9.el7", - "arch": "noarch", - "repository": "" - }, - "python-ipaddress": { - "name": "python-ipaddress", - "version": "1.0.16", - "release": "2.el7", - "newVersion": "1.0.16", - "newRelease": "2.el7", - "arch": "noarch", - "repository": "" - }, - "python-jinja2": { - "name": "python-jinja2", - "version": "2.7.2", - "release": "4.el7", - "newVersion": "2.7.2", - "newRelease": "4.el7", - "arch": "noarch", - "repository": "" - }, - "python-jsonpatch": { - "name": "python-jsonpatch", - "version": "1.2", - "release": "4.el7", - "newVersion": "1.2", - "newRelease": "4.el7", - "arch": "noarch", - "repository": "" - }, - "python-jsonpointer": { - "name": "python-jsonpointer", - "version": "1.9", - "release": "2.el7", - "newVersion": "1.9", - "newRelease": "2.el7", - "arch": "noarch", - "repository": "" - }, - "python-kitchen": { - "name": "python-kitchen", - "version": "1.1.1", - "release": "5.el7", - "newVersion": "1.1.1", - "newRelease": "5.el7", - "arch": "noarch", - "repository": "" - }, - "python-libs": { - "name": "python-libs", - "version": "2.7.5", - "release": "90.0.3.el7", - "newVersion": "2.7.5", - "newRelease": "90.0.3.el7", - "arch": "x86_64", - "repository": "" - }, - "python-linux-procfs": { - "name": "python-linux-procfs", - "version": "0.4.11", - "release": "4.el7", - "newVersion": "0.4.11", - "newRelease": "4.el7", - "arch": "noarch", - "repository": "" - }, - "python-markdown": { - "name": "python-markdown", - "version": "2.0.1", - "release": "3.1.el7", - "newVersion": "2.0.1", - "newRelease": "3.1.el7", - "arch": "noarch", - "repository": "" - }, - "python-markupsafe": { - "name": "python-markupsafe", - "version": "0.11", - "release": "10.el7", - "newVersion": "0.11", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "python-perf": { - "name": "python-perf", - "version": "3.10.0", - "release": "1160.24.1.el7", - "newVersion": "3.10.0", - "newRelease": "1160.24.1.el7", - "arch": "x86_64", - "repository": "" - }, - "python-pillow": { - "name": "python-pillow", - "version": "2.0.0", - "release": "21.gitd1c6db8.el7", - "newVersion": "2.0.0", - "newRelease": "21.gitd1c6db8.el7", - "arch": "x86_64", - "repository": "" - }, - "python-prettytable": { - "name": "python-prettytable", - "version": "0.7.2", - "release": "3.el7", - "newVersion": "0.7.2", - "newRelease": "3.el7", - "arch": "noarch", - "repository": "" - }, - "python-pycurl": { - "name": "python-pycurl", - "version": "7.19.0", - "release": "19.el7", - "newVersion": "7.19.0", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "" - }, - "python-pygments": { - "name": "python-pygments", - "version": "1.4", - "release": "9.el7", - "newVersion": "1.4", - "newRelease": "9.el7", - "arch": "noarch", - "repository": "" - }, - "python-pyudev": { - "name": "python-pyudev", - "version": "0.15", - "release": "9.el7", - "newVersion": "0.15", - "newRelease": "9.el7", - "arch": "noarch", - "repository": "" - }, - "python-requests": { - "name": "python-requests", - "version": "2.6.0", - "release": "10.el7", - "newVersion": "2.6.0", - "newRelease": "10.el7", - "arch": "noarch", - "repository": "" - }, - "python-schedutils": { - "name": "python-schedutils", - "version": "0.4", - "release": "6.el7", - "newVersion": "0.4", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "python-setuptools": { - "name": "python-setuptools", - "version": "0.9.8", - "release": "7.el7", - "newVersion": "0.9.8", - "newRelease": "7.el7", - "arch": "noarch", - "repository": "" - }, - "python-simplejson": { - "name": "python-simplejson", - "version": "3.2.0", - "release": "1.el7", - "newVersion": "3.2.0", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "python-six": { - "name": "python-six", - "version": "1.9.0", - "release": "2.el7", - "newVersion": "1.9.0", - "newRelease": "2.el7", - "arch": "noarch", - "repository": "" - }, - "python-slip": { - "name": "python-slip", - "version": "0.4.0", - "release": "4.el7", - "newVersion": "0.4.0", - "newRelease": "4.el7", - "arch": "noarch", - "repository": "" - }, - "python-slip-dbus": { - "name": "python-slip-dbus", - "version": "0.4.0", - "release": "4.el7", - "newVersion": "0.4.0", - "newRelease": "4.el7", - "arch": "noarch", - "repository": "" - }, - "python-urlgrabber": { - "name": "python-urlgrabber", - "version": "3.10", - "release": "10.el7", - "newVersion": "3.10", - "newRelease": "10.el7", - "arch": "noarch", - "repository": "" - }, - "python-urllib3": { - "name": "python-urllib3", - "version": "1.10.2", - "release": "7.el7", - "newVersion": "1.10.2", - "newRelease": "7.el7", - "arch": "noarch", - "repository": "" - }, - "pyxattr": { - "name": "pyxattr", - "version": "0.5.1", - "release": "5.el7", - "newVersion": "0.5.1", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "qemu-guest-agent": { - "name": "qemu-guest-agent", - "version": "10:2.12.0", - "release": "3.el7", - "newVersion": "10:2.12.0", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "qrencode-libs": { - "name": "qrencode-libs", - "version": "3.4.1", - "release": "3.el7", - "newVersion": "3.4.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "readline": { - "name": "readline", - "version": "6.2", - "release": "11.el7", - "newVersion": "6.2", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "redhat-release-server": { - "name": "redhat-release-server", - "version": "1:7.9", - "release": "6.0.1.el7_9", - "newVersion": "1:7.9", - "newRelease": "6.0.1.el7_9", - "arch": "x86_64", - "repository": "" - }, - "rhn-check": { - "name": "rhn-check", - "version": "2.0.2", - "release": "24.0.7.el7", - "newVersion": "2.0.2", - "newRelease": "24.0.7.el7", - "arch": "x86_64", - "repository": "" - }, - "rhn-client-tools": { - "name": "rhn-client-tools", - "version": "2.0.2", - "release": "24.0.7.el7", - "newVersion": "2.0.2", - "newRelease": "24.0.7.el7", - "arch": "x86_64", - "repository": "" - }, - "rhn-setup": { - "name": "rhn-setup", - "version": "2.0.2", - "release": "24.0.7.el7", - "newVersion": "2.0.2", - "newRelease": "24.0.7.el7", - "arch": "x86_64", - "repository": "" - }, - "rhnlib": { - "name": "rhnlib", - "version": "2.5.65", - "release": "8.0.3.el7", - "newVersion": "2.5.65", - "newRelease": "8.0.3.el7", - "arch": "noarch", - "repository": "" - }, - "rhnsd": { - "name": "rhnsd", - "version": "5.0.13", - "release": "10.0.1.el7", - "newVersion": "5.0.13", - "newRelease": "10.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "rootfiles": { - "name": "rootfiles", - "version": "8.1", - "release": "11.el7", - "newVersion": "8.1", - "newRelease": "11.el7", - "arch": "noarch", - "repository": "" - }, - "rpm": { - "name": "rpm", - "version": "4.11.3", - "release": "45.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "" - }, - "rpm-build-libs": { - "name": "rpm-build-libs", - "version": "4.11.3", - "release": "45.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "" - }, - "rpm-libs": { - "name": "rpm-libs", - "version": "4.11.3", - "release": "45.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "" - }, - "rpm-python": { - "name": "rpm-python", - "version": "4.11.3", - "release": "45.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "" - }, - "rsyslog": { - "name": "rsyslog", - "version": "8.24.0", - "release": "57.el7_9", - "newVersion": "8.24.0", - "newRelease": "57.el7_9", - "arch": "x86_64", - "repository": "" - }, - "sed": { - "name": "sed", - "version": "4.2.2", - "release": "7.el7", - "newVersion": "4.2.2", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "selinux-policy": { - "name": "selinux-policy", - "version": "3.13.1", - "release": "268.0.1.el7_9.2", - "newVersion": "3.13.1", - "newRelease": "268.0.1.el7_9.2", - "arch": "noarch", - "repository": "" - }, - "selinux-policy-targeted": { - "name": "selinux-policy-targeted", - "version": "3.13.1", - "release": "268.0.1.el7_9.2", - "newVersion": "3.13.1", - "newRelease": "268.0.1.el7_9.2", - "arch": "noarch", - "repository": "" - }, - "setools-libs": { - "name": "setools-libs", - "version": "3.3.8", - "release": "4.el7", - "newVersion": "3.3.8", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "setup": { - "name": "setup", - "version": "2.8.71", - "release": "11.el7", - "newVersion": "2.8.71", - "newRelease": "11.el7", - "arch": "noarch", - "repository": "" - }, - "sg3_utils": { - "name": "sg3_utils", - "version": "1:1.37", - "release": "19.0.1.el7", - "newVersion": "1:1.37", - "newRelease": "19.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "sg3_utils-libs": { - "name": "sg3_utils-libs", - "version": "1:1.37", - "release": "19.0.1.el7", - "newVersion": "1:1.37", - "newRelease": "19.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "shadow-utils": { - "name": "shadow-utils", - "version": "2:4.6", - "release": "5.0.1.el7", - "newVersion": "2:4.6", - "newRelease": "5.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "shared-mime-info": { - "name": "shared-mime-info", - "version": "1.8", - "release": "5.el7", - "newVersion": "1.8", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "slang": { - "name": "slang", - "version": "2.2.4", - "release": "11.el7", - "newVersion": "2.2.4", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "sqlite": { - "name": "sqlite", - "version": "3.7.17", - "release": "8.el7_7.1", - "newVersion": "3.7.17", - "newRelease": "8.el7_7.1", - "arch": "x86_64", - "repository": "" - }, - "sudo": { - "name": "sudo", - "version": "1.8.23", - "release": "10.el7_9.1", - "newVersion": "1.8.23", - "newRelease": "10.el7_9.1", - "arch": "x86_64", - "repository": "" - }, - "systemd": { - "name": "systemd", - "version": "219", - "release": "78.0.3.el7_9.3", - "newVersion": "219", - "newRelease": "78.0.3.el7_9.3", - "arch": "x86_64", - "repository": "" - }, - "systemd-libs": { - "name": "systemd-libs", - "version": "219", - "release": "78.0.3.el7_9.3", - "newVersion": "219", - "newRelease": "78.0.3.el7_9.3", - "arch": "x86_64", - "repository": "" - }, - "systemd-sysv": { - "name": "systemd-sysv", - "version": "219", - "release": "78.0.3.el7_9.3", - "newVersion": "219", - "newRelease": "78.0.3.el7_9.3", - "arch": "x86_64", - "repository": "" - }, - "sysvinit-tools": { - "name": "sysvinit-tools", - "version": "2.88", - "release": "14.dsf.el7", - "newVersion": "2.88", - "newRelease": "14.dsf.el7", - "arch": "x86_64", - "repository": "" - }, - "tar": { - "name": "tar", - "version": "2:1.26", - "release": "35.el7", - "newVersion": "2:1.26", - "newRelease": "35.el7", - "arch": "x86_64", - "repository": "" - }, - "tcp_wrappers-libs": { - "name": "tcp_wrappers-libs", - "version": "7.6", - "release": "77.el7", - "newVersion": "7.6", - "newRelease": "77.el7", - "arch": "x86_64", - "repository": "" - }, - "tmpwatch": { - "name": "tmpwatch", - "version": "2.11", - "release": "6.el7", - "newVersion": "2.11", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "tzdata": { - "name": "tzdata", - "version": "2021a", - "release": "1.el7", - "newVersion": "2021a", - "newRelease": "1.el7", - "arch": "noarch", - "repository": "" - }, - "uname26": { - "name": "uname26", - "version": "1.0", - "release": "1.el7", - "newVersion": "1.0", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "usermode": { - "name": "usermode", - "version": "1.111", - "release": "6.el7", - "newVersion": "1.111", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "ustr": { - "name": "ustr", - "version": "1.0.4", - "release": "16.el7", - "newVersion": "1.0.4", - "newRelease": "16.el7", - "arch": "x86_64", - "repository": "" - }, - "util-linux": { - "name": "util-linux", - "version": "2.23.2", - "release": "65.0.1.el7_9.1", - "newVersion": "2.23.2", - "newRelease": "65.0.1.el7_9.1", - "arch": "x86_64", - "repository": "" - }, - "vim-minimal": { - "name": "vim-minimal", - "version": "2:7.4.629", - "release": "8.0.1.el7_9", - "newVersion": "2:7.4.629", - "newRelease": "8.0.1.el7_9", - "arch": "x86_64", - "repository": "" - }, - "virt-what": { - "name": "virt-what", - "version": "1.18", - "release": "4.el7", - "newVersion": "1.18", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "which": { - "name": "which", - "version": "2.20", - "release": "7.el7", - "newVersion": "2.20", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "xenstoreprovider": { - "name": "xenstoreprovider", - "version": "3.0", - "release": "19.el7", - "newVersion": "3.0", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "" - }, - "xfsprogs": { - "name": "xfsprogs", - "version": "5.4.0", - "release": "1.0.1.el7", - "newVersion": "5.4.0", - "newRelease": "1.0.1.el7", - "arch": "x86_64", - "repository": "" - }, - "xz": { - "name": "xz", - "version": "5.2.2", - "release": "1.el7", - "newVersion": "5.2.2", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "xz-libs": { - "name": "xz-libs", - "version": "5.2.2", - "release": "1.el7", - "newVersion": "5.2.2", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "" - }, - "yum": { - "name": "yum", - "version": "3.4.3", - "release": "168.0.3.el7", - "newVersion": "3.4.3", - "newRelease": "168.0.3.el7", - "arch": "noarch", - "repository": "" - }, - "yum-metadata-parser": { - "name": "yum-metadata-parser", - "version": "1.1.4", - "release": "10.el7", - "newVersion": "1.1.4", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "yum-plugin-ulninfo": { - "name": "yum-plugin-ulninfo", - "version": "0.2", - "release": "13.el7", - "newVersion": "0.2", - "newRelease": "13.el7", - "arch": "noarch", - "repository": "" - }, - "yum-rhn-plugin": { - "name": "yum-rhn-plugin", - "version": "2.0.1", - "release": "10.0.1.el7", - "newVersion": "2.0.1", - "newRelease": "10.0.1.el7", - "arch": "noarch", - "repository": "" - }, - "yum-utils": { - "name": "yum-utils", - "version": "1.1.31", - "release": "54.0.1.el7_8", - "newVersion": "1.1.31", - "newRelease": "54.0.1.el7_8", - "arch": "noarch", - "repository": "" - }, - "zlib": { - "name": "zlib", - "version": "1.2.7", - "release": "19.el7_9", - "newVersion": "1.2.7", - "newRelease": "19.el7_9", - "arch": "x86_64", - "repository": "" - } - }, - "config": { - "scan": { - "logDir": "/var/log/vuls", - "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", - "default": { - "port": "22", - "scanMode": [ - "fast" - ] - }, - "servers": { - "oracle": { - "serverName": "oracle", - "user": "ec2-user", - "host": "13.231.25.205", - "port": "22", - "keyPath": "/home/ubuntu/.ssh/stg.pem", - "scanMode": [ - "fast-root" - ], - "wordpress": {} - } - }, - "cveDict": { - "Name": "cveDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/vulsctl/docker/cve.sqlite3", - "DebugSQL": false - }, - "ovalDict": { - "Name": "ovalDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/vulsctl/docker/oval.sqlite3", - "DebugSQL": false - }, - "gost": { - "Name": "gost", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/vulsctl/docker/gost.sqlite3", - "DebugSQL": false - }, - "exploit": { - "Name": "exploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/vulsctl/docker/go-exploitdb.sqlite3", - "DebugSQL": false - }, - "metasploit": { - "Name": "metasploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/vulsctl/docker/go-msfdb.sqlite3", - "DebugSQL": false - } - }, - "report": { - "default": {}, - "cveDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "ovalDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "gost": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "exploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "metasploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - } - } - } -} diff --git a/integration/data/rails.json b/integration/data/rails.json deleted file mode 100644 index 0288da00..00000000 --- a/integration/data/rails.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "jsonVersion": 4, - "lang": "", - "serverUUID": "", - "serverName": "rails", - "family": "pseudo", - "release": "", - "container": { - "containerID": "", - "name": "", - "image": "", - "type": "", - "uuid": "" - }, - "platform": { - "name": "other", - "instanceID": "" - }, - "scannedAt": "2021-03-31T12:22:26.428630183+09:00", - "scanMode": "fast mode", - "scannedVersion": "v0.15.9", - "scannedRevision": "build-20210331_121257_1a58c94", - "scannedBy": "dev", - "scannedVia": "pseudo", - "scannedIpv4Addrs": [ - "172.19.0.1", - "172.17.0.1", - "172.27.0.1" - ], - "reportedAt": "0001-01-01T00:00:00Z", - "reportedVersion": "", - "reportedRevision": "", - "reportedBy": "", - "errors": [], - "warnings": [], - "scannedCves": {}, - "runningKernel": { - "release": "", - "version": "", - "rebootRequired": false - }, - "packages": {}, - "config": { - "scan": { - "logDir": "/var/log/vuls", - "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", - "default": { - "port": "22", - "scanMode": [ - "fast" - ] - }, - "servers": { - "rails": { - "serverName": "rails", - "cpeNames": [ - "cpe:/a:rubyonrails:ruby_on_rails:3.0.1" - ], - "scanMode": [ - "fast" - ], - "type": "pseudo", - "wordpress": {} - } - }, - "cveDict": { - "Name": "cveDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", - "DebugSQL": false - }, - "ovalDict": { - "Name": "ovalDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", - "DebugSQL": false - }, - "gost": { - "Name": "gost", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", - "DebugSQL": false - }, - "exploit": { - "Name": "exploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", - "DebugSQL": false - }, - "metasploit": { - "Name": "metasploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", - "DebugSQL": false - } - }, - "report": { - "default": {}, - "cveDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "ovalDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "gost": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "exploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "metasploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - } - } - } -} \ No newline at end of file diff --git a/integration/data/rhel_71.json b/integration/data/rhel_71.json deleted file mode 100755 index 482ea447..00000000 --- a/integration/data/rhel_71.json +++ /dev/null @@ -1,5158 +0,0 @@ -{ - "jsonVersion": 4, - "lang": "", - "serverUUID": "", - "serverName": "rhel_71", - "family": "redhat", - "release": "7.1", - "container": { - "containerID": "", - "name": "", - "image": "", - "type": "", - "uuid": "" - }, - "platform": { - "name": "aws", - "instanceID": "i-0521f850531b377ec" - }, - "ipv4Addrs": [ - "192.168.0.194" - ], - "scannedAt": "2021-03-24T16:44:56.393272591+09:00", - "scanMode": "fast-root mode", - "scannedVersion": "v0.15.9", - "scannedRevision": "build-20210324_121008_fc3b438", - "scannedBy": "dev", - "scannedVia": "remote", - "scannedIpv4Addrs": [ - "172.21.0.1", - "172.19.0.1", - "172.18.0.1", - "172.17.0.1", - "172.20.0.1" - ], - "reportedAt": "0001-01-01T00:00:00Z", - "reportedVersion": "", - "reportedRevision": "", - "reportedBy": "", - "errors": [], - "warnings": [], - "scannedCves": {}, - "runningKernel": { - "release": "3.10.0-229.el7.x86_64", - "version": "", - "rebootRequired": false - }, - "packages": { - "NetworkManager": { - "name": "NetworkManager", - "version": "1:1.0.0", - "release": "14.git20150121.b4ea599c.el7", - "newVersion": "1:1.18.8", - "newRelease": "2.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "458", - "name": "NetworkManager" - } - ] - }, - "NetworkManager-config-server": { - "name": "NetworkManager-config-server", - "version": "1:1.0.0", - "release": "14.git20150121.b4ea599c.el7", - "newVersion": "1:1.18.8", - "newRelease": "2.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "NetworkManager-libnm": { - "name": "NetworkManager-libnm", - "version": "1:1.0.0", - "release": "14.git20150121.b4ea599c.el7", - "newVersion": "1:1.18.8", - "newRelease": "2.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "NetworkManager-team": { - "name": "NetworkManager-team", - "version": "1:1.0.0", - "release": "14.git20150121.b4ea599c.el7", - "newVersion": "1:1.18.8", - "newRelease": "2.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "458", - "name": "NetworkManager" - } - ] - }, - "NetworkManager-tui": { - "name": "NetworkManager-tui", - "version": "1:1.0.0", - "release": "14.git20150121.b4ea599c.el7", - "newVersion": "1:1.18.8", - "newRelease": "2.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "PyYAML": { - "name": "PyYAML", - "version": "3.10", - "release": "11.el7", - "newVersion": "3.10", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "Red_Hat_Enterprise_Linux-Release_Notes-7-en-US": { - "name": "Red_Hat_Enterprise_Linux-Release_Notes-7-en-US", - "version": "1.0", - "release": "9.el7", - "newVersion": "7", - "newRelease": "2.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "acl": { - "name": "acl", - "version": "2.2.51", - "release": "12.el7", - "newVersion": "2.2.51", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "audit": { - "name": "audit", - "version": "2.4.1", - "release": "5.el7", - "newVersion": "2.8.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "402", - "name": "auditd" - } - ] - }, - "audit-libs": { - "name": "audit-libs", - "version": "2.4.1", - "release": "5.el7", - "newVersion": "2.8.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "474", - "name": "crond" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "469", - "name": "dbus-daemon" - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "audit-libs-python": { - "name": "audit-libs-python", - "version": "2.4.1", - "release": "5.el7", - "newVersion": "2.8.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "authconfig": { - "name": "authconfig", - "version": "6.2.8", - "release": "9.el7", - "newVersion": "6.2.8", - "newRelease": "30.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "avahi-autoipd": { - "name": "avahi-autoipd", - "version": "0.6.31", - "release": "14.el7", - "newVersion": "0.6.31", - "newRelease": "20.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "avahi-libs": { - "name": "avahi-libs", - "version": "0.6.31", - "release": "14.el7", - "newVersion": "0.6.31", - "newRelease": "20.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "basesystem": { - "name": "basesystem", - "version": "10.0", - "release": "7.el7", - "newVersion": "10.0", - "newRelease": "7.el7", - "arch": "noarch", - "repository": "" - }, - "bash": { - "name": "bash", - "version": "4.2.46", - "release": "12.el7", - "newVersion": "4.2.46", - "newRelease": "34.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10843", - "name": "bash" - }, - { - "pid": "10866", - "name": "bash" - } - ] - }, - "bind-libs-lite": { - "name": "bind-libs-lite", - "version": "32:9.9.4", - "release": "18.el7", - "newVersion": "32:9.11.4", - "newRelease": "26.P2.el7_9.4", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "489", - "name": "dhclient" - } - ] - }, - "bind-license": { - "name": "bind-license", - "version": "32:9.9.4", - "release": "18.el7", - "newVersion": "32:9.11.4", - "newRelease": "26.P2.el7_9.4", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "binutils": { - "name": "binutils", - "version": "2.23.52.0.1", - "release": "30.el7", - "newVersion": "2.27", - "newRelease": "44.base.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "btrfs-progs": { - "name": "btrfs-progs", - "version": "3.16.2", - "release": "1.el7", - "newVersion": "4.9.1", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "bzip2-libs": { - "name": "bzip2-libs", - "version": "1.0.6", - "release": "12.el7", - "newVersion": "1.0.6", - "newRelease": "13.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "ca-certificates": { - "name": "ca-certificates", - "version": "2014.1.98", - "release": "72.el7", - "newVersion": "2020.2.41", - "newRelease": "70.0.el7_8", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "checkpolicy": { - "name": "checkpolicy", - "version": "2.1.12", - "release": "6.el7", - "newVersion": "2.5", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "chkconfig": { - "name": "chkconfig", - "version": "1.3.61", - "release": "4.el7", - "newVersion": "1.7.6", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "chrony": { - "name": "chrony", - "version": "1.29.1", - "release": "1.el7", - "newVersion": "3.4", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "473", - "name": "chronyd" - } - ] - }, - "cloud-init": { - "name": "cloud-init", - "version": "0.7.6", - "release": "2.el7", - "newVersion": "19.4", - "newRelease": "7.el7_9.4", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "cloud-utils-growpart": { - "name": "cloud-utils-growpart", - "version": "0.27", - "release": "13.el7", - "newVersion": "0.29", - "newRelease": "5.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "coreutils": { - "name": "coreutils", - "version": "8.22", - "release": "11.el7", - "newVersion": "8.22", - "newRelease": "24.el7_9.2", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "cpio": { - "name": "cpio", - "version": "2.11", - "release": "22.el7", - "newVersion": "2.11", - "newRelease": "28.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "cracklib": { - "name": "cracklib", - "version": "2.9.0", - "release": "11.el7", - "newVersion": "2.9.0", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "cracklib-dicts": { - "name": "cracklib-dicts", - "version": "2.9.0", - "release": "11.el7", - "newVersion": "2.9.0", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "cronie": { - "name": "cronie", - "version": "1.4.11", - "release": "13.el7", - "newVersion": "1.4.11", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "474", - "name": "crond" - } - ] - }, - "cronie-anacron": { - "name": "cronie-anacron", - "version": "1.4.11", - "release": "13.el7", - "newVersion": "1.4.11", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "crontabs": { - "name": "crontabs", - "version": "1.11", - "release": "6.20121102git.el7", - "newVersion": "1.11", - "newRelease": "6.20121102git.el7", - "arch": "noarch", - "repository": "" - }, - "cryptsetup-libs": { - "name": "cryptsetup-libs", - "version": "1.6.6", - "release": "3.el7", - "newVersion": "2.0.3", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "curl": { - "name": "curl", - "version": "7.29.0", - "release": "19.el7", - "newVersion": "7.29.0", - "newRelease": "59.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "cyrus-sasl-lib": { - "name": "cyrus-sasl-lib", - "version": "2.1.26", - "release": "17.el7", - "newVersion": "2.1.26", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "dbus": { - "name": "dbus", - "version": "1:1.6.12", - "release": "11.el7", - "newVersion": "1:1.10.24", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "469", - "name": "dbus-daemon" - } - ] - }, - "dbus-glib": { - "name": "dbus-glib", - "version": "0.100", - "release": "7.el7", - "newVersion": "0.100", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "458", - "name": "NetworkManager" - } - ] - }, - "dbus-libs": { - "name": "dbus-libs", - "version": "1:1.6.12", - "release": "11.el7", - "newVersion": "1:1.10.24", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "468", - "name": "systemd-logind" - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "dbus-python": { - "name": "dbus-python", - "version": "1.1.1", - "release": "9.el7", - "newVersion": "1.1.1", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "466", - "name": "tuned" - } - ] - }, - "desktop-file-utils": { - "name": "desktop-file-utils", - "version": "0.21", - "release": "4.el7", - "newVersion": "0.23", - "newRelease": "2.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "device-mapper": { - "name": "device-mapper", - "version": "7:1.02.93", - "release": "3.el7", - "newVersion": "7:1.02.170", - "newRelease": "6.el7_9.4", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "device-mapper-libs": { - "name": "device-mapper-libs", - "version": "7:1.02.93", - "release": "3.el7", - "newVersion": "7:1.02.170", - "newRelease": "6.el7_9.4", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "dhclient": { - "name": "dhclient", - "version": "12:4.2.5", - "release": "36.el7", - "newVersion": "12:4.2.5", - "newRelease": "82.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "489", - "name": "dhclient" - } - ] - }, - "dhcp-common": { - "name": "dhcp-common", - "version": "12:4.2.5", - "release": "36.el7", - "newVersion": "12:4.2.5", - "newRelease": "82.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "dhcp-libs": { - "name": "dhcp-libs", - "version": "12:4.2.5", - "release": "36.el7", - "newVersion": "12:4.2.5", - "newRelease": "82.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "489", - "name": "dhclient" - } - ] - }, - "diffutils": { - "name": "diffutils", - "version": "3.3", - "release": "4.el7", - "newVersion": "3.3", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "dmidecode": { - "name": "dmidecode", - "version": "1:2.12", - "release": "5.el7", - "newVersion": "1:3.2", - "newRelease": "5.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "dnsmasq": { - "name": "dnsmasq", - "version": "2.66", - "release": "12.el7", - "newVersion": "2.76", - "newRelease": "16.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "dracut": { - "name": "dracut", - "version": "033", - "release": "240.el7", - "newVersion": "033", - "newRelease": "572.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "dracut-config-generic": { - "name": "dracut-config-generic", - "version": "033", - "release": "240.el7", - "newVersion": "033", - "newRelease": "572.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "dracut-config-rescue": { - "name": "dracut-config-rescue", - "version": "033", - "release": "240.el7", - "newVersion": "033", - "newRelease": "572.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "dracut-network": { - "name": "dracut-network", - "version": "033", - "release": "240.el7", - "newVersion": "033", - "newRelease": "572.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "e2fsprogs": { - "name": "e2fsprogs", - "version": "1.42.9", - "release": "7.el7", - "newVersion": "1.42.9", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "e2fsprogs-libs": { - "name": "e2fsprogs-libs", - "version": "1.42.9", - "release": "7.el7", - "newVersion": "1.42.9", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "elfutils-libelf": { - "name": "elfutils-libelf", - "version": "0.160", - "release": "1.el7", - "newVersion": "0.176", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "elfutils-libs": { - "name": "elfutils-libs", - "version": "0.160", - "release": "1.el7", - "newVersion": "0.176", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "emacs-filesystem": { - "name": "emacs-filesystem", - "version": "1:24.3", - "release": "11.el7", - "newVersion": "1:24.3", - "newRelease": "23.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "ethtool": { - "name": "ethtool", - "version": "2:3.15", - "release": "2.el7", - "newVersion": "2:4.8", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "expat": { - "name": "expat", - "version": "2.1.0", - "release": "8.el7", - "newVersion": "2.1.0", - "newRelease": "12.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "469", - "name": "dbus-daemon" - }, - { - "pid": "490", - "name": "polkitd" - } - ] - }, - "file": { - "name": "file", - "version": "5.11", - "release": "21.el7", - "newVersion": "5.11", - "newRelease": "37.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "file-libs": { - "name": "file-libs", - "version": "5.11", - "release": "21.el7", - "newVersion": "5.11", - "newRelease": "37.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "filesystem": { - "name": "filesystem", - "version": "3.2", - "release": "18.el7", - "newVersion": "3.2", - "newRelease": "25.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "findutils": { - "name": "findutils", - "version": "1:4.5.11", - "release": "3.el7", - "newVersion": "1:4.5.11", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "fipscheck": { - "name": "fipscheck", - "version": "1.4.1", - "release": "5.el7", - "newVersion": "1.4.1", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "fipscheck-lib": { - "name": "fipscheck-lib", - "version": "1.4.1", - "release": "5.el7", - "newVersion": "1.4.1", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "freetype": { - "name": "freetype", - "version": "2.4.11", - "release": "9.el7", - "newVersion": "2.8", - "newRelease": "14.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "gawk": { - "name": "gawk", - "version": "4.0.2", - "release": "4.el7", - "newVersion": "4.0.2", - "newRelease": "4.el7_3.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "gdbm": { - "name": "gdbm", - "version": "1.10", - "release": "8.el7", - "newVersion": "1.10", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "gdisk": { - "name": "gdisk", - "version": "0.8.6", - "release": "5.el7", - "newVersion": "0.8.10", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "gettext": { - "name": "gettext", - "version": "0.18.2.1", - "release": "4.el7", - "newVersion": "0.19.8.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "gettext-libs": { - "name": "gettext-libs", - "version": "0.18.2.1", - "release": "4.el7", - "newVersion": "0.19.8.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "glib-networking": { - "name": "glib-networking", - "version": "2.40.0", - "release": "1.el7", - "newVersion": "2.56.1", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "glib2": { - "name": "glib2", - "version": "2.40.0", - "release": "4.el7", - "newVersion": "2.56.1", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "490", - "name": "polkitd" - } - ] - }, - "glibc": { - "name": "glibc", - "version": "2.17", - "release": "78.el7", - "newVersion": "2.17", - "newRelease": "323.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "473", - "name": "chronyd" - }, - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "474", - "name": "crond" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "10843", - "name": "bash" - }, - { - "pid": "476", - "name": "agetty" - }, - { - "pid": "10866", - "name": "bash" - }, - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "475", - "name": "agetty" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "469", - "name": "dbus-daemon" - }, - { - "pid": "468", - "name": "systemd-logind" - }, - { - "pid": "462", - "name": "rsyslogd" - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "490", - "name": "polkitd" - }, - { - "pid": "402", - "name": "auditd" - } - ] - }, - "glibc-common": { - "name": "glibc-common", - "version": "2.17", - "release": "78.el7", - "newVersion": "2.17", - "newRelease": "323.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "474", - "name": "crond" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "10843", - "name": "bash" - }, - { - "pid": "476", - "name": "agetty" - }, - { - "pid": "10866", - "name": "bash" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "475", - "name": "agetty" - } - ] - }, - "gmp": { - "name": "gmp", - "version": "1:6.0.0", - "release": "11.el7", - "newVersion": "1:6.0.0", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "gnupg2": { - "name": "gnupg2", - "version": "2.0.22", - "release": "3.el7", - "newVersion": "2.0.22", - "newRelease": "5.el7_5", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "gnutls": { - "name": "gnutls", - "version": "3.3.8", - "release": "12.el7", - "newVersion": "3.3.29", - "newRelease": "9.el7_6", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "gobject-introspection": { - "name": "gobject-introspection", - "version": "1.36.0", - "release": "4.el7", - "newVersion": "1.56.1", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "466", - "name": "tuned" - } - ] - }, - "gpg-pubkey": { - "name": "gpg-pubkey", - "version": "2fa658e0", - "release": "45700c69", - "newVersion": "2fa658e0", - "newRelease": "45700c69", - "arch": "(none)", - "repository": "" - }, - "gpgme": { - "name": "gpgme", - "version": "1.3.2", - "release": "5.el7", - "newVersion": "1.3.2", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "grep": { - "name": "grep", - "version": "2.20", - "release": "1.el7", - "newVersion": "2.20", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "groff-base": { - "name": "groff-base", - "version": "1.22.2", - "release": "8.el7", - "newVersion": "1.22.2", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "grub2": { - "name": "grub2", - "version": "1:2.02", - "release": "0.16.el7", - "newVersion": "1:2.02", - "newRelease": "0.87.el7_9.6", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "grub2-tools": { - "name": "grub2-tools", - "version": "1:2.02", - "release": "0.16.el7", - "newVersion": "1:2.02", - "newRelease": "0.87.el7_9.6", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "grubby": { - "name": "grubby", - "version": "8.28", - "release": "11.el7", - "newVersion": "8.28", - "newRelease": "26.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "gsettings-desktop-schemas": { - "name": "gsettings-desktop-schemas", - "version": "3.8.2", - "release": "3.el7", - "newVersion": "3.28.0", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "gzip": { - "name": "gzip", - "version": "1.5", - "release": "7.el7", - "newVersion": "1.5", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "hardlink": { - "name": "hardlink", - "version": "1:1.0", - "release": "19.el7", - "newVersion": "1:1.0", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "" - }, - "hostname": { - "name": "hostname", - "version": "3.13", - "release": "3.el7", - "newVersion": "3.13", - "newRelease": "3.el7_7.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "hwdata": { - "name": "hwdata", - "version": "0.252", - "release": "7.5.el7", - "newVersion": "0.252", - "newRelease": "9.7.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "info": { - "name": "info", - "version": "5.1", - "release": "4.el7", - "newVersion": "5.1", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "initscripts": { - "name": "initscripts", - "version": "9.49.24", - "release": "1.el7", - "newVersion": "9.49.53", - "newRelease": "1.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "iproute": { - "name": "iproute", - "version": "3.10.0", - "release": "21.el7", - "newVersion": "4.11.0", - "newRelease": "30.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "iptables": { - "name": "iptables", - "version": "1.4.21", - "release": "13.el7", - "newVersion": "1.4.21", - "newRelease": "35.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "iputils": { - "name": "iputils", - "version": "20121221", - "release": "6.el7", - "newVersion": "20160308", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "irqbalance": { - "name": "irqbalance", - "version": "2:1.0.7", - "release": "1.el7", - "newVersion": "3:1.0.7", - "newRelease": "12.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "jansson": { - "name": "jansson", - "version": "2.4", - "release": "6.el7", - "newVersion": "2.10", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "json-c": { - "name": "json-c", - "version": "0.11", - "release": "4.el7_0", - "newVersion": "0.11", - "newRelease": "4.el7_0", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "462", - "name": "rsyslogd" - } - ] - }, - "kbd": { - "name": "kbd", - "version": "1.15.5", - "release": "11.el7", - "newVersion": "1.15.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "kbd-legacy": { - "name": "kbd-legacy", - "version": "1.15.5", - "release": "11.el7", - "newVersion": "1.15.5", - "newRelease": "15.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "kbd-misc": { - "name": "kbd-misc", - "version": "1.15.5", - "release": "11.el7", - "newVersion": "1.15.5", - "newRelease": "15.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "kernel": { - "name": "kernel", - "version": "3.10.0", - "release": "229.el7", - "newVersion": "3.10.0", - "newRelease": "1160.21.1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "kernel-tools": { - "name": "kernel-tools", - "version": "3.10.0", - "release": "229.el7", - "newVersion": "3.10.0", - "newRelease": "1160.21.1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "kernel-tools-libs": { - "name": "kernel-tools-libs", - "version": "3.10.0", - "release": "229.el7", - "newVersion": "3.10.0", - "newRelease": "1160.21.1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "kexec-tools": { - "name": "kexec-tools", - "version": "2.0.7", - "release": "19.el7", - "newVersion": "2.0.15", - "newRelease": "51.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "keyutils-libs": { - "name": "keyutils-libs", - "version": "1.5.8", - "release": "3.el7", - "newVersion": "1.5.8", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "402", - "name": "auditd" - } - ] - }, - "kmod": { - "name": "kmod", - "version": "14", - "release": "10.el7", - "newVersion": "20", - "newRelease": "28.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "kmod-libs": { - "name": "kmod-libs", - "version": "14", - "release": "10.el7", - "newVersion": "20", - "newRelease": "28.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - } - ] - }, - "kpartx": { - "name": "kpartx", - "version": "0.4.9", - "release": "77.el7", - "newVersion": "0.4.9", - "newRelease": "134.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "krb5-libs": { - "name": "krb5-libs", - "version": "1.12.2", - "release": "14.el7", - "newVersion": "1.15.1", - "newRelease": "50.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "402", - "name": "auditd" - } - ] - }, - "less": { - "name": "less", - "version": "458", - "release": "8.el7", - "newVersion": "458", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libacl": { - "name": "libacl", - "version": "2.2.51", - "release": "12.el7", - "newVersion": "2.2.51", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "468", - "name": "systemd-logind" - } - ] - }, - "libassuan": { - "name": "libassuan", - "version": "2.1.0", - "release": "3.el7", - "newVersion": "2.1.0", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "libattr": { - "name": "libattr", - "version": "2.4.46", - "release": "12.el7", - "newVersion": "2.4.46", - "newRelease": "13.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "473", - "name": "chronyd" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "468", - "name": "systemd-logind" - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "libblkid": { - "name": "libblkid", - "version": "2.23.2", - "release": "21.el7", - "newVersion": "2.23.2", - "newRelease": "65.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - } - ] - }, - "libcap": { - "name": "libcap", - "version": "2.22", - "release": "8.el7", - "newVersion": "2.22", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "473", - "name": "chronyd" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "468", - "name": "systemd-logind" - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "libcap-ng": { - "name": "libcap-ng", - "version": "0.7.3", - "release": "5.el7", - "newVersion": "0.7.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "469", - "name": "dbus-daemon" - } - ] - }, - "libcgroup": { - "name": "libcgroup", - "version": "0.41", - "release": "8.el7", - "newVersion": "0.41", - "newRelease": "21.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libcom_err": { - "name": "libcom_err", - "version": "1.42.9", - "release": "7.el7", - "newVersion": "1.42.9", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "402", - "name": "auditd" - } - ] - }, - "libcroco": { - "name": "libcroco", - "version": "0.6.8", - "release": "5.el7", - "newVersion": "0.6.12", - "newRelease": "6.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libcurl": { - "name": "libcurl", - "version": "7.29.0", - "release": "19.el7", - "newVersion": "7.29.0", - "newRelease": "59.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libdaemon": { - "name": "libdaemon", - "version": "0.14", - "release": "7.el7", - "newVersion": "0.14", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "libdb": { - "name": "libdb", - "version": "5.3.21", - "release": "17.el7_0.1", - "newVersion": "5.3.21", - "newRelease": "25.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - } - ] - }, - "libdb-utils": { - "name": "libdb-utils", - "version": "5.3.21", - "release": "17.el7_0.1", - "newVersion": "5.3.21", - "newRelease": "25.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libedit": { - "name": "libedit", - "version": "3.0", - "release": "12.20121213cvs.el7", - "newVersion": "3.0", - "newRelease": "12.20121213cvs.el7", - "arch": "x86_64", - "repository": "" - }, - "libestr": { - "name": "libestr", - "version": "0.1.9", - "release": "2.el7", - "newVersion": "0.1.9", - "newRelease": "2.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "462", - "name": "rsyslogd" - } - ] - }, - "libffi": { - "name": "libffi", - "version": "3.0.13", - "release": "11.el7", - "newVersion": "3.0.13", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "490", - "name": "polkitd" - } - ] - }, - "libgcc": { - "name": "libgcc", - "version": "4.8.3", - "release": "9.el7", - "newVersion": "4.8.5", - "newRelease": "44.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "468", - "name": "systemd-logind" - }, - { - "pid": "462", - "name": "rsyslogd" - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "490", - "name": "polkitd" - } - ] - }, - "libgcrypt": { - "name": "libgcrypt", - "version": "1.5.3", - "release": "12.el7", - "newVersion": "1.5.3", - "newRelease": "14.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "462", - "name": "rsyslogd" - } - ] - }, - "libgomp": { - "name": "libgomp", - "version": "4.8.3", - "release": "9.el7", - "newVersion": "4.8.5", - "newRelease": "44.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libgpg-error": { - "name": "libgpg-error", - "version": "1.12", - "release": "3.el7", - "newVersion": "1.12", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "462", - "name": "rsyslogd" - } - ] - }, - "libgudev1": { - "name": "libgudev1", - "version": "208", - "release": "20.el7", - "newVersion": "219", - "newRelease": "78.el7_9.3", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "458", - "name": "NetworkManager" - } - ] - }, - "libicu": { - "name": "libicu", - "version": "50.1.2", - "release": "11.el7", - "newVersion": "50.2", - "newRelease": "4.el7_7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libidn": { - "name": "libidn", - "version": "1.28", - "release": "3.el7", - "newVersion": "1.28", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libmnl": { - "name": "libmnl", - "version": "1.0.3", - "release": "7.el7", - "newVersion": "1.0.3", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "libmodman": { - "name": "libmodman", - "version": "2.0.1", - "release": "8.el7", - "newVersion": "2.0.1", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "libmount": { - "name": "libmount", - "version": "2.23.2", - "release": "21.el7", - "newVersion": "2.23.2", - "newRelease": "65.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - } - ] - }, - "libndp": { - "name": "libndp", - "version": "1.2", - "release": "4.el7", - "newVersion": "1.2", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "458", - "name": "NetworkManager" - } - ] - }, - "libnetfilter_conntrack": { - "name": "libnetfilter_conntrack", - "version": "1.0.4", - "release": "2.el7", - "newVersion": "1.0.6", - "newRelease": "1.el7_3", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libnfnetlink": { - "name": "libnfnetlink", - "version": "1.0.1", - "release": "4.el7", - "newVersion": "1.0.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libnl": { - "name": "libnl", - "version": "1.1.4", - "release": "3.el7", - "newVersion": "1.1.4", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "libnl3": { - "name": "libnl3", - "version": "3.2.21", - "release": "8.el7", - "newVersion": "3.2.28", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "458", - "name": "NetworkManager" - } - ] - }, - "libnl3-cli": { - "name": "libnl3-cli", - "version": "3.2.21", - "release": "8.el7", - "newVersion": "3.2.28", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libpcap": { - "name": "libpcap", - "version": "14:1.5.3", - "release": "3.el7_0.1", - "newVersion": "14:1.5.3", - "newRelease": "12.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libpipeline": { - "name": "libpipeline", - "version": "1.2.3", - "release": "3.el7", - "newVersion": "1.2.3", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "libproxy": { - "name": "libproxy", - "version": "0.4.11", - "release": "6.el7", - "newVersion": "0.4.11", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libpwquality": { - "name": "libpwquality", - "version": "1.2.3", - "release": "4.el7", - "newVersion": "1.2.3", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "libselinux": { - "name": "libselinux", - "version": "2.2.2", - "release": "6.el7", - "newVersion": "2.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "474", - "name": "crond" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "469", - "name": "dbus-daemon" - }, - { - "pid": "468", - "name": "systemd-logind" - }, - { - "pid": "462", - "name": "rsyslogd" - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "490", - "name": "polkitd" - }, - { - "pid": "402", - "name": "auditd" - } - ] - }, - "libselinux-python": { - "name": "libselinux-python", - "version": "2.2.2", - "release": "6.el7", - "newVersion": "2.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libselinux-utils": { - "name": "libselinux-utils", - "version": "2.2.2", - "release": "6.el7", - "newVersion": "2.5", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libsemanage": { - "name": "libsemanage", - "version": "2.1.10", - "release": "16.el7", - "newVersion": "2.5", - "newRelease": "14.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libsemanage-python": { - "name": "libsemanage-python", - "version": "2.1.10", - "release": "16.el7", - "newVersion": "2.5", - "newRelease": "14.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libsepol": { - "name": "libsepol", - "version": "2.1.9", - "release": "3.el7", - "newVersion": "2.5", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libsoup": { - "name": "libsoup", - "version": "2.46.0", - "release": "3.el7", - "newVersion": "2.62.2", - "newRelease": "2.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "458", - "name": "NetworkManager" - } - ] - }, - "libss": { - "name": "libss", - "version": "1.42.9", - "release": "7.el7", - "newVersion": "1.42.9", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libssh2": { - "name": "libssh2", - "version": "1.4.3", - "release": "8.el7", - "newVersion": "1.8.0", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libstdc++": { - "name": "libstdc++", - "version": "4.8.3", - "release": "9.el7", - "newVersion": "4.8.5", - "newRelease": "44.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "490", - "name": "polkitd" - } - ] - }, - "libsysfs": { - "name": "libsysfs", - "version": "2.1.0", - "release": "16.el7", - "newVersion": "2.1.0", - "newRelease": "16.el7", - "arch": "x86_64", - "repository": "" - }, - "libtasn1": { - "name": "libtasn1", - "version": "3.8", - "release": "2.el7", - "newVersion": "4.10", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libteam": { - "name": "libteam", - "version": "1.15", - "release": "1.el7", - "newVersion": "1.29", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libunistring": { - "name": "libunistring", - "version": "0.9.3", - "release": "9.el7", - "newVersion": "0.9.3", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "libuser": { - "name": "libuser", - "version": "0.60", - "release": "5.el7", - "newVersion": "0.60", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libutempter": { - "name": "libutempter", - "version": "1.1.6", - "release": "4.el7", - "newVersion": "1.1.6", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libuuid": { - "name": "libuuid", - "version": "2.23.2", - "release": "21.el7", - "newVersion": "2.23.2", - "newRelease": "65.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "462", - "name": "rsyslogd" - } - ] - }, - "libverto": { - "name": "libverto", - "version": "0.2.5", - "release": "4.el7", - "newVersion": "0.2.5", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "libxml2": { - "name": "libxml2", - "version": "2.9.1", - "release": "5.el7_0.1", - "newVersion": "2.9.1", - "newRelease": "6.el7.5", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "458", - "name": "NetworkManager" - } - ] - }, - "libxml2-python": { - "name": "libxml2-python", - "version": "2.9.1", - "release": "5.el7_0.1", - "newVersion": "2.9.1", - "newRelease": "6.el7.5", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libxslt": { - "name": "libxslt", - "version": "1.1.28", - "release": "5.el7", - "newVersion": "1.1.28", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "libyaml": { - "name": "libyaml", - "version": "0.1.4", - "release": "11.el7_0", - "newVersion": "0.1.4", - "newRelease": "11.el7_0", - "arch": "x86_64", - "repository": "" - }, - "logrotate": { - "name": "logrotate", - "version": "3.8.6", - "release": "4.el7", - "newVersion": "3.8.6", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "lsof": { - "name": "lsof", - "version": "4.87", - "release": "6.el7", - "newVersion": "4.87", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "" - }, - "lua": { - "name": "lua", - "version": "5.1.4", - "release": "14.el7", - "newVersion": "5.1.4", - "newRelease": "15.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "lzo": { - "name": "lzo", - "version": "2.06", - "release": "6.el7_0.2", - "newVersion": "2.06", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "m2crypto": { - "name": "m2crypto", - "version": "0.21.1", - "release": "15.el7", - "newVersion": "0.21.1", - "newRelease": "17.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "make": { - "name": "make", - "version": "1:3.82", - "release": "21.el7", - "newVersion": "1:3.82", - "newRelease": "24.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "man-db": { - "name": "man-db", - "version": "2.6.3", - "release": "9.el7", - "newVersion": "2.6.3", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "mariadb-libs": { - "name": "mariadb-libs", - "version": "1:5.5.41", - "release": "2.el7_0", - "newVersion": "1:5.5.68", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - } - ] - }, - "microcode_ctl": { - "name": "microcode_ctl", - "version": "2:2.1", - "release": "10.el7", - "newVersion": "2:2.1", - "newRelease": "73.8.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "mozjs17": { - "name": "mozjs17", - "version": "17.0.0", - "release": "10.el7", - "newVersion": "17.0.0", - "newRelease": "20.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "490", - "name": "polkitd" - } - ] - }, - "ncurses": { - "name": "ncurses", - "version": "5.9", - "release": "13.20130511.el7", - "newVersion": "5.9", - "newRelease": "14.20130511.el7_4", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "ncurses-base": { - "name": "ncurses-base", - "version": "5.9", - "release": "13.20130511.el7", - "newVersion": "5.9", - "newRelease": "14.20130511.el7_4", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "ncurses-libs": { - "name": "ncurses-libs", - "version": "5.9", - "release": "13.20130511.el7", - "newVersion": "5.9", - "newRelease": "14.20130511.el7_4", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10843", - "name": "bash" - }, - { - "pid": "10866", - "name": "bash" - } - ] - }, - "net-tools": { - "name": "net-tools", - "version": "2.0", - "release": "0.17.20131004git.el7", - "newVersion": "2.0", - "newRelease": "0.25.20131004git.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "nettle": { - "name": "nettle", - "version": "2.7.1", - "release": "4.el7", - "newVersion": "2.7.1", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "newt": { - "name": "newt", - "version": "0.52.15", - "release": "4.el7", - "newVersion": "0.52.15", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "newt-python": { - "name": "newt-python", - "version": "0.52.15", - "release": "4.el7", - "newVersion": "0.52.15", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "nspr": { - "name": "nspr", - "version": "4.10.6", - "release": "3.el7", - "newVersion": "4.25.0", - "newRelease": "2.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "490", - "name": "polkitd" - } - ] - }, - "nss": { - "name": "nss", - "version": "3.16.2.3", - "release": "5.el7", - "newVersion": "3.53.1", - "newRelease": "3.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "nss-softokn": { - "name": "nss-softokn", - "version": "3.16.2.3", - "release": "9.el7", - "newVersion": "3.53.1", - "newRelease": "6.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "nss-softokn-freebl": { - "name": "nss-softokn-freebl", - "version": "3.16.2.3", - "release": "9.el7", - "newVersion": "3.53.1", - "newRelease": "6.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "473", - "name": "chronyd" - }, - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "nss-sysinit": { - "name": "nss-sysinit", - "version": "3.16.2.3", - "release": "5.el7", - "newVersion": "3.53.1", - "newRelease": "3.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "nss-tools": { - "name": "nss-tools", - "version": "3.16.2.3", - "release": "5.el7", - "newVersion": "3.53.1", - "newRelease": "3.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "nss-util": { - "name": "nss-util", - "version": "3.16.2.3", - "release": "2.el7", - "newVersion": "3.53.1", - "newRelease": "1.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "numactl-libs": { - "name": "numactl-libs", - "version": "2.0.9", - "release": "4.el7", - "newVersion": "2.0.12", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "openldap": { - "name": "openldap", - "version": "2.4.39", - "release": "6.el7", - "newVersion": "2.4.44", - "newRelease": "22.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "openssh": { - "name": "openssh", - "version": "6.6.1p1", - "release": "11.el7", - "newVersion": "7.4p1", - "newRelease": "21.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "openssh-clients": { - "name": "openssh-clients", - "version": "6.6.1p1", - "release": "11.el7", - "newVersion": "7.4p1", - "newRelease": "21.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "openssh-server": { - "name": "openssh-server", - "version": "6.6.1p1", - "release": "11.el7", - "newVersion": "7.4p1", - "newRelease": "21.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "openssl": { - "name": "openssl", - "version": "1:1.0.1e", - "release": "42.el7", - "newVersion": "1:1.0.2k", - "newRelease": "21.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "openssl-libs": { - "name": "openssl-libs", - "version": "1:1.0.1e", - "release": "42.el7", - "newVersion": "1:1.0.2k", - "newRelease": "21.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "os-prober": { - "name": "os-prober", - "version": "1.58", - "release": "5.el7", - "newVersion": "1.58", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "p11-kit": { - "name": "p11-kit", - "version": "0.20.7", - "release": "3.el7", - "newVersion": "0.23.5", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "p11-kit-trust": { - "name": "p11-kit-trust", - "version": "0.20.7", - "release": "3.el7", - "newVersion": "0.23.5", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "pam": { - "name": "pam", - "version": "1.1.8", - "release": "12.el7", - "newVersion": "1.1.8", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "474", - "name": "crond" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - } - ] - }, - "parted": { - "name": "parted", - "version": "3.1", - "release": "20.el7", - "newVersion": "3.1", - "newRelease": "32.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "passwd": { - "name": "passwd", - "version": "0.79", - "release": "4.el7", - "newVersion": "0.79", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "pciutils-libs": { - "name": "pciutils-libs", - "version": "3.2.1", - "release": "4.el7", - "newVersion": "3.5.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "pcre": { - "name": "pcre", - "version": "8.32", - "release": "14.el7", - "newVersion": "8.32", - "newRelease": "17.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "474", - "name": "crond" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "469", - "name": "dbus-daemon" - }, - { - "pid": "468", - "name": "systemd-logind" - }, - { - "pid": "462", - "name": "rsyslogd" - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "490", - "name": "polkitd" - }, - { - "pid": "402", - "name": "auditd" - } - ] - }, - "pinentry": { - "name": "pinentry", - "version": "0.8.1", - "release": "14.el7", - "newVersion": "0.8.1", - "newRelease": "17.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "pkgconfig": { - "name": "pkgconfig", - "version": "1:0.27.1", - "release": "4.el7", - "newVersion": "1:0.27.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "policycoreutils": { - "name": "policycoreutils", - "version": "2.2.5", - "release": "15.el7", - "newVersion": "2.5", - "newRelease": "34.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "policycoreutils-python": { - "name": "policycoreutils-python", - "version": "2.2.5", - "release": "15.el7", - "newVersion": "2.5", - "newRelease": "34.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "polkit": { - "name": "polkit", - "version": "0.112", - "release": "5.el7", - "newVersion": "0.112", - "newRelease": "26.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "490", - "name": "polkitd" - } - ] - }, - "polkit-pkla-compat": { - "name": "polkit-pkla-compat", - "version": "0.1", - "release": "4.el7", - "newVersion": "0.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "popt": { - "name": "popt", - "version": "1.13", - "release": "16.el7", - "newVersion": "1.13", - "newRelease": "16.el7", - "arch": "x86_64", - "repository": "" - }, - "postfix": { - "name": "postfix", - "version": "2:2.10.1", - "release": "6.el7", - "newVersion": "2:2.10.1", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - } - ] - }, - "ppp": { - "name": "ppp", - "version": "2.4.5", - "release": "33.el7", - "newVersion": "2.4.5", - "newRelease": "34.el7_7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "procps-ng": { - "name": "procps-ng", - "version": "3.3.10", - "release": "3.el7", - "newVersion": "3.3.10", - "newRelease": "28.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "pth": { - "name": "pth", - "version": "2.0.7", - "release": "22.el7", - "newVersion": "2.0.7", - "newRelease": "23.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "pyOpenSSL": { - "name": "pyOpenSSL", - "version": "0.13.1", - "release": "3.el7", - "newVersion": "0.13.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "pygobject2": { - "name": "pygobject2", - "version": "2.28.6", - "release": "11.el7", - "newVersion": "2.28.6", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "pygobject3-base": { - "name": "pygobject3-base", - "version": "3.8.2", - "release": "6.el7", - "newVersion": "3.14.0", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "466", - "name": "tuned" - } - ] - }, - "pygpgme": { - "name": "pygpgme", - "version": "0.3", - "release": "9.el7", - "newVersion": "0.3", - "newRelease": "9.el7", - "arch": "x86_64", - "repository": "" - }, - "pyliblzma": { - "name": "pyliblzma", - "version": "0.5.3", - "release": "11.el7", - "newVersion": "0.5.3", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "python": { - "name": "python", - "version": "2.7.5", - "release": "16.el7", - "newVersion": "2.7.5", - "newRelease": "90.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "466", - "name": "tuned" - } - ] - }, - "python-IPy": { - "name": "python-IPy", - "version": "0.75", - "release": "6.el7", - "newVersion": "0.75", - "newRelease": "6.el7", - "arch": "noarch", - "repository": "" - }, - "python-backports": { - "name": "python-backports", - "version": "1.0", - "release": "8.el7", - "newVersion": "1.0", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "" - }, - "python-backports-ssl_match_hostname": { - "name": "python-backports-ssl_match_hostname", - "version": "3.4.0.2", - "release": "4.el7", - "newVersion": "3.5.0.1", - "newRelease": "1.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-chardet": { - "name": "python-chardet", - "version": "2.0.1", - "release": "7.el7", - "newVersion": "2.2.1", - "newRelease": "3.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-configobj": { - "name": "python-configobj", - "version": "4.7.2", - "release": "7.el7", - "newVersion": "4.7.2", - "newRelease": "7.el7", - "arch": "noarch", - "repository": "" - }, - "python-dateutil": { - "name": "python-dateutil", - "version": "1.5", - "release": "7.el7", - "newVersion": "1.5", - "newRelease": "7.el7", - "arch": "noarch", - "repository": "" - }, - "python-decorator": { - "name": "python-decorator", - "version": "3.4.0", - "release": "3.el7", - "newVersion": "3.4.0", - "newRelease": "3.el7", - "arch": "noarch", - "repository": "" - }, - "python-dmidecode": { - "name": "python-dmidecode", - "version": "3.10.13", - "release": "11.el7", - "newVersion": "3.12.2", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-ethtool": { - "name": "python-ethtool", - "version": "0.8", - "release": "5.el7", - "newVersion": "0.8", - "newRelease": "8.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-gudev": { - "name": "python-gudev", - "version": "147.2", - "release": "7.el7", - "newVersion": "147.2", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "python-hwdata": { - "name": "python-hwdata", - "version": "1.7.3", - "release": "4.el7", - "newVersion": "1.7.3", - "newRelease": "4.el7", - "arch": "noarch", - "repository": "" - }, - "python-iniparse": { - "name": "python-iniparse", - "version": "0.4", - "release": "9.el7", - "newVersion": "0.4", - "newRelease": "9.el7", - "arch": "noarch", - "repository": "" - }, - "python-jsonpatch": { - "name": "python-jsonpatch", - "version": "1.2", - "release": "2.el7", - "newVersion": "1.2", - "newRelease": "4.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-jsonpointer": { - "name": "python-jsonpointer", - "version": "1.0", - "release": "2.el7", - "newVersion": "1.9", - "newRelease": "2.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-kitchen": { - "name": "python-kitchen", - "version": "1.1.1", - "release": "5.el7", - "newVersion": "1.1.1", - "newRelease": "5.el7", - "arch": "noarch", - "repository": "" - }, - "python-libs": { - "name": "python-libs", - "version": "2.7.5", - "release": "16.el7", - "newVersion": "2.7.5", - "newRelease": "90.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "466", - "name": "tuned" - } - ] - }, - "python-lxml": { - "name": "python-lxml", - "version": "3.2.1", - "release": "4.el7", - "newVersion": "3.2.1", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "" - }, - "python-prettytable": { - "name": "python-prettytable", - "version": "0.7.2", - "release": "1.el7", - "newVersion": "0.7.2", - "newRelease": "3.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-pycurl": { - "name": "python-pycurl", - "version": "7.19.0", - "release": "17.el7", - "newVersion": "7.19.0", - "newRelease": "19.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-pyudev": { - "name": "python-pyudev", - "version": "0.15", - "release": "6.el7", - "newVersion": "0.15", - "newRelease": "9.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-requests": { - "name": "python-requests", - "version": "1.1.0", - "release": "8.el7", - "newVersion": "2.6.0", - "newRelease": "10.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-rhsm": { - "name": "python-rhsm", - "version": "1.13.10", - "release": "1.el7", - "newVersion": "1.19.10", - "newRelease": "1.el7_4", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-setuptools": { - "name": "python-setuptools", - "version": "0.9.8", - "release": "3.el7", - "newVersion": "0.9.8", - "newRelease": "7.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-six": { - "name": "python-six", - "version": "1.7.3", - "release": "1.el7", - "newVersion": "1.9.0", - "newRelease": "2.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-urlgrabber": { - "name": "python-urlgrabber", - "version": "3.10", - "release": "6.el7", - "newVersion": "3.10", - "newRelease": "10.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "python-urllib3": { - "name": "python-urllib3", - "version": "1.5", - "release": "8.el7", - "newVersion": "1.10.2", - "newRelease": "7.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "pyxattr": { - "name": "pyxattr", - "version": "0.5.1", - "release": "5.el7", - "newVersion": "0.5.1", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "" - }, - "qrencode-libs": { - "name": "qrencode-libs", - "version": "3.4.1", - "release": "3.el7", - "newVersion": "3.4.1", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "rdma": { - "name": "rdma", - "version": "7.1_3.17", - "release": "5.el7", - "newVersion": "7.3_4.7_rc2", - "newRelease": "6.el7_3", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "readline": { - "name": "readline", - "version": "6.2", - "release": "9.el7", - "newVersion": "6.2", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "redhat-logos": { - "name": "redhat-logos", - "version": "70.0.3", - "release": "4.el7", - "newVersion": "70.7.0", - "newRelease": "1.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "redhat-release-server": { - "name": "redhat-release-server", - "version": "7.1", - "release": "1.el7", - "newVersion": "7.9", - "newRelease": "6.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "redhat-support-lib-python": { - "name": "redhat-support-lib-python", - "version": "0.9.7", - "release": "0.el7", - "newVersion": "0.12.1", - "newRelease": "1.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "redhat-support-tool": { - "name": "redhat-support-tool", - "version": "0.9.7", - "release": "1.el7", - "newVersion": "0.12.2", - "newRelease": "1.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "rh-amazon-rhui-client": { - "name": "rh-amazon-rhui-client", - "version": "2.2.118", - "release": "1.el7", - "newVersion": "3.0.40", - "newRelease": "1.el7", - "arch": "noarch", - "repository": "rhui-REGION-client-config-server-7" - }, - "rhn-check": { - "name": "rhn-check", - "version": "2.0.2", - "release": "6.el7", - "newVersion": "2.0.2", - "newRelease": "24.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "rhn-client-tools": { - "name": "rhn-client-tools", - "version": "2.0.2", - "release": "6.el7", - "newVersion": "2.0.2", - "newRelease": "24.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "rhn-setup": { - "name": "rhn-setup", - "version": "2.0.2", - "release": "6.el7", - "newVersion": "2.0.2", - "newRelease": "24.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "rhnlib": { - "name": "rhnlib", - "version": "2.5.65", - "release": "2.el7", - "newVersion": "2.5.65", - "newRelease": "8.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "rhnsd": { - "name": "rhnsd", - "version": "5.0.13", - "release": "3.el7", - "newVersion": "5.0.13", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "rootfiles": { - "name": "rootfiles", - "version": "8.1", - "release": "11.el7", - "newVersion": "8.1", - "newRelease": "11.el7", - "arch": "noarch", - "repository": "" - }, - "rpm": { - "name": "rpm", - "version": "4.11.1", - "release": "25.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "rpm-build-libs": { - "name": "rpm-build-libs", - "version": "4.11.1", - "release": "25.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "rpm-libs": { - "name": "rpm-libs", - "version": "4.11.1", - "release": "25.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "rpm-python": { - "name": "rpm-python", - "version": "4.11.1", - "release": "25.el7", - "newVersion": "4.11.3", - "newRelease": "45.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "rsync": { - "name": "rsync", - "version": "3.0.9", - "release": "15.el7", - "newVersion": "3.1.2", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "rsyslog": { - "name": "rsyslog", - "version": "7.4.7", - "release": "7.el7_0", - "newVersion": "8.24.0", - "newRelease": "57.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "462", - "name": "rsyslogd" - } - ] - }, - "sed": { - "name": "sed", - "version": "4.2.2", - "release": "5.el7", - "newVersion": "4.2.2", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "selinux-policy": { - "name": "selinux-policy", - "version": "3.13.1", - "release": "23.el7", - "newVersion": "3.13.1", - "newRelease": "268.el7_9.2", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "selinux-policy-targeted": { - "name": "selinux-policy-targeted", - "version": "3.13.1", - "release": "23.el7", - "newVersion": "3.13.1", - "newRelease": "268.el7_9.2", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - } - ] - }, - "setools-libs": { - "name": "setools-libs", - "version": "3.3.7", - "release": "46.el7", - "newVersion": "3.3.8", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "setup": { - "name": "setup", - "version": "2.8.71", - "release": "5.el7", - "newVersion": "2.8.71", - "newRelease": "11.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "shadow-utils": { - "name": "shadow-utils", - "version": "2:4.1.5.1", - "release": "18.el7", - "newVersion": "2:4.6", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "shared-mime-info": { - "name": "shared-mime-info", - "version": "1.1", - "release": "7.el7", - "newVersion": "1.8", - "newRelease": "5.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "slang": { - "name": "slang", - "version": "2.2.4", - "release": "11.el7", - "newVersion": "2.2.4", - "newRelease": "11.el7", - "arch": "x86_64", - "repository": "" - }, - "snappy": { - "name": "snappy", - "version": "1.1.0", - "release": "3.el7", - "newVersion": "1.1.0", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "" - }, - "sqlite": { - "name": "sqlite", - "version": "3.7.17", - "release": "4.el7", - "newVersion": "3.7.17", - "newRelease": "8.el7_7.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "458", - "name": "NetworkManager" - } - ] - }, - "subscription-manager": { - "name": "subscription-manager", - "version": "1.13.22", - "release": "1.el7", - "newVersion": "1.24.45", - "newRelease": "1.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "sudo": { - "name": "sudo", - "version": "1.8.6p7", - "release": "13.el7", - "newVersion": "1.8.23", - "newRelease": "10.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10864", - "name": "sudo" - } - ] - }, - "systemd": { - "name": "systemd", - "version": "208", - "release": "20.el7", - "newVersion": "219", - "newRelease": "78.el7_9.3", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "468", - "name": "systemd-logind" - } - ] - }, - "systemd-libs": { - "name": "systemd-libs", - "version": "208", - "release": "20.el7", - "newVersion": "219", - "newRelease": "78.el7_9.3", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "468", - "name": "systemd-logind" - }, - { - "pid": "462", - "name": "rsyslogd" - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "490", - "name": "polkitd" - } - ] - }, - "systemd-sysv": { - "name": "systemd-sysv", - "version": "208", - "release": "20.el7", - "newVersion": "219", - "newRelease": "78.el7_9.3", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "sysvinit-tools": { - "name": "sysvinit-tools", - "version": "2.88", - "release": "14.dsf.el7", - "newVersion": "2.88", - "newRelease": "14.dsf.el7", - "arch": "x86_64", - "repository": "" - }, - "tar": { - "name": "tar", - "version": "2:1.26", - "release": "29.el7", - "newVersion": "2:1.26", - "newRelease": "35.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "tcp_wrappers-libs": { - "name": "tcp_wrappers-libs", - "version": "7.6", - "release": "77.el7", - "newVersion": "7.6", - "newRelease": "77.el7", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "402", - "name": "auditd" - } - ] - }, - "teamd": { - "name": "teamd", - "version": "1.15", - "release": "1.el7", - "newVersion": "1.29", - "newRelease": "3.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "458", - "name": "NetworkManager" - } - ] - }, - "trousers": { - "name": "trousers", - "version": "0.3.11.2", - "release": "3.el7", - "newVersion": "0.3.14", - "newRelease": "2.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "tuned": { - "name": "tuned", - "version": "2.4.1", - "release": "1.el7", - "newVersion": "2.11.0", - "newRelease": "11.el7_9", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "tzdata": { - "name": "tzdata", - "version": "2015a", - "release": "1.el7", - "newVersion": "2021a", - "newRelease": "1.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "usermode": { - "name": "usermode", - "version": "1.111", - "release": "5.el7", - "newVersion": "1.111", - "newRelease": "6.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "ustr": { - "name": "ustr", - "version": "1.0.4", - "release": "16.el7", - "newVersion": "1.0.4", - "newRelease": "16.el7", - "arch": "x86_64", - "repository": "" - }, - "util-linux": { - "name": "util-linux", - "version": "2.23.2", - "release": "21.el7", - "newVersion": "2.23.2", - "newRelease": "65.el7_9.1", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "476", - "name": "agetty" - }, - { - "pid": "475", - "name": "agetty" - } - ] - }, - "vim-minimal": { - "name": "vim-minimal", - "version": "2:7.4.160", - "release": "1.el7", - "newVersion": "2:7.4.629", - "newRelease": "8.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "virt-what": { - "name": "virt-what", - "version": "1.13", - "release": "5.el7", - "newVersion": "1.18", - "newRelease": "4.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "which": { - "name": "which", - "version": "2.20", - "release": "7.el7", - "newVersion": "2.20", - "newRelease": "7.el7", - "arch": "x86_64", - "repository": "" - }, - "wpa_supplicant": { - "name": "wpa_supplicant", - "version": "1:2.0", - "release": "13.el7_0", - "newVersion": "1:2.6", - "newRelease": "12.el7_9.2", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "xdg-utils": { - "name": "xdg-utils", - "version": "1.1.0", - "release": "0.16.20120809git.el7", - "newVersion": "1.1.0", - "newRelease": "0.17.20120809git.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "xfsprogs": { - "name": "xfsprogs", - "version": "3.2.1", - "release": "6.el7", - "newVersion": "4.5.0", - "newRelease": "22.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "xz": { - "name": "xz", - "version": "5.1.2", - "release": "9alpha.el7", - "newVersion": "5.2.2", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases" - }, - "xz-libs": { - "name": "xz-libs", - "version": "5.1.2", - "release": "9alpha.el7", - "newVersion": "5.2.2", - "newRelease": "1.el7", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "474", - "name": "crond" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "360", - "name": "systemd-journal" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "469", - "name": "dbus-daemon" - }, - { - "pid": "468", - "name": "systemd-logind" - }, - { - "pid": "462", - "name": "rsyslogd" - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "490", - "name": "polkitd" - }, - { - "pid": "402", - "name": "auditd" - } - ] - }, - "yum": { - "name": "yum", - "version": "3.4.3", - "release": "125.el7", - "newVersion": "3.4.3", - "newRelease": "168.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "yum-metadata-parser": { - "name": "yum-metadata-parser", - "version": "1.1.4", - "release": "10.el7", - "newVersion": "1.1.4", - "newRelease": "10.el7", - "arch": "x86_64", - "repository": "" - }, - "yum-rhn-plugin": { - "name": "yum-rhn-plugin", - "version": "2.0.1", - "release": "5.el7", - "newVersion": "2.0.1", - "newRelease": "10.el7", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "yum-utils": { - "name": "yum-utils", - "version": "1.1.31", - "release": "29.el7", - "newVersion": "1.1.31", - "newRelease": "54.el7_8", - "arch": "noarch", - "repository": "rhui-REGION-rhel-server-releases" - }, - "zlib": { - "name": "zlib", - "version": "1.2.7", - "release": "13.el7", - "newVersion": "1.2.7", - "newRelease": "19.el7_9", - "arch": "x86_64", - "repository": "rhui-REGION-rhel-server-releases", - "AffectedProcs": [ - { - "pid": "10865", - "name": "su" - }, - { - "pid": "10864", - "name": "sudo" - }, - { - "pid": "489", - "name": "dhclient" - }, - { - "pid": "10842", - "name": "sshd" - }, - { - "pid": "466", - "name": "tuned" - }, - { - "pid": "1776", - "name": "master", - "listenPortStats": [ - { - "bindAddress": "127.0.0.1", - "port": "25", - "portReachableTo": [] - }, - { - "bindAddress": "[::1]", - "port": "25", - "portReachableTo": [] - } - ] - }, - { - "pid": "365", - "name": "systemd-udevd" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1786", - "name": "qmgr" - }, - { - "pid": "1785", - "name": "pickup" - }, - { - "pid": "458", - "name": "NetworkManager" - }, - { - "pid": "10839", - "name": "sshd" - }, - { - "pid": "10698", - "name": "sshd" - }, - { - "pid": "3904", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "462", - "name": "rsyslogd" - }, - { - "pid": "10701", - "name": "sshd" - }, - { - "pid": "490", - "name": "polkitd" - } - ] - } - }, - "constant": { - "scan": { - "logDir": "/var/log/vuls", - "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", - "default": { - "port": "22", - "scanMode": [ - "fast" - ] - }, - "servers": { - "rhel_71": { - "serverName": "rhel_71", - "user": "ec2-user", - "host": "18.179.9.114", - "port": "22", - "keyPath": "/home/ubuntu/.ssh/stg.pem", - "scanMode": [ - "fast-root" - ], - "wordpress": {} - } - }, - "cveDict": { - "Name": "cveDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", - "DebugSQL": false - }, - "ovalDict": { - "Name": "ovalDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", - "DebugSQL": false - }, - "gost": { - "Name": "gost", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", - "DebugSQL": false - }, - "exploit": { - "Name": "exploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", - "DebugSQL": false - }, - "metasploit": { - "Name": "metasploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", - "DebugSQL": false - } - }, - "report": { - "default": {}, - "cveDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "ovalDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "gost": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "exploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "metasploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - } - } - } -} \ No newline at end of file diff --git a/integration/data/rhel_8.json b/integration/data/rhel_8.json deleted file mode 100755 index 19e43985..00000000 --- a/integration/data/rhel_8.json +++ /dev/null @@ -1,6926 +0,0 @@ -{ - "jsonVersion": 4, - "lang": "", - "serverUUID": "", - "serverName": "rhel_8", - "family": "redhat", - "release": "8.3", - "container": { - "containerID": "", - "name": "", - "image": "", - "type": "", - "uuid": "" - }, - "platform": { - "name": "aws", - "instanceID": "i-0a73d5d36c9a1c7c5" - }, - "ipv4Addrs": [ - "192.168.0.231" - ], - "scannedAt": "2021-03-24T15:31:23.265818493+09:00", - "scanMode": "fast-root mode", - "scannedVersion": "v0.15.9", - "scannedRevision": "build-20210324_123209_fc3b438", - "scannedBy": "dev", - "scannedVia": "remote", - "scannedIpv4Addrs": [ - "172.21.0.1", - "172.19.0.1", - "172.18.0.1", - "172.17.0.1", - "172.20.0.1" - ], - "reportedAt": "0001-01-01T00:00:00Z", - "reportedVersion": "", - "reportedRevision": "", - "reportedBy": "", - "errors": [], - "warnings": [], - "scannedCves": {}, - "runningKernel": { - "release": "4.18.0-240.1.1.el8_3.x86_64", - "version": "", - "rebootRequired": false - }, - "packages": { - "NetworkManager": { - "name": "NetworkManager", - "version": "1:1.26.0", - "release": "9.el8_3", - "newVersion": "1:1.26.0", - "newRelease": "13.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - } - ] - }, - "NetworkManager-libnm": { - "name": "NetworkManager-libnm", - "version": "1:1.26.0", - "release": "9.el8_3", - "newVersion": "1:1.26.0", - "newRelease": "13.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "NetworkManager-team": { - "name": "NetworkManager-team", - "version": "1:1.26.0", - "release": "9.el8_3", - "newVersion": "1:1.26.0", - "newRelease": "13.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - } - ] - }, - "NetworkManager-tui": { - "name": "NetworkManager-tui", - "version": "1:1.26.0", - "release": "9.el8_3", - "newVersion": "1:1.26.0", - "newRelease": "13.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "acl": { - "name": "acl", - "version": "2.2.53", - "release": "1.el8", - "newVersion": "2.2.53", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "audit": { - "name": "audit", - "version": "3.0", - "release": "0.17.20191104git1c2f876.el8", - "newVersion": "3.0", - "newRelease": "0.17.20191104git1c2f876.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "646", - "name": "auditd" - } - ] - }, - "audit-libs": { - "name": "audit-libs", - "version": "3.0", - "release": "0.17.20191104git1c2f876.el8", - "newVersion": "3.0", - "newRelease": "0.17.20191104git1c2f876.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "1101", - "name": "crond" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "5014", - "name": "sshd" - } - ] - }, - "authselect": { - "name": "authselect", - "version": "1.2.1", - "release": "2.el8", - "newVersion": "1.2.1", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "authselect-compat": { - "name": "authselect-compat", - "version": "1.2.1", - "release": "2.el8", - "newVersion": "1.2.1", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "authselect-libs": { - "name": "authselect-libs", - "version": "1.2.1", - "release": "2.el8", - "newVersion": "1.2.1", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "basesystem": { - "name": "basesystem", - "version": "11", - "release": "5.el8", - "newVersion": "11", - "newRelease": "5.el8", - "arch": "noarch", - "repository": "" - }, - "bash": { - "name": "bash", - "version": "4.4.19", - "release": "12.el8", - "newVersion": "4.4.19", - "newRelease": "12.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "5018", - "name": "bash" - }, - { - "pid": "7408", - "name": "sh" - } - ] - }, - "bind-export-libs": { - "name": "bind-export-libs", - "version": "32:9.11.20", - "release": "5.el8", - "newVersion": "32:9.11.20", - "newRelease": "5.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "brotli": { - "name": "brotli", - "version": "1.0.6", - "release": "2.el8", - "newVersion": "1.0.6", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "762", - "name": "rngd" - } - ] - }, - "bzip2-libs": { - "name": "bzip2-libs", - "version": "1.0.6", - "release": "26.el8", - "newVersion": "1.0.6", - "newRelease": "26.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "853", - "name": "tuned" - } - ] - }, - "c-ares": { - "name": "c-ares", - "version": "1.13.0", - "release": "5.el8", - "newVersion": "1.13.0", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - } - ] - }, - "ca-certificates": { - "name": "ca-certificates", - "version": "2020.2.41", - "release": "80.0.el8_2", - "newVersion": "2020.2.41", - "newRelease": "80.0.el8_2", - "arch": "noarch", - "repository": "" - }, - "checkpolicy": { - "name": "checkpolicy", - "version": "2.9", - "release": "1.el8", - "newVersion": "2.9", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "chkconfig": { - "name": "chkconfig", - "version": "1.13", - "release": "2.el8", - "newVersion": "1.13", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "chrony": { - "name": "chrony", - "version": "3.5", - "release": "1.el8", - "newVersion": "3.5", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "744", - "name": "chronyd" - } - ] - }, - "cloud-init": { - "name": "cloud-init", - "version": "19.4", - "release": "11.el8", - "newVersion": "19.4", - "newRelease": "11.el8_3.2", - "arch": "noarch", - "repository": "rhel-8-appstream-rhui-rpms" - }, - "cloud-utils-growpart": { - "name": "cloud-utils-growpart", - "version": "0.31", - "release": "1.el8", - "newVersion": "0.31", - "newRelease": "1.el8", - "arch": "noarch", - "repository": "" - }, - "coreutils": { - "name": "coreutils", - "version": "8.30", - "release": "8.el8", - "newVersion": "8.30", - "newRelease": "8.el8", - "arch": "x86_64", - "repository": "" - }, - "coreutils-common": { - "name": "coreutils-common", - "version": "8.30", - "release": "8.el8", - "newVersion": "8.30", - "newRelease": "8.el8", - "arch": "x86_64", - "repository": "" - }, - "cpio": { - "name": "cpio", - "version": "2.12", - "release": "8.el8", - "newVersion": "2.12", - "newRelease": "8.el8", - "arch": "x86_64", - "repository": "" - }, - "cracklib": { - "name": "cracklib", - "version": "2.9.6", - "release": "15.el8", - "newVersion": "2.9.6", - "newRelease": "15.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "5014", - "name": "sshd" - } - ] - }, - "cracklib-dicts": { - "name": "cracklib-dicts", - "version": "2.9.6", - "release": "15.el8", - "newVersion": "2.9.6", - "newRelease": "15.el8", - "arch": "x86_64", - "repository": "" - }, - "cronie": { - "name": "cronie", - "version": "1.5.2", - "release": "4.el8", - "newVersion": "1.5.2", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1101", - "name": "crond" - } - ] - }, - "cronie-anacron": { - "name": "cronie-anacron", - "version": "1.5.2", - "release": "4.el8", - "newVersion": "1.5.2", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "crontabs": { - "name": "crontabs", - "version": "1.11", - "release": "16.20150630git.el8", - "newVersion": "1.11", - "newRelease": "16.20150630git.el8", - "arch": "noarch", - "repository": "" - }, - "crypto-policies": { - "name": "crypto-policies", - "version": "20200713", - "release": "1.git51d1222.el8", - "newVersion": "20200713", - "newRelease": "1.git51d1222.el8", - "arch": "noarch", - "repository": "" - }, - "crypto-policies-scripts": { - "name": "crypto-policies-scripts", - "version": "20200713", - "release": "1.git51d1222.el8", - "newVersion": "20200713", - "newRelease": "1.git51d1222.el8", - "arch": "noarch", - "repository": "" - }, - "cryptsetup-libs": { - "name": "cryptsetup-libs", - "version": "2.3.3", - "release": "2.el8", - "newVersion": "2.3.3", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - } - ] - }, - "curl": { - "name": "curl", - "version": "7.61.1", - "release": "14.el8", - "newVersion": "7.61.1", - "newRelease": "14.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "cyrus-sasl-lib": { - "name": "cyrus-sasl-lib", - "version": "2.1.27", - "release": "5.el8", - "newVersion": "2.1.27", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "dbus": { - "name": "dbus", - "version": "1:1.12.8", - "release": "11.el8", - "newVersion": "1:1.12.8", - "newRelease": "12.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "dbus-common": { - "name": "dbus-common", - "version": "1:1.12.8", - "release": "11.el8", - "newVersion": "1:1.12.8", - "newRelease": "12.el8_3", - "arch": "noarch", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "dbus-daemon": { - "name": "dbus-daemon", - "version": "1:1.12.8", - "release": "11.el8", - "newVersion": "1:1.12.8", - "newRelease": "12.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "742", - "name": "dbus-daemon" - } - ] - }, - "dbus-glib": { - "name": "dbus-glib", - "version": "0.110", - "release": "2.el8", - "newVersion": "0.110", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "853", - "name": "tuned" - } - ] - }, - "dbus-libs": { - "name": "dbus-libs", - "version": "1:1.12.8", - "release": "11.el8", - "newVersion": "1:1.12.8", - "newRelease": "12.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "dbus-tools": { - "name": "dbus-tools", - "version": "1:1.12.8", - "release": "11.el8", - "newVersion": "1:1.12.8", - "newRelease": "12.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "device-mapper": { - "name": "device-mapper", - "version": "8:1.02.171", - "release": "5.el8", - "newVersion": "8:1.02.171", - "newRelease": "5.el8_3.2", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "device-mapper-libs": { - "name": "device-mapper-libs", - "version": "8:1.02.171", - "release": "5.el8", - "newVersion": "8:1.02.171", - "newRelease": "5.el8_3.2", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - } - ] - }, - "dhcp-client": { - "name": "dhcp-client", - "version": "12:4.3.6", - "release": "41.el8", - "newVersion": "12:4.3.6", - "newRelease": "41.el8", - "arch": "x86_64", - "repository": "" - }, - "dhcp-common": { - "name": "dhcp-common", - "version": "12:4.3.6", - "release": "41.el8", - "newVersion": "12:4.3.6", - "newRelease": "41.el8", - "arch": "noarch", - "repository": "" - }, - "dhcp-libs": { - "name": "dhcp-libs", - "version": "12:4.3.6", - "release": "41.el8", - "newVersion": "12:4.3.6", - "newRelease": "41.el8", - "arch": "x86_64", - "repository": "" - }, - "diffutils": { - "name": "diffutils", - "version": "3.6", - "release": "6.el8", - "newVersion": "3.6", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "dmidecode": { - "name": "dmidecode", - "version": "1:3.2", - "release": "6.el8", - "newVersion": "1:3.2", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "dnf": { - "name": "dnf", - "version": "4.2.23", - "release": "4.el8", - "newVersion": "4.2.23", - "newRelease": "4.el8", - "arch": "noarch", - "repository": "" - }, - "dnf-data": { - "name": "dnf-data", - "version": "4.2.23", - "release": "4.el8", - "newVersion": "4.2.23", - "newRelease": "4.el8", - "arch": "noarch", - "repository": "" - }, - "dnf-plugin-subscription-manager": { - "name": "dnf-plugin-subscription-manager", - "version": "1.27.16", - "release": "1.el8", - "newVersion": "1.27.18", - "newRelease": "1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "dnf-plugins-core": { - "name": "dnf-plugins-core", - "version": "4.0.17", - "release": "5.el8", - "newVersion": "4.0.17", - "newRelease": "5.el8", - "arch": "noarch", - "repository": "" - }, - "dracut": { - "name": "dracut", - "version": "049", - "release": "95.git20200804.el8", - "newVersion": "049", - "newRelease": "95.git20200804.el8_3.4", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "dracut-config-generic": { - "name": "dracut-config-generic", - "version": "049", - "release": "95.git20200804.el8", - "newVersion": "049", - "newRelease": "95.git20200804.el8_3.4", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "dracut-config-rescue": { - "name": "dracut-config-rescue", - "version": "049", - "release": "95.git20200804.el8", - "newVersion": "049", - "newRelease": "95.git20200804.el8_3.4", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "dracut-network": { - "name": "dracut-network", - "version": "049", - "release": "95.git20200804.el8", - "newVersion": "049", - "newRelease": "95.git20200804.el8_3.4", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "dracut-squash": { - "name": "dracut-squash", - "version": "049", - "release": "95.git20200804.el8", - "newVersion": "049", - "newRelease": "95.git20200804.el8_3.4", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "e2fsprogs": { - "name": "e2fsprogs", - "version": "1.45.6", - "release": "1.el8", - "newVersion": "1.45.6", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "e2fsprogs-libs": { - "name": "e2fsprogs-libs", - "version": "1.45.6", - "release": "1.el8", - "newVersion": "1.45.6", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "elfutils-debuginfod-client": { - "name": "elfutils-debuginfod-client", - "version": "0.180", - "release": "1.el8", - "newVersion": "0.180", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "elfutils-default-yama-scope": { - "name": "elfutils-default-yama-scope", - "version": "0.180", - "release": "1.el8", - "newVersion": "0.180", - "newRelease": "1.el8", - "arch": "noarch", - "repository": "" - }, - "elfutils-libelf": { - "name": "elfutils-libelf", - "version": "0.180", - "release": "1.el8", - "newVersion": "0.180", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "elfutils-libs": { - "name": "elfutils-libs", - "version": "0.180", - "release": "1.el8", - "newVersion": "0.180", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "ethtool": { - "name": "ethtool", - "version": "2:5.0", - "release": "2.el8", - "newVersion": "2:5.0", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "expat": { - "name": "expat", - "version": "2.2.5", - "release": "4.el8", - "newVersion": "2.2.5", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "742", - "name": "dbus-daemon" - } - ] - }, - "file": { - "name": "file", - "version": "5.33", - "release": "16.el8", - "newVersion": "5.33", - "newRelease": "16.el8", - "arch": "x86_64", - "repository": "" - }, - "file-libs": { - "name": "file-libs", - "version": "5.33", - "release": "16.el8", - "newVersion": "5.33", - "newRelease": "16.el8", - "arch": "x86_64", - "repository": "" - }, - "filesystem": { - "name": "filesystem", - "version": "3.8", - "release": "3.el8", - "newVersion": "3.8", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "findutils": { - "name": "findutils", - "version": "1:4.6.0", - "release": "20.el8", - "newVersion": "1:4.6.0", - "newRelease": "20.el8", - "arch": "x86_64", - "repository": "" - }, - "freetype": { - "name": "freetype", - "version": "2.9.1", - "release": "4.el8", - "newVersion": "2.9.1", - "newRelease": "4.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "fuse-libs": { - "name": "fuse-libs", - "version": "2.9.7", - "release": "12.el8", - "newVersion": "2.9.7", - "newRelease": "12.el8", - "arch": "x86_64", - "repository": "" - }, - "gawk": { - "name": "gawk", - "version": "4.2.1", - "release": "1.el8", - "newVersion": "4.2.1", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "gdbm": { - "name": "gdbm", - "version": "1:1.18", - "release": "1.el8", - "newVersion": "1:1.18", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "gdbm-libs": { - "name": "gdbm-libs", - "version": "1:1.18", - "release": "1.el8", - "newVersion": "1:1.18", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "gdisk": { - "name": "gdisk", - "version": "1.0.3", - "release": "6.el8", - "newVersion": "1.0.3", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "geolite2-city": { - "name": "geolite2-city", - "version": "20180605", - "release": "1.el8", - "newVersion": "20180605", - "newRelease": "1.el8", - "arch": "noarch", - "repository": "" - }, - "geolite2-country": { - "name": "geolite2-country", - "version": "20180605", - "release": "1.el8", - "newVersion": "20180605", - "newRelease": "1.el8", - "arch": "noarch", - "repository": "" - }, - "gettext": { - "name": "gettext", - "version": "0.19.8.1", - "release": "17.el8", - "newVersion": "0.19.8.1", - "newRelease": "17.el8", - "arch": "x86_64", - "repository": "" - }, - "gettext-libs": { - "name": "gettext-libs", - "version": "0.19.8.1", - "release": "17.el8", - "newVersion": "0.19.8.1", - "newRelease": "17.el8", - "arch": "x86_64", - "repository": "" - }, - "glib2": { - "name": "glib2", - "version": "2.56.4", - "release": "8.el8", - "newVersion": "2.56.4", - "newRelease": "8.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "glibc": { - "name": "glibc", - "version": "2.28", - "release": "127.el8", - "newVersion": "2.28", - "newRelease": "127.el8_3.2", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1100", - "name": "agetty" - }, - { - "pid": "5018", - "name": "bash" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "1102", - "name": "agetty" - }, - { - "pid": "1101", - "name": "crond" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "7408", - "name": "sh" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "glibc-common": { - "name": "glibc-common", - "version": "2.28", - "release": "127.el8", - "newVersion": "2.28", - "newRelease": "127.el8_3.2", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "1102", - "name": "agetty" - } - ] - }, - "glibc-langpack-en": { - "name": "glibc-langpack-en", - "version": "2.28", - "release": "127.el8", - "newVersion": "2.28", - "newRelease": "127.el8_3.2", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "1100", - "name": "agetty" - }, - { - "pid": "5018", - "name": "bash" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "1101", - "name": "crond" - }, - { - "pid": "7408", - "name": "sh" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "gmp": { - "name": "gmp", - "version": "1:6.1.2", - "release": "10.el8", - "newVersion": "1:6.1.2", - "newRelease": "10.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "gnupg2": { - "name": "gnupg2", - "version": "2.2.20", - "release": "2.el8", - "newVersion": "2.2.20", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "gnupg2-smime": { - "name": "gnupg2-smime", - "version": "2.2.20", - "release": "2.el8", - "newVersion": "2.2.20", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "gnutls": { - "name": "gnutls", - "version": "3.6.14", - "release": "6.el8", - "newVersion": "3.6.14", - "newRelease": "7.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "gobject-introspection": { - "name": "gobject-introspection", - "version": "1.56.1", - "release": "1.el8", - "newVersion": "1.56.1", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "853", - "name": "tuned" - } - ] - }, - "gpg-pubkey": { - "name": "gpg-pubkey", - "version": "d4082792", - "release": "5b32db75", - "newVersion": "d4082792", - "newRelease": "5b32db75", - "arch": "(none)", - "repository": "" - }, - "gpgme": { - "name": "gpgme", - "version": "1.13.1", - "release": "3.el8", - "newVersion": "1.13.1", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "grep": { - "name": "grep", - "version": "3.1", - "release": "6.el8", - "newVersion": "3.1", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "groff-base": { - "name": "groff-base", - "version": "1.22.3", - "release": "18.el8", - "newVersion": "1.22.3", - "newRelease": "18.el8", - "arch": "x86_64", - "repository": "" - }, - "grub2-common": { - "name": "grub2-common", - "version": "1:2.02", - "release": "90.el8", - "newVersion": "1:2.02", - "newRelease": "90.el8_3.1", - "arch": "noarch", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "grub2-pc": { - "name": "grub2-pc", - "version": "1:2.02", - "release": "90.el8", - "newVersion": "1:2.02", - "newRelease": "90.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "grub2-pc-modules": { - "name": "grub2-pc-modules", - "version": "1:2.02", - "release": "90.el8", - "newVersion": "1:2.02", - "newRelease": "90.el8_3.1", - "arch": "noarch", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "grub2-tools": { - "name": "grub2-tools", - "version": "1:2.02", - "release": "90.el8", - "newVersion": "1:2.02", - "newRelease": "90.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "grub2-tools-extra": { - "name": "grub2-tools-extra", - "version": "1:2.02", - "release": "90.el8", - "newVersion": "1:2.02", - "newRelease": "90.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "grub2-tools-minimal": { - "name": "grub2-tools-minimal", - "version": "1:2.02", - "release": "90.el8", - "newVersion": "1:2.02", - "newRelease": "90.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "grubby": { - "name": "grubby", - "version": "8.40", - "release": "41.el8", - "newVersion": "8.40", - "newRelease": "41.el8", - "arch": "x86_64", - "repository": "" - }, - "gzip": { - "name": "gzip", - "version": "1.9", - "release": "9.el8", - "newVersion": "1.9", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "" - }, - "hardlink": { - "name": "hardlink", - "version": "1:1.3", - "release": "6.el8", - "newVersion": "1:1.3", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "hdparm": { - "name": "hdparm", - "version": "9.54", - "release": "2.el8", - "newVersion": "9.54", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "hostname": { - "name": "hostname", - "version": "3.20", - "release": "6.el8", - "newVersion": "3.20", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "hwdata": { - "name": "hwdata", - "version": "0.314", - "release": "8.6.el8", - "newVersion": "0.314", - "newRelease": "8.6.el8", - "arch": "noarch", - "repository": "" - }, - "ima-evm-utils": { - "name": "ima-evm-utils", - "version": "1.1", - "release": "5.el8", - "newVersion": "1.1", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "info": { - "name": "info", - "version": "6.5", - "release": "6.el8", - "newVersion": "6.5", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "initscripts": { - "name": "initscripts", - "version": "10.00.9", - "release": "1.el8", - "newVersion": "10.00.9", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "insights-client": { - "name": "insights-client", - "version": "3.1.0", - "release": "3.el8", - "newVersion": "3.1.1", - "newRelease": "1.el8_3", - "arch": "noarch", - "repository": "rhel-8-appstream-rhui-rpms" - }, - "ipcalc": { - "name": "ipcalc", - "version": "0.2.4", - "release": "4.el8", - "newVersion": "0.2.4", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "iproute": { - "name": "iproute", - "version": "5.3.0", - "release": "5.el8", - "newVersion": "5.3.0", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "iptables-libs": { - "name": "iptables-libs", - "version": "1.8.4", - "release": "15.el8", - "newVersion": "1.8.4", - "newRelease": "15.el8_3.3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - } - ] - }, - "iputils": { - "name": "iputils", - "version": "20180629", - "release": "2.el8", - "newVersion": "20180629", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "irqbalance": { - "name": "irqbalance", - "version": "2:1.4.0", - "release": "4.el8", - "newVersion": "2:1.4.0", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "jansson": { - "name": "jansson", - "version": "2.11", - "release": "3.el8", - "newVersion": "2.11", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - } - ] - }, - "json-c": { - "name": "json-c", - "version": "0.13.1", - "release": "0.2.el8", - "newVersion": "0.13.1", - "newRelease": "0.2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - } - ] - }, - "json-glib": { - "name": "json-glib", - "version": "1.4.4", - "release": "1.el8", - "newVersion": "1.4.4", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "kbd": { - "name": "kbd", - "version": "2.0.4", - "release": "10.el8", - "newVersion": "2.0.4", - "newRelease": "10.el8", - "arch": "x86_64", - "repository": "" - }, - "kbd-legacy": { - "name": "kbd-legacy", - "version": "2.0.4", - "release": "10.el8", - "newVersion": "2.0.4", - "newRelease": "10.el8", - "arch": "noarch", - "repository": "" - }, - "kbd-misc": { - "name": "kbd-misc", - "version": "2.0.4", - "release": "10.el8", - "newVersion": "2.0.4", - "newRelease": "10.el8", - "arch": "noarch", - "repository": "" - }, - "kernel": { - "name": "kernel", - "version": "4.18.0", - "release": "240.1.1.el8_3", - "newVersion": "4.18.0", - "newRelease": "240.8.1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "kernel-core": { - "name": "kernel-core", - "version": "4.18.0", - "release": "240.1.1.el8_3", - "newVersion": "4.18.0", - "newRelease": "240.8.1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "kernel-modules": { - "name": "kernel-modules", - "version": "4.18.0", - "release": "240.1.1.el8_3", - "newVersion": "4.18.0", - "newRelease": "240.8.1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "kernel-tools": { - "name": "kernel-tools", - "version": "4.18.0", - "release": "240.1.1.el8_3", - "newVersion": "4.18.0", - "newRelease": "240.8.1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "kernel-tools-libs": { - "name": "kernel-tools-libs", - "version": "4.18.0", - "release": "240.1.1.el8_3", - "newVersion": "4.18.0", - "newRelease": "240.8.1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "kexec-tools": { - "name": "kexec-tools", - "version": "2.0.20", - "release": "34.el8", - "newVersion": "2.0.20", - "newRelease": "34.el8_3.2", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "keyutils-libs": { - "name": "keyutils-libs", - "version": "1.5.10", - "release": "6.el8", - "newVersion": "1.5.10", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "kmod": { - "name": "kmod", - "version": "25", - "release": "16.el8", - "newVersion": "25", - "newRelease": "16.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "kmod-libs": { - "name": "kmod-libs", - "version": "25", - "release": "16.el8", - "newVersion": "25", - "newRelease": "16.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - } - ] - }, - "kpartx": { - "name": "kpartx", - "version": "0.8.4", - "release": "5.el8", - "newVersion": "0.8.4", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "krb5-libs": { - "name": "krb5-libs", - "version": "1.18.2", - "release": "5.el8", - "newVersion": "1.18.2", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "langpacks-en": { - "name": "langpacks-en", - "version": "1.0", - "release": "12.el8", - "newVersion": "1.0", - "newRelease": "12.el8", - "arch": "noarch", - "repository": "" - }, - "less": { - "name": "less", - "version": "530", - "release": "1.el8", - "newVersion": "530", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "libacl": { - "name": "libacl", - "version": "2.2.53", - "release": "1.el8", - "newVersion": "2.2.53", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - } - ] - }, - "libarchive": { - "name": "libarchive", - "version": "3.3.2", - "release": "9.el8", - "newVersion": "3.3.2", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "" - }, - "libassuan": { - "name": "libassuan", - "version": "2.5.1", - "release": "3.el8", - "newVersion": "2.5.1", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "libattr": { - "name": "libattr", - "version": "2.4.48", - "release": "3.el8", - "newVersion": "2.4.48", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - } - ] - }, - "libbasicobjects": { - "name": "libbasicobjects", - "version": "0.1.1", - "release": "39.el8", - "newVersion": "0.1.1", - "newRelease": "39.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libblkid": { - "name": "libblkid", - "version": "2.32.1", - "release": "24.el8", - "newVersion": "2.32.1", - "newRelease": "24.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libcap": { - "name": "libcap", - "version": "2.26", - "release": "4.el8", - "newVersion": "2.26", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libcap-ng": { - "name": "libcap-ng", - "version": "0.7.9", - "release": "5.el8", - "newVersion": "0.7.9", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "1101", - "name": "crond" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "5014", - "name": "sshd" - } - ] - }, - "libcollection": { - "name": "libcollection", - "version": "0.7.0", - "release": "39.el8", - "newVersion": "0.7.0", - "newRelease": "39.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libcom_err": { - "name": "libcom_err", - "version": "1.45.6", - "release": "1.el8", - "newVersion": "1.45.6", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libcomps": { - "name": "libcomps", - "version": "0.1.11", - "release": "4.el8", - "newVersion": "0.1.11", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "libcroco": { - "name": "libcroco", - "version": "0.6.12", - "release": "4.el8_2.1", - "newVersion": "0.6.12", - "newRelease": "4.el8_2.1", - "arch": "x86_64", - "repository": "" - }, - "libcurl": { - "name": "libcurl", - "version": "7.61.1", - "release": "14.el8", - "newVersion": "7.61.1", - "newRelease": "14.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "762", - "name": "rngd" - } - ] - }, - "libdaemon": { - "name": "libdaemon", - "version": "0.14", - "release": "15.el8", - "newVersion": "0.14", - "newRelease": "15.el8", - "arch": "x86_64", - "repository": "" - }, - "libdb": { - "name": "libdb", - "version": "5.3.28", - "release": "39.el8", - "newVersion": "5.3.28", - "newRelease": "39.el8", - "arch": "x86_64", - "repository": "" - }, - "libdb-utils": { - "name": "libdb-utils", - "version": "5.3.28", - "release": "39.el8", - "newVersion": "5.3.28", - "newRelease": "39.el8", - "arch": "x86_64", - "repository": "" - }, - "libdhash": { - "name": "libdhash", - "version": "0.5.0", - "release": "39.el8", - "newVersion": "0.5.0", - "newRelease": "39.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libdnf": { - "name": "libdnf", - "version": "0.48.0", - "release": "5.el8", - "newVersion": "0.48.0", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "libedit": { - "name": "libedit", - "version": "3.1", - "release": "23.20170329cvs.el8", - "newVersion": "3.1", - "newRelease": "23.20170329cvs.el8", - "arch": "x86_64", - "repository": "" - }, - "libestr": { - "name": "libestr", - "version": "0.1.10", - "release": "1.el8", - "newVersion": "0.1.10", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1096", - "name": "rsyslogd" - } - ] - }, - "libevent": { - "name": "libevent", - "version": "2.1.8", - "release": "5.el8", - "newVersion": "2.1.8", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "libfastjson": { - "name": "libfastjson", - "version": "0.99.8", - "release": "2.el8", - "newVersion": "0.99.8", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1096", - "name": "rsyslogd" - } - ] - }, - "libfdisk": { - "name": "libfdisk", - "version": "2.32.1", - "release": "24.el8", - "newVersion": "2.32.1", - "newRelease": "24.el8", - "arch": "x86_64", - "repository": "" - }, - "libffi": { - "name": "libffi", - "version": "3.1", - "release": "22.el8", - "newVersion": "3.1", - "newRelease": "22.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libgcc": { - "name": "libgcc", - "version": "8.3.1", - "release": "5.1.el8", - "newVersion": "8.3.1", - "newRelease": "5.1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libgcrypt": { - "name": "libgcrypt", - "version": "1.8.5", - "release": "4.el8", - "newVersion": "1.8.5", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libgomp": { - "name": "libgomp", - "version": "8.3.1", - "release": "5.1.el8", - "newVersion": "8.3.1", - "newRelease": "5.1.el8", - "arch": "x86_64", - "repository": "" - }, - "libgpg-error": { - "name": "libgpg-error", - "version": "1.31", - "release": "1.el8", - "newVersion": "1.31", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libidn2": { - "name": "libidn2", - "version": "2.2.0", - "release": "1.el8", - "newVersion": "2.2.0", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libini_config": { - "name": "libini_config", - "version": "1.3.1", - "release": "39.el8", - "newVersion": "1.3.1", - "newRelease": "39.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libkcapi": { - "name": "libkcapi", - "version": "1.2.0", - "release": "2.el8", - "newVersion": "1.2.0", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "libkcapi-hmaccalc": { - "name": "libkcapi-hmaccalc", - "version": "1.2.0", - "release": "2.el8", - "newVersion": "1.2.0", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "libksba": { - "name": "libksba", - "version": "1.3.5", - "release": "7.el8", - "newVersion": "1.3.5", - "newRelease": "7.el8", - "arch": "x86_64", - "repository": "" - }, - "libldb": { - "name": "libldb", - "version": "2.1.3", - "release": "2.el8", - "newVersion": "2.1.3", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libmaxminddb": { - "name": "libmaxminddb", - "version": "1.2.0", - "release": "10.el8", - "newVersion": "1.2.0", - "newRelease": "10.el8", - "arch": "x86_64", - "repository": "" - }, - "libmetalink": { - "name": "libmetalink", - "version": "0.1.3", - "release": "7.el8", - "newVersion": "0.1.3", - "newRelease": "7.el8", - "arch": "x86_64", - "repository": "" - }, - "libmnl": { - "name": "libmnl", - "version": "1.0.4", - "release": "6.el8", - "newVersion": "1.0.4", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "libmodulemd": { - "name": "libmodulemd", - "version": "2.9.4", - "release": "2.el8", - "newVersion": "2.9.4", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "libmount": { - "name": "libmount", - "version": "2.32.1", - "release": "24.el8", - "newVersion": "2.32.1", - "newRelease": "24.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libndp": { - "name": "libndp", - "version": "1.7", - "release": "3.el8", - "newVersion": "1.7", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - } - ] - }, - "libnfsidmap": { - "name": "libnfsidmap", - "version": "1:2.3.3", - "release": "35.el8", - "newVersion": "1:2.3.3", - "newRelease": "35.el8", - "arch": "x86_64", - "repository": "" - }, - "libnghttp2": { - "name": "libnghttp2", - "version": "1.33.0", - "release": "3.el8_2.1", - "newVersion": "1.33.0", - "newRelease": "3.el8_2.1", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "762", - "name": "rngd" - } - ] - }, - "libnl3": { - "name": "libnl3", - "version": "3.5.0", - "release": "1.el8", - "newVersion": "3.5.0", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "691", - "name": "sssd" - } - ] - }, - "libnl3-cli": { - "name": "libnl3-cli", - "version": "3.5.0", - "release": "1.el8", - "newVersion": "3.5.0", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "libnsl2": { - "name": "libnsl2", - "version": "1.2.0", - "release": "2.20180605git4a062cf.el8", - "newVersion": "1.2.0", - "newRelease": "2.20180605git4a062cf.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "5014", - "name": "sshd" - } - ] - }, - "libpath_utils": { - "name": "libpath_utils", - "version": "0.2.1", - "release": "39.el8", - "newVersion": "0.2.1", - "newRelease": "39.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libpcap": { - "name": "libpcap", - "version": "14:1.9.1", - "release": "4.el8", - "newVersion": "14:1.9.1", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - } - ] - }, - "libpipeline": { - "name": "libpipeline", - "version": "1.5.0", - "release": "2.el8", - "newVersion": "1.5.0", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "libpng": { - "name": "libpng", - "version": "2:1.6.34", - "release": "5.el8", - "newVersion": "2:1.6.34", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "libpsl": { - "name": "libpsl", - "version": "0.20.2", - "release": "6.el8", - "newVersion": "0.20.2", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "762", - "name": "rngd" - } - ] - }, - "libpwquality": { - "name": "libpwquality", - "version": "1.4.0", - "release": "9.el8", - "newVersion": "1.4.0", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "5014", - "name": "sshd" - } - ] - }, - "libref_array": { - "name": "libref_array", - "version": "0.1.5", - "release": "39.el8", - "newVersion": "0.1.5", - "newRelease": "39.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "librepo": { - "name": "librepo", - "version": "1.12.0", - "release": "2.el8", - "newVersion": "1.12.0", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "libreport-filesystem": { - "name": "libreport-filesystem", - "version": "2.9.5", - "release": "15.el8", - "newVersion": "2.9.5", - "newRelease": "15.el8", - "arch": "x86_64", - "repository": "" - }, - "librhsm": { - "name": "librhsm", - "version": "0.0.3", - "release": "3.el8", - "newVersion": "0.0.3", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "libseccomp": { - "name": "libseccomp", - "version": "2.4.3", - "release": "1.el8", - "newVersion": "2.4.3", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - } - ] - }, - "libsecret": { - "name": "libsecret", - "version": "0.18.6", - "release": "1.el8", - "newVersion": "0.18.6", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "libselinux": { - "name": "libselinux", - "version": "2.9", - "release": "4.el8_3", - "newVersion": "2.9", - "newRelease": "4.el8_3", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "1101", - "name": "crond" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libselinux-utils": { - "name": "libselinux-utils", - "version": "2.9", - "release": "4.el8_3", - "newVersion": "2.9", - "newRelease": "4.el8_3", - "arch": "x86_64", - "repository": "" - }, - "libsemanage": { - "name": "libsemanage", - "version": "2.9", - "release": "3.el8", - "newVersion": "2.9", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "libsepol": { - "name": "libsepol", - "version": "2.9", - "release": "1.el8", - "newVersion": "2.9", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - } - ] - }, - "libsigsegv": { - "name": "libsigsegv", - "version": "2.11", - "release": "5.el8", - "newVersion": "2.11", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "libsmartcols": { - "name": "libsmartcols", - "version": "2.32.1", - "release": "24.el8", - "newVersion": "2.32.1", - "newRelease": "24.el8", - "arch": "x86_64", - "repository": "" - }, - "libsolv": { - "name": "libsolv", - "version": "0.7.11", - "release": "1.el8", - "newVersion": "0.7.11", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "libss": { - "name": "libss", - "version": "1.45.6", - "release": "1.el8", - "newVersion": "1.45.6", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "libssh": { - "name": "libssh", - "version": "0.9.4", - "release": "2.el8", - "newVersion": "0.9.4", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "762", - "name": "rngd" - } - ] - }, - "libssh-config": { - "name": "libssh-config", - "version": "0.9.4", - "release": "2.el8", - "newVersion": "0.9.4", - "newRelease": "2.el8", - "arch": "noarch", - "repository": "" - }, - "libsss_autofs": { - "name": "libsss_autofs", - "version": "2.3.0", - "release": "9.el8", - "newVersion": "2.3.0", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "" - }, - "libsss_certmap": { - "name": "libsss_certmap", - "version": "2.3.0", - "release": "9.el8", - "newVersion": "2.3.0", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libsss_idmap": { - "name": "libsss_idmap", - "version": "2.3.0", - "release": "9.el8", - "newVersion": "2.3.0", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libsss_nss_idmap": { - "name": "libsss_nss_idmap", - "version": "2.3.0", - "release": "9.el8", - "newVersion": "2.3.0", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "" - }, - "libsss_sudo": { - "name": "libsss_sudo", - "version": "2.3.0", - "release": "9.el8", - "newVersion": "2.3.0", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "" - }, - "libstdc++": { - "name": "libstdc++", - "version": "8.3.1", - "release": "5.1.el8", - "newVersion": "8.3.1", - "newRelease": "5.1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "739", - "name": "polkitd" - } - ] - }, - "libsysfs": { - "name": "libsysfs", - "version": "2.1.0", - "release": "24.el8", - "newVersion": "2.1.0", - "newRelease": "24.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "762", - "name": "rngd" - } - ] - }, - "libtalloc": { - "name": "libtalloc", - "version": "2.3.1", - "release": "2.el8", - "newVersion": "2.3.1", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libtasn1": { - "name": "libtasn1", - "version": "4.13", - "release": "3.el8", - "newVersion": "4.13", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libtdb": { - "name": "libtdb", - "version": "1.4.3", - "release": "1.el8", - "newVersion": "1.4.3", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libteam": { - "name": "libteam", - "version": "1.31", - "release": "2.el8", - "newVersion": "1.31", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "libtevent": { - "name": "libtevent", - "version": "0.10.2", - "release": "2.el8", - "newVersion": "0.10.2", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libtirpc": { - "name": "libtirpc", - "version": "1.1.4", - "release": "4.el8", - "newVersion": "1.1.4", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "5014", - "name": "sshd" - } - ] - }, - "libunistring": { - "name": "libunistring", - "version": "0.9.9", - "release": "3.el8", - "newVersion": "0.9.9", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libusbx": { - "name": "libusbx", - "version": "1.0.23", - "release": "4.el8", - "newVersion": "1.0.23", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "libuser": { - "name": "libuser", - "version": "0.62", - "release": "23.el8", - "newVersion": "0.62", - "newRelease": "23.el8", - "arch": "x86_64", - "repository": "" - }, - "libutempter": { - "name": "libutempter", - "version": "1.1.6", - "release": "14.el8", - "newVersion": "1.1.6", - "newRelease": "14.el8", - "arch": "x86_64", - "repository": "" - }, - "libuuid": { - "name": "libuuid", - "version": "2.32.1", - "release": "24.el8", - "newVersion": "2.32.1", - "newRelease": "24.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libverto": { - "name": "libverto", - "version": "0.3.0", - "release": "5.el8", - "newVersion": "0.3.0", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "libxcrypt": { - "name": "libxcrypt", - "version": "4.1.1", - "release": "4.el8", - "newVersion": "4.1.1", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "libxkbcommon": { - "name": "libxkbcommon", - "version": "0.9.1", - "release": "1.el8", - "newVersion": "0.9.1", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "libxml2": { - "name": "libxml2", - "version": "2.9.7", - "release": "8.el8", - "newVersion": "2.9.7", - "newRelease": "8.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "762", - "name": "rngd" - } - ] - }, - "libyaml": { - "name": "libyaml", - "version": "0.1.7", - "release": "5.el8", - "newVersion": "0.1.7", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "libzstd": { - "name": "libzstd", - "version": "1.4.4", - "release": "1.el8", - "newVersion": "1.4.4", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "logrotate": { - "name": "logrotate", - "version": "3.14.0", - "release": "4.el8", - "newVersion": "3.14.0", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "lshw": { - "name": "lshw", - "version": "B.02.19.2", - "release": "2.el8", - "newVersion": "B.02.19.2", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "lsof": { - "name": "lsof", - "version": "4.93.2", - "release": "1.el8", - "newVersion": "4.93.2", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "lsscsi": { - "name": "lsscsi", - "version": "0.30", - "release": "1.el8", - "newVersion": "0.30", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "lua-libs": { - "name": "lua-libs", - "version": "5.3.4", - "release": "11.el8", - "newVersion": "5.3.4", - "newRelease": "11.el8", - "arch": "x86_64", - "repository": "" - }, - "lz4-libs": { - "name": "lz4-libs", - "version": "1.8.3", - "release": "2.el8", - "newVersion": "1.8.3", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "lzo": { - "name": "lzo", - "version": "2.08", - "release": "14.el8", - "newVersion": "2.08", - "newRelease": "14.el8", - "arch": "x86_64", - "repository": "" - }, - "man-db": { - "name": "man-db", - "version": "2.7.6.1", - "release": "17.el8", - "newVersion": "2.7.6.1", - "newRelease": "17.el8", - "arch": "x86_64", - "repository": "" - }, - "memstrack": { - "name": "memstrack", - "version": "0.1.11", - "release": "1.el8", - "newVersion": "0.1.11", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "microcode_ctl": { - "name": "microcode_ctl", - "version": "4:20200609", - "release": "2.el8", - "newVersion": "4:20200609", - "newRelease": "2.20210216.1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "mozjs60": { - "name": "mozjs60", - "version": "60.9.0", - "release": "4.el8", - "newVersion": "60.9.0", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "739", - "name": "polkitd" - } - ] - }, - "mpfr": { - "name": "mpfr", - "version": "3.1.6", - "release": "1.el8", - "newVersion": "3.1.6", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "ncurses": { - "name": "ncurses", - "version": "6.1", - "release": "7.20180224.el8", - "newVersion": "6.1", - "newRelease": "7.20180224.el8", - "arch": "x86_64", - "repository": "" - }, - "ncurses-base": { - "name": "ncurses-base", - "version": "6.1", - "release": "7.20180224.el8", - "newVersion": "6.1", - "newRelease": "7.20180224.el8", - "arch": "noarch", - "repository": "" - }, - "ncurses-libs": { - "name": "ncurses-libs", - "version": "6.1", - "release": "7.20180224.el8", - "newVersion": "6.1", - "newRelease": "7.20180224.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "5018", - "name": "bash" - }, - { - "pid": "7408", - "name": "sh" - } - ] - }, - "net-tools": { - "name": "net-tools", - "version": "2.0", - "release": "0.52.20160912git.el8", - "newVersion": "2.0", - "newRelease": "0.52.20160912git.el8", - "arch": "x86_64", - "repository": "" - }, - "nettle": { - "name": "nettle", - "version": "3.4.1", - "release": "2.el8", - "newVersion": "3.4.1", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "newt": { - "name": "newt", - "version": "0.52.20", - "release": "11.el8", - "newVersion": "0.52.20", - "newRelease": "11.el8", - "arch": "x86_64", - "repository": "" - }, - "npth": { - "name": "npth", - "version": "1.5", - "release": "4.el8", - "newVersion": "1.5", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "numactl-libs": { - "name": "numactl-libs", - "version": "2.0.12", - "release": "11.el8", - "newVersion": "2.0.12", - "newRelease": "11.el8", - "arch": "x86_64", - "repository": "" - }, - "oddjob": { - "name": "oddjob", - "version": "0.34.5", - "release": "3.el8", - "newVersion": "0.34.5", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "oddjob-mkhomedir": { - "name": "oddjob-mkhomedir", - "version": "0.34.5", - "release": "3.el8", - "newVersion": "0.34.5", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "openldap": { - "name": "openldap", - "version": "2.4.46", - "release": "15.el8", - "newVersion": "2.4.46", - "newRelease": "15.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "openssh": { - "name": "openssh", - "version": "8.0p1", - "release": "5.el8", - "newVersion": "8.0p1", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "openssh-clients": { - "name": "openssh-clients", - "version": "8.0p1", - "release": "5.el8", - "newVersion": "8.0p1", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "openssh-server": { - "name": "openssh-server", - "version": "8.0p1", - "release": "5.el8", - "newVersion": "8.0p1", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "5014", - "name": "sshd" - } - ] - }, - "openssl": { - "name": "openssl", - "version": "1:1.1.1g", - "release": "11.el8", - "newVersion": "1:1.1.1g", - "newRelease": "12.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "openssl-libs": { - "name": "openssl-libs", - "version": "1:1.1.1g", - "release": "11.el8", - "newVersion": "1:1.1.1g", - "newRelease": "12.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "openssl-pkcs11": { - "name": "openssl-pkcs11", - "version": "0.4.10", - "release": "2.el8", - "newVersion": "0.4.10", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "os-prober": { - "name": "os-prober", - "version": "1.74", - "release": "6.el8", - "newVersion": "1.74", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "p11-kit": { - "name": "p11-kit", - "version": "0.23.14", - "release": "5.el8_0", - "newVersion": "0.23.14", - "newRelease": "5.el8_0", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "p11-kit-trust": { - "name": "p11-kit-trust", - "version": "0.23.14", - "release": "5.el8_0", - "newVersion": "0.23.14", - "newRelease": "5.el8_0", - "arch": "x86_64", - "repository": "" - }, - "pam": { - "name": "pam", - "version": "1.3.1", - "release": "11.el8", - "newVersion": "1.3.1", - "newRelease": "11.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "1101", - "name": "crond" - }, - { - "pid": "5014", - "name": "sshd" - } - ] - }, - "parted": { - "name": "parted", - "version": "3.2", - "release": "38.el8", - "newVersion": "3.2", - "newRelease": "38.el8", - "arch": "x86_64", - "repository": "" - }, - "passwd": { - "name": "passwd", - "version": "0.80", - "release": "3.el8", - "newVersion": "0.80", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "pciutils": { - "name": "pciutils", - "version": "3.6.4", - "release": "2.el8", - "newVersion": "3.6.4", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "pciutils-libs": { - "name": "pciutils-libs", - "version": "3.6.4", - "release": "2.el8", - "newVersion": "3.6.4", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "pcre": { - "name": "pcre", - "version": "8.42", - "release": "4.el8", - "newVersion": "8.42", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "pcre2": { - "name": "pcre2", - "version": "10.32", - "release": "2.el8", - "newVersion": "10.32", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "1101", - "name": "crond" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "pigz": { - "name": "pigz", - "version": "2.4", - "release": "4.el8", - "newVersion": "2.4", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "pinentry": { - "name": "pinentry", - "version": "1.1.0", - "release": "2.el8", - "newVersion": "1.1.0", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "platform-python": { - "name": "platform-python", - "version": "3.6.8", - "release": "31.el8", - "newVersion": "3.6.8", - "newRelease": "31.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "853", - "name": "tuned" - } - ] - }, - "platform-python-pip": { - "name": "platform-python-pip", - "version": "9.0.3", - "release": "18.el8", - "newVersion": "9.0.3", - "newRelease": "18.el8", - "arch": "noarch", - "repository": "" - }, - "platform-python-setuptools": { - "name": "platform-python-setuptools", - "version": "39.2.0", - "release": "6.el8", - "newVersion": "39.2.0", - "newRelease": "6.el8", - "arch": "noarch", - "repository": "" - }, - "policycoreutils": { - "name": "policycoreutils", - "version": "2.9", - "release": "9.el8", - "newVersion": "2.9", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "" - }, - "polkit": { - "name": "polkit", - "version": "0.115", - "release": "11.el8", - "newVersion": "0.115", - "newRelease": "11.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "739", - "name": "polkitd" - } - ] - }, - "polkit-libs": { - "name": "polkit-libs", - "version": "0.115", - "release": "11.el8", - "newVersion": "0.115", - "newRelease": "11.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "739", - "name": "polkitd" - } - ] - }, - "polkit-pkla-compat": { - "name": "polkit-pkla-compat", - "version": "0.1", - "release": "12.el8", - "newVersion": "0.1", - "newRelease": "12.el8", - "arch": "x86_64", - "repository": "" - }, - "popt": { - "name": "popt", - "version": "1.16", - "release": "14.el8", - "newVersion": "1.16", - "newRelease": "14.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "prefixdevname": { - "name": "prefixdevname", - "version": "0.1.0", - "release": "6.el8", - "newVersion": "0.1.0", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "procps-ng": { - "name": "procps-ng", - "version": "3.3.15", - "release": "3.el8", - "newVersion": "3.3.15", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "psmisc": { - "name": "psmisc", - "version": "23.1", - "release": "5.el8", - "newVersion": "23.1", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "publicsuffix-list-dafsa": { - "name": "publicsuffix-list-dafsa", - "version": "20180723", - "release": "1.el8", - "newVersion": "20180723", - "newRelease": "1.el8", - "arch": "noarch", - "repository": "" - }, - "python3-asn1crypto": { - "name": "python3-asn1crypto", - "version": "0.24.0", - "release": "3.el8", - "newVersion": "0.24.0", - "newRelease": "3.el8", - "arch": "noarch", - "repository": "" - }, - "python3-audit": { - "name": "python3-audit", - "version": "3.0", - "release": "0.17.20191104git1c2f876.el8", - "newVersion": "3.0", - "newRelease": "0.17.20191104git1c2f876.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-babel": { - "name": "python3-babel", - "version": "2.5.1", - "release": "5.el8", - "newVersion": "2.5.1", - "newRelease": "5.el8", - "arch": "noarch", - "repository": "" - }, - "python3-cffi": { - "name": "python3-cffi", - "version": "1.11.5", - "release": "5.el8", - "newVersion": "1.11.5", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-chardet": { - "name": "python3-chardet", - "version": "3.0.4", - "release": "7.el8", - "newVersion": "3.0.4", - "newRelease": "7.el8", - "arch": "noarch", - "repository": "" - }, - "python3-configobj": { - "name": "python3-configobj", - "version": "5.0.6", - "release": "11.el8", - "newVersion": "5.0.6", - "newRelease": "11.el8", - "arch": "noarch", - "repository": "" - }, - "python3-cryptography": { - "name": "python3-cryptography", - "version": "2.3", - "release": "3.el8", - "newVersion": "2.3", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-dateutil": { - "name": "python3-dateutil", - "version": "1:2.6.1", - "release": "6.el8", - "newVersion": "1:2.6.1", - "newRelease": "6.el8", - "arch": "noarch", - "repository": "" - }, - "python3-dbus": { - "name": "python3-dbus", - "version": "1.2.4", - "release": "15.el8", - "newVersion": "1.2.4", - "newRelease": "15.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "853", - "name": "tuned" - } - ] - }, - "python3-decorator": { - "name": "python3-decorator", - "version": "4.2.1", - "release": "2.el8", - "newVersion": "4.2.1", - "newRelease": "2.el8", - "arch": "noarch", - "repository": "" - }, - "python3-dmidecode": { - "name": "python3-dmidecode", - "version": "3.12.2", - "release": "15.el8", - "newVersion": "3.12.2", - "newRelease": "15.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "853", - "name": "tuned" - } - ] - }, - "python3-dnf": { - "name": "python3-dnf", - "version": "4.2.23", - "release": "4.el8", - "newVersion": "4.2.23", - "newRelease": "4.el8", - "arch": "noarch", - "repository": "" - }, - "python3-dnf-plugins-core": { - "name": "python3-dnf-plugins-core", - "version": "4.0.17", - "release": "5.el8", - "newVersion": "4.0.17", - "newRelease": "5.el8", - "arch": "noarch", - "repository": "" - }, - "python3-ethtool": { - "name": "python3-ethtool", - "version": "0.14", - "release": "3.el8", - "newVersion": "0.14", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-gobject-base": { - "name": "python3-gobject-base", - "version": "3.28.3", - "release": "2.el8", - "newVersion": "3.28.3", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "853", - "name": "tuned" - } - ] - }, - "python3-gpg": { - "name": "python3-gpg", - "version": "1.13.1", - "release": "3.el8", - "newVersion": "1.13.1", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-hawkey": { - "name": "python3-hawkey", - "version": "0.48.0", - "release": "5.el8", - "newVersion": "0.48.0", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-idna": { - "name": "python3-idna", - "version": "2.5", - "release": "5.el8", - "newVersion": "2.5", - "newRelease": "5.el8", - "arch": "noarch", - "repository": "" - }, - "python3-iniparse": { - "name": "python3-iniparse", - "version": "0.4", - "release": "31.el8", - "newVersion": "0.4", - "newRelease": "31.el8", - "arch": "noarch", - "repository": "" - }, - "python3-inotify": { - "name": "python3-inotify", - "version": "0.9.6", - "release": "13.el8", - "newVersion": "0.9.6", - "newRelease": "13.el8", - "arch": "noarch", - "repository": "" - }, - "python3-jinja2": { - "name": "python3-jinja2", - "version": "2.10.1", - "release": "2.el8_0", - "newVersion": "2.10.1", - "newRelease": "2.el8_0", - "arch": "noarch", - "repository": "" - }, - "python3-jsonpatch": { - "name": "python3-jsonpatch", - "version": "1.21", - "release": "2.el8", - "newVersion": "1.21", - "newRelease": "2.el8", - "arch": "noarch", - "repository": "" - }, - "python3-jsonpointer": { - "name": "python3-jsonpointer", - "version": "1.10", - "release": "11.el8", - "newVersion": "1.10", - "newRelease": "11.el8", - "arch": "noarch", - "repository": "" - }, - "python3-jsonschema": { - "name": "python3-jsonschema", - "version": "2.6.0", - "release": "4.el8", - "newVersion": "2.6.0", - "newRelease": "4.el8", - "arch": "noarch", - "repository": "" - }, - "python3-jwt": { - "name": "python3-jwt", - "version": "1.6.1", - "release": "2.el8", - "newVersion": "1.6.1", - "newRelease": "2.el8", - "arch": "noarch", - "repository": "" - }, - "python3-libcomps": { - "name": "python3-libcomps", - "version": "0.1.11", - "release": "4.el8", - "newVersion": "0.1.11", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-libdnf": { - "name": "python3-libdnf", - "version": "0.48.0", - "release": "5.el8", - "newVersion": "0.48.0", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-librepo": { - "name": "python3-librepo", - "version": "1.12.0", - "release": "2.el8", - "newVersion": "1.12.0", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-libs": { - "name": "python3-libs", - "version": "3.6.8", - "release": "31.el8", - "newVersion": "3.6.8", - "newRelease": "31.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "853", - "name": "tuned" - } - ] - }, - "python3-libselinux": { - "name": "python3-libselinux", - "version": "2.9", - "release": "4.el8_3", - "newVersion": "2.9", - "newRelease": "4.el8_3", - "arch": "x86_64", - "repository": "" - }, - "python3-libsemanage": { - "name": "python3-libsemanage", - "version": "2.9", - "release": "3.el8", - "newVersion": "2.9", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-libxml2": { - "name": "python3-libxml2", - "version": "2.9.7", - "release": "8.el8", - "newVersion": "2.9.7", - "newRelease": "8.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "853", - "name": "tuned" - } - ] - }, - "python3-linux-procfs": { - "name": "python3-linux-procfs", - "version": "0.6.2", - "release": "2.el8", - "newVersion": "0.6.2", - "newRelease": "2.el8", - "arch": "noarch", - "repository": "" - }, - "python3-magic": { - "name": "python3-magic", - "version": "5.33", - "release": "16.el8", - "newVersion": "5.33", - "newRelease": "16.el8", - "arch": "noarch", - "repository": "" - }, - "python3-markupsafe": { - "name": "python3-markupsafe", - "version": "0.23", - "release": "19.el8", - "newVersion": "0.23", - "newRelease": "19.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-oauthlib": { - "name": "python3-oauthlib", - "version": "2.1.0", - "release": "1.el8", - "newVersion": "2.1.0", - "newRelease": "1.el8", - "arch": "noarch", - "repository": "" - }, - "python3-perf": { - "name": "python3-perf", - "version": "4.18.0", - "release": "240.1.1.el8_3", - "newVersion": "4.18.0", - "newRelease": "240.8.1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "python3-pip-wheel": { - "name": "python3-pip-wheel", - "version": "9.0.3", - "release": "18.el8", - "newVersion": "9.0.3", - "newRelease": "18.el8", - "arch": "noarch", - "repository": "" - }, - "python3-ply": { - "name": "python3-ply", - "version": "3.9", - "release": "8.el8", - "newVersion": "3.9", - "newRelease": "8.el8", - "arch": "noarch", - "repository": "" - }, - "python3-policycoreutils": { - "name": "python3-policycoreutils", - "version": "2.9", - "release": "9.el8", - "newVersion": "2.9", - "newRelease": "9.el8", - "arch": "noarch", - "repository": "" - }, - "python3-prettytable": { - "name": "python3-prettytable", - "version": "0.7.2", - "release": "14.el8", - "newVersion": "0.7.2", - "newRelease": "14.el8", - "arch": "noarch", - "repository": "" - }, - "python3-pycparser": { - "name": "python3-pycparser", - "version": "2.14", - "release": "14.el8", - "newVersion": "2.14", - "newRelease": "14.el8", - "arch": "noarch", - "repository": "" - }, - "python3-pyserial": { - "name": "python3-pyserial", - "version": "3.1.1", - "release": "8.el8", - "newVersion": "3.1.1", - "newRelease": "8.el8", - "arch": "noarch", - "repository": "" - }, - "python3-pysocks": { - "name": "python3-pysocks", - "version": "1.6.8", - "release": "3.el8", - "newVersion": "1.6.8", - "newRelease": "3.el8", - "arch": "noarch", - "repository": "" - }, - "python3-pytz": { - "name": "python3-pytz", - "version": "2017.2", - "release": "9.el8", - "newVersion": "2017.2", - "newRelease": "9.el8", - "arch": "noarch", - "repository": "" - }, - "python3-pyudev": { - "name": "python3-pyudev", - "version": "0.21.0", - "release": "7.el8", - "newVersion": "0.21.0", - "newRelease": "7.el8", - "arch": "noarch", - "repository": "" - }, - "python3-pyyaml": { - "name": "python3-pyyaml", - "version": "3.12", - "release": "12.el8", - "newVersion": "3.12", - "newRelease": "12.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-requests": { - "name": "python3-requests", - "version": "2.20.0", - "release": "2.1.el8_1", - "newVersion": "2.20.0", - "newRelease": "2.1.el8_1", - "arch": "noarch", - "repository": "" - }, - "python3-rpm": { - "name": "python3-rpm", - "version": "4.14.3", - "release": "4.el8", - "newVersion": "4.14.3", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-schedutils": { - "name": "python3-schedutils", - "version": "0.6", - "release": "6.el8", - "newVersion": "0.6", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-setools": { - "name": "python3-setools", - "version": "4.3.0", - "release": "2.el8", - "newVersion": "4.3.0", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-setuptools-wheel": { - "name": "python3-setuptools-wheel", - "version": "39.2.0", - "release": "6.el8", - "newVersion": "39.2.0", - "newRelease": "6.el8", - "arch": "noarch", - "repository": "" - }, - "python3-six": { - "name": "python3-six", - "version": "1.11.0", - "release": "8.el8", - "newVersion": "1.11.0", - "newRelease": "8.el8", - "arch": "noarch", - "repository": "" - }, - "python3-subscription-manager-rhsm": { - "name": "python3-subscription-manager-rhsm", - "version": "1.27.16", - "release": "1.el8", - "newVersion": "1.27.18", - "newRelease": "1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "python3-syspurpose": { - "name": "python3-syspurpose", - "version": "1.27.16", - "release": "1.el8", - "newVersion": "1.27.18", - "newRelease": "1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "python3-unbound": { - "name": "python3-unbound", - "version": "1.7.3", - "release": "14.el8", - "newVersion": "1.7.3", - "newRelease": "14.el8", - "arch": "x86_64", - "repository": "" - }, - "python3-urllib3": { - "name": "python3-urllib3", - "version": "1.24.2", - "release": "4.el8", - "newVersion": "1.24.2", - "newRelease": "4.el8", - "arch": "noarch", - "repository": "" - }, - "qemu-guest-agent": { - "name": "qemu-guest-agent", - "version": "15:4.2.0", - "release": "34.module+el8.3.0+7976+077be4ec", - "newVersion": "15:4.2.0", - "newRelease": "34.module+el8.3.0+9903+ca3e42fb.4", - "arch": "x86_64", - "repository": "rhel-8-appstream-rhui-rpms" - }, - "readline": { - "name": "readline", - "version": "7.0", - "release": "10.el8", - "newVersion": "7.0", - "newRelease": "10.el8", - "arch": "x86_64", - "repository": "" - }, - "redhat-release": { - "name": "redhat-release", - "version": "8.3", - "release": "1.0.el8", - "newVersion": "8.3", - "newRelease": "1.0.el8", - "arch": "x86_64", - "repository": "" - }, - "redhat-release-eula": { - "name": "redhat-release-eula", - "version": "8.3", - "release": "1.0.el8", - "newVersion": "8.3", - "newRelease": "1.0.el8", - "arch": "x86_64", - "repository": "" - }, - "rh-amazon-rhui-client": { - "name": "rh-amazon-rhui-client", - "version": "3.0.32", - "release": "1.el8", - "newVersion": "3.0.40", - "newRelease": "1.el8", - "arch": "noarch", - "repository": "rhui-client-config-server-8" - }, - "rng-tools": { - "name": "rng-tools", - "version": "6.8", - "release": "3.el8", - "newVersion": "6.8", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "762", - "name": "rngd" - } - ] - }, - "rootfiles": { - "name": "rootfiles", - "version": "8.1", - "release": "22.el8", - "newVersion": "8.1", - "newRelease": "22.el8", - "arch": "noarch", - "repository": "" - }, - "rpm": { - "name": "rpm", - "version": "4.14.3", - "release": "4.el8", - "newVersion": "4.14.3", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "rpm-build-libs": { - "name": "rpm-build-libs", - "version": "4.14.3", - "release": "4.el8", - "newVersion": "4.14.3", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "rpm-libs": { - "name": "rpm-libs", - "version": "4.14.3", - "release": "4.el8", - "newVersion": "4.14.3", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "rpm-plugin-selinux": { - "name": "rpm-plugin-selinux", - "version": "4.14.3", - "release": "4.el8", - "newVersion": "4.14.3", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "rpm-plugin-systemd-inhibit": { - "name": "rpm-plugin-systemd-inhibit", - "version": "4.14.3", - "release": "4.el8", - "newVersion": "4.14.3", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "rsync": { - "name": "rsync", - "version": "3.1.3", - "release": "9.el8", - "newVersion": "3.1.3", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "" - }, - "rsyslog": { - "name": "rsyslog", - "version": "8.1911.0", - "release": "6.el8", - "newVersion": "8.1911.0", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1096", - "name": "rsyslogd" - } - ] - }, - "sed": { - "name": "sed", - "version": "4.5", - "release": "2.el8", - "newVersion": "4.5", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "" - }, - "selinux-policy": { - "name": "selinux-policy", - "version": "3.14.3", - "release": "54.el8", - "newVersion": "3.14.3", - "newRelease": "54.el8_3.2", - "arch": "noarch", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "selinux-policy-targeted": { - "name": "selinux-policy-targeted", - "version": "3.14.3", - "release": "54.el8", - "newVersion": "3.14.3", - "newRelease": "54.el8_3.2", - "arch": "noarch", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "802", - "name": "systemd-logind" - } - ] - }, - "setup": { - "name": "setup", - "version": "2.12.2", - "release": "6.el8", - "newVersion": "2.12.2", - "newRelease": "6.el8", - "arch": "noarch", - "repository": "" - }, - "sg3_utils": { - "name": "sg3_utils", - "version": "1.44", - "release": "5.el8", - "newVersion": "1.44", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "sg3_utils-libs": { - "name": "sg3_utils-libs", - "version": "1.44", - "release": "5.el8", - "newVersion": "1.44", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "shadow-utils": { - "name": "shadow-utils", - "version": "2:4.6", - "release": "11.el8", - "newVersion": "2:4.6", - "newRelease": "11.el8", - "arch": "x86_64", - "repository": "" - }, - "shared-mime-info": { - "name": "shared-mime-info", - "version": "1.9", - "release": "3.el8", - "newVersion": "1.9", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "slang": { - "name": "slang", - "version": "2.3.2", - "release": "3.el8", - "newVersion": "2.3.2", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "snappy": { - "name": "snappy", - "version": "1.1.8", - "release": "3.el8", - "newVersion": "1.1.8", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "sqlite-libs": { - "name": "sqlite-libs", - "version": "3.26.0", - "release": "11.el8", - "newVersion": "3.26.0", - "newRelease": "11.el8", - "arch": "x86_64", - "repository": "" - }, - "squashfs-tools": { - "name": "squashfs-tools", - "version": "4.3", - "release": "19.el8", - "newVersion": "4.3", - "newRelease": "19.el8", - "arch": "x86_64", - "repository": "" - }, - "sssd-client": { - "name": "sssd-client", - "version": "2.3.0", - "release": "9.el8", - "newVersion": "2.3.0", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1100", - "name": "agetty" - }, - { - "pid": "5018", - "name": "bash" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "1102", - "name": "agetty" - }, - { - "pid": "1101", - "name": "crond" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "7408", - "name": "sh" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "sssd-common": { - "name": "sssd-common", - "version": "2.3.0", - "release": "9.el8", - "newVersion": "2.3.0", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1100", - "name": "agetty" - }, - { - "pid": "5018", - "name": "bash" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "1102", - "name": "agetty" - }, - { - "pid": "1101", - "name": "crond" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "7408", - "name": "sh" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "sssd-kcm": { - "name": "sssd-kcm", - "version": "2.3.0", - "release": "9.el8", - "newVersion": "2.3.0", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "" - }, - "sssd-nfs-idmap": { - "name": "sssd-nfs-idmap", - "version": "2.3.0", - "release": "9.el8", - "newVersion": "2.3.0", - "newRelease": "9.el8", - "arch": "x86_64", - "repository": "" - }, - "subscription-manager": { - "name": "subscription-manager", - "version": "1.27.16", - "release": "1.el8", - "newVersion": "1.27.18", - "newRelease": "1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "subscription-manager-rhsm-certificates": { - "name": "subscription-manager-rhsm-certificates", - "version": "1.27.16", - "release": "1.el8", - "newVersion": "1.27.18", - "newRelease": "1.el8_3", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "sudo": { - "name": "sudo", - "version": "1.8.29", - "release": "6.el8", - "newVersion": "1.8.29", - "newRelease": "6.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "systemd": { - "name": "systemd", - "version": "239", - "release": "41.el8_3", - "newVersion": "239", - "newRelease": "41.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - } - ] - }, - "systemd-libs": { - "name": "systemd-libs", - "version": "239", - "release": "41.el8_3", - "newVersion": "239", - "newRelease": "41.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "744", - "name": "chronyd" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "systemd-pam": { - "name": "systemd-pam", - "version": "239", - "release": "41.el8_3", - "newVersion": "239", - "newRelease": "41.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "5014", - "name": "sshd" - } - ] - }, - "systemd-udev": { - "name": "systemd-udev", - "version": "239", - "release": "41.el8_3", - "newVersion": "239", - "newRelease": "41.el8_3.1", - "arch": "x86_64", - "repository": "rhel-8-baseos-rhui-rpms", - "AffectedProcs": [ - { - "pid": "671", - "name": "systemd-udevd" - } - ] - }, - "tar": { - "name": "tar", - "version": "2:1.30", - "release": "5.el8", - "newVersion": "2:1.30", - "newRelease": "5.el8", - "arch": "x86_64", - "repository": "" - }, - "teamd": { - "name": "teamd", - "version": "1.31", - "release": "2.el8", - "newVersion": "1.31", - "newRelease": "2.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - } - ] - }, - "timedatex": { - "name": "timedatex", - "version": "0.5", - "release": "3.el8", - "newVersion": "0.5", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "trousers": { - "name": "trousers", - "version": "0.3.14", - "release": "4.el8", - "newVersion": "0.3.14", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "trousers-lib": { - "name": "trousers-lib", - "version": "0.3.14", - "release": "4.el8", - "newVersion": "0.3.14", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "tuned": { - "name": "tuned", - "version": "2.14.0", - "release": "3.el8", - "newVersion": "2.14.0", - "newRelease": "3.el8_3.2", - "arch": "noarch", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "tzdata": { - "name": "tzdata", - "version": "2020d", - "release": "1.el8", - "newVersion": "2021a", - "newRelease": "1.el8", - "arch": "noarch", - "repository": "rhel-8-baseos-rhui-rpms" - }, - "unbound-libs": { - "name": "unbound-libs", - "version": "1.7.3", - "release": "14.el8", - "newVersion": "1.7.3", - "newRelease": "14.el8", - "arch": "x86_64", - "repository": "" - }, - "usermode": { - "name": "usermode", - "version": "1.113", - "release": "1.el8", - "newVersion": "1.113", - "newRelease": "1.el8", - "arch": "x86_64", - "repository": "" - }, - "util-linux": { - "name": "util-linux", - "version": "2.32.1", - "release": "24.el8", - "newVersion": "2.32.1", - "newRelease": "24.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "1100", - "name": "agetty" - }, - { - "pid": "1102", - "name": "agetty" - } - ] - }, - "vim-minimal": { - "name": "vim-minimal", - "version": "2:8.0.1763", - "release": "15.el8", - "newVersion": "2:8.0.1763", - "newRelease": "15.el8", - "arch": "x86_64", - "repository": "" - }, - "virt-what": { - "name": "virt-what", - "version": "1.18", - "release": "6.el8", - "newVersion": "1.18", - "newRelease": "6.el8", - "arch": "x86_64", - "repository": "" - }, - "which": { - "name": "which", - "version": "2.21", - "release": "12.el8", - "newVersion": "2.21", - "newRelease": "12.el8", - "arch": "x86_64", - "repository": "" - }, - "xfsprogs": { - "name": "xfsprogs", - "version": "5.0.0", - "release": "4.el8", - "newVersion": "5.0.0", - "newRelease": "4.el8", - "arch": "x86_64", - "repository": "" - }, - "xkeyboard-config": { - "name": "xkeyboard-config", - "version": "2.28", - "release": "1.el8", - "newVersion": "2.28", - "newRelease": "1.el8", - "arch": "noarch", - "repository": "" - }, - "xz": { - "name": "xz", - "version": "5.2.4", - "release": "3.el8", - "newVersion": "5.2.4", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "" - }, - "xz-libs": { - "name": "xz-libs", - "version": "5.2.4", - "release": "3.el8", - "newVersion": "5.2.4", - "newRelease": "3.el8", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "742", - "name": "dbus-daemon" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - }, - "yum": { - "name": "yum", - "version": "4.2.23", - "release": "4.el8", - "newVersion": "4.2.23", - "newRelease": "4.el8", - "arch": "noarch", - "repository": "" - }, - "yum-utils": { - "name": "yum-utils", - "version": "4.0.17", - "release": "5.el8", - "newVersion": "4.0.17", - "newRelease": "5.el8", - "arch": "noarch", - "repository": "" - }, - "zlib": { - "name": "zlib", - "version": "1.2.11", - "release": "16.el8_2", - "newVersion": "1.2.11", - "newRelease": "16.el8_2", - "arch": "x86_64", - "repository": "", - "AffectedProcs": [ - { - "pid": "849", - "name": "NetworkManager" - }, - { - "pid": "4755", - "name": "(sd-pam)" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "4761", - "name": "sshd" - }, - { - "pid": "1324", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "853", - "name": "tuned" - }, - { - "pid": "1096", - "name": "rsyslogd" - }, - { - "pid": "4751", - "name": "systemd" - }, - { - "pid": "5017", - "name": "sshd" - }, - { - "pid": "739", - "name": "polkitd" - }, - { - "pid": "762", - "name": "rngd" - }, - { - "pid": "4747", - "name": "sshd" - }, - { - "pid": "671", - "name": "systemd-udevd" - }, - { - "pid": "759", - "name": "sssd_be" - }, - { - "pid": "593", - "name": "systemd-journal" - }, - { - "pid": "802", - "name": "systemd-logind" - }, - { - "pid": "646", - "name": "auditd" - }, - { - "pid": "691", - "name": "sssd" - }, - { - "pid": "5014", - "name": "sshd" - }, - { - "pid": "772", - "name": "sssd_nss" - } - ] - } - }, - "constant": { - "scan": { - "logDir": "/var/log/vuls", - "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", - "default": { - "port": "22", - "scanMode": [ - "fast" - ] - }, - "servers": { - "rhel8": { - "serverName": "rhel8", - "user": "ec2-user", - "host": "18.183.170.192", - "port": "22", - "keyPath": "/home/ubuntu/.ssh/stg.pem", - "scanMode": [ - "fast-root" - ], - "wordpress": {} - } - }, - "cveDict": { - "Name": "cveDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", - "DebugSQL": false - }, - "ovalDict": { - "Name": "ovalDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", - "DebugSQL": false - }, - "gost": { - "Name": "gost", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", - "DebugSQL": false - }, - "exploit": { - "Name": "exploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", - "DebugSQL": false - }, - "metasploit": { - "Name": "metasploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", - "DebugSQL": false - } - }, - "report": { - "default": {}, - "cveDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "ovalDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "gost": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "exploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "metasploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - } - } - } -} diff --git a/integration/data/ubuntu_1804.json b/integration/data/ubuntu_1804.json deleted file mode 100755 index ec0a2ef0..00000000 --- a/integration/data/ubuntu_1804.json +++ /dev/null @@ -1,8609 +0,0 @@ -{ - "jsonVersion": 4, - "lang": "", - "serverUUID": "", - "serverName": "ubuntu_1804", - "family": "ubuntu", - "release": "18.04", - "container": { - "containerID": "", - "name": "", - "image": "", - "type": "", - "uuid": "" - }, - "platform": { - "name": "aws", - "instanceID": "i-0c9b08532fe475f96" - }, - "ipv4Addrs": [ - "192.168.0.113" - ], - "scannedAt": "2021-03-24T17:07:29.483673036+09:00", - "scanMode": "fast-root mode", - "scannedVersion": "v0.15.9", - "scannedRevision": "build-20210324_121008_fc3b438", - "scannedBy": "dev", - "scannedVia": "remote", - "scannedIpv4Addrs": [ - "172.21.0.1", - "172.19.0.1", - "172.18.0.1", - "172.17.0.1", - "172.20.0.1" - ], - "reportedAt": "0001-01-01T00:00:00Z", - "reportedVersion": "", - "reportedRevision": "", - "reportedBy": "", - "errors": [], - "warnings": [], - "scannedCves": {}, - "runningKernel": { - "release": "5.4.0-1038-aws", - "version": "", - "rebootRequired": false - }, - "packages": { - "accountsservice": { - "name": "accountsservice", - "version": "0.6.45-1ubuntu1.3", - "release": "", - "newVersion": "0.6.45-1ubuntu1.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "995", - "name": "accounts-daemon" - } - ] - }, - "acl": { - "name": "acl", - "version": "2.2.52-3build1", - "release": "", - "newVersion": "2.2.52-3build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "acpid": { - "name": "acpid", - "version": "1:2.0.28-1ubuntu1", - "release": "", - "newVersion": "1:2.0.28-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1005", - "name": "acpid" - } - ] - }, - "adduser": { - "name": "adduser", - "version": "3.116ubuntu1", - "release": "", - "newVersion": "3.116ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apparmor": { - "name": "apparmor", - "version": "2.12-4ubuntu5.1", - "release": "", - "newVersion": "2.12-4ubuntu5.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apport": { - "name": "apport", - "version": "2.20.9-0ubuntu7.23", - "release": "", - "newVersion": "2.20.9-0ubuntu7.23", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apport-symptoms": { - "name": "apport-symptoms", - "version": "0.20", - "release": "", - "newVersion": "0.20", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apt": { - "name": "apt", - "version": "1.6.12ubuntu0.2", - "release": "", - "newVersion": "1.6.12ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apt-utils": { - "name": "apt-utils", - "version": "1.6.12ubuntu0.2", - "release": "", - "newVersion": "1.6.12ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "at": { - "name": "at", - "version": "3.1.20-3.1ubuntu2", - "release": "", - "newVersion": "3.1.20-3.1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1002", - "name": "atd" - } - ] - }, - "base-files": { - "name": "base-files", - "version": "10.1ubuntu2.10", - "release": "", - "newVersion": "10.1ubuntu2.10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "base-passwd": { - "name": "base-passwd", - "version": "3.5.44", - "release": "", - "newVersion": "3.5.44", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bash": { - "name": "bash", - "version": "4.4.18-2ubuntu1.2", - "release": "", - "newVersion": "4.4.18-2ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2067", - "name": "bash" - }, - { - "pid": "2965", - "name": "bash" - } - ] - }, - "bash-completion": { - "name": "bash-completion", - "version": "1:2.8-1ubuntu1", - "release": "", - "newVersion": "1:2.8-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bc": { - "name": "bc", - "version": "1.07.1-2", - "release": "", - "newVersion": "1.07.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bcache-tools": { - "name": "bcache-tools", - "version": "1.0.8-2ubuntu0.18.04.1", - "release": "", - "newVersion": "1.0.8-2ubuntu0.18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bind9-host": { - "name": "bind9-host", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "release": "", - "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bsdmainutils": { - "name": "bsdmainutils", - "version": "11.1.2ubuntu1", - "release": "", - "newVersion": "11.1.2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bsdutils": { - "name": "bsdutils", - "version": "1:2.31.1-0.4ubuntu3.7", - "release": "", - "newVersion": "1:2.31.1-0.4ubuntu3.7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "btrfs-progs": { - "name": "btrfs-progs", - "version": "4.15.1-1build1", - "release": "", - "newVersion": "4.15.1-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "btrfs-tools": { - "name": "btrfs-tools", - "version": "4.15.1-1build1", - "release": "", - "newVersion": "4.15.1-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "busybox-initramfs": { - "name": "busybox-initramfs", - "version": "1:1.27.2-2ubuntu3.3", - "release": "", - "newVersion": "1:1.27.2-2ubuntu3.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "busybox-static": { - "name": "busybox-static", - "version": "1:1.27.2-2ubuntu3.3", - "release": "", - "newVersion": "1:1.27.2-2ubuntu3.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "byobu": { - "name": "byobu", - "version": "5.125-0ubuntu1", - "release": "", - "newVersion": "5.125-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bzip2": { - "name": "bzip2", - "version": "1.0.6-8.1ubuntu0.2", - "release": "", - "newVersion": "1.0.6-8.1ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ca-certificates": { - "name": "ca-certificates", - "version": "20210119~18.04.1", - "release": "", - "newVersion": "20210119~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-guest-utils": { - "name": "cloud-guest-utils", - "version": "0.30-0ubuntu5", - "release": "", - "newVersion": "0.30-0ubuntu5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-init": { - "name": "cloud-init", - "version": "20.4.1-0ubuntu1~18.04.1", - "release": "", - "newVersion": "20.4.1-0ubuntu1~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-initramfs-copymods": { - "name": "cloud-initramfs-copymods", - "version": "0.40ubuntu1.1", - "release": "", - "newVersion": "0.40ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-initramfs-dyn-netconf": { - "name": "cloud-initramfs-dyn-netconf", - "version": "0.40ubuntu1.1", - "release": "", - "newVersion": "0.40ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "command-not-found": { - "name": "command-not-found", - "version": "18.04.5", - "release": "", - "newVersion": "18.04.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "command-not-found-data": { - "name": "command-not-found-data", - "version": "18.04.5", - "release": "", - "newVersion": "18.04.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "console-setup": { - "name": "console-setup", - "version": "1.178ubuntu2.9", - "release": "", - "newVersion": "1.178ubuntu2.9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "console-setup-linux": { - "name": "console-setup-linux", - "version": "1.178ubuntu2.9", - "release": "", - "newVersion": "1.178ubuntu2.9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "coreutils": { - "name": "coreutils", - "version": "8.28-1ubuntu1", - "release": "", - "newVersion": "8.28-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cpio": { - "name": "cpio", - "version": "2.12+dfsg-6ubuntu0.18.04.1", - "release": "", - "newVersion": "2.12+dfsg-6ubuntu0.18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cron": { - "name": "cron", - "version": "3.0pl1-128.1ubuntu1", - "release": "", - "newVersion": "3.0pl1-128.1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "970", - "name": "cron" - } - ] - }, - "cryptsetup": { - "name": "cryptsetup", - "version": "2:2.0.2-1ubuntu1.2", - "release": "", - "newVersion": "2:2.0.2-1ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cryptsetup-bin": { - "name": "cryptsetup-bin", - "version": "2:2.0.2-1ubuntu1.2", - "release": "", - "newVersion": "2:2.0.2-1ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "curl": { - "name": "curl", - "version": "7.58.0-2ubuntu3.12", - "release": "", - "newVersion": "7.58.0-2ubuntu3.12", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dash": { - "name": "dash", - "version": "0.5.8-2.10", - "release": "", - "newVersion": "0.5.8-2.10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dbus": { - "name": "dbus", - "version": "1.12.2-1ubuntu1.2", - "release": "", - "newVersion": "1.12.2-1ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "980", - "name": "dbus-daemon" - } - ] - }, - "dctrl-tools": { - "name": "dctrl-tools", - "version": "2.24-2build1", - "release": "", - "newVersion": "2.24-2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debconf": { - "name": "debconf", - "version": "1.5.66ubuntu1", - "release": "", - "newVersion": "1.5.66ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debconf-i18n": { - "name": "debconf-i18n", - "version": "1.5.66ubuntu1", - "release": "", - "newVersion": "1.5.66ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debian-goodies": { - "name": "debian-goodies", - "version": "0.79", - "release": "", - "newVersion": "0.79", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debianutils": { - "name": "debianutils", - "version": "4.8.4", - "release": "", - "newVersion": "4.8.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "diffutils": { - "name": "diffutils", - "version": "1:3.6-1", - "release": "", - "newVersion": "1:3.6-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dirmngr": { - "name": "dirmngr", - "version": "2.2.4-1ubuntu1.4", - "release": "", - "newVersion": "2.2.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "distro-info-data": { - "name": "distro-info-data", - "version": "0.37ubuntu0.9", - "release": "", - "newVersion": "0.37ubuntu0.9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dmeventd": { - "name": "dmeventd", - "version": "2:1.02.145-4.1ubuntu3.18.04.3", - "release": "", - "newVersion": "2:1.02.145-4.1ubuntu3.18.04.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dmidecode": { - "name": "dmidecode", - "version": "3.1-1ubuntu0.1", - "release": "", - "newVersion": "3.1-1ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dmsetup": { - "name": "dmsetup", - "version": "2:1.02.145-4.1ubuntu3.18.04.3", - "release": "", - "newVersion": "2:1.02.145-4.1ubuntu3.18.04.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dns-root-data": { - "name": "dns-root-data", - "version": "2018013001", - "release": "", - "newVersion": "2018013001", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dnsmasq-base": { - "name": "dnsmasq-base", - "version": "2.79-1ubuntu0.3", - "release": "", - "newVersion": "2.79-1ubuntu0.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dnsutils": { - "name": "dnsutils", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "release": "", - "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dosfstools": { - "name": "dosfstools", - "version": "4.1-1", - "release": "", - "newVersion": "4.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dpkg": { - "name": "dpkg", - "version": "1.19.0.5ubuntu2.3", - "release": "", - "newVersion": "1.19.0.5ubuntu2.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "e2fsprogs": { - "name": "e2fsprogs", - "version": "1.44.1-1ubuntu1.3", - "release": "", - "newVersion": "1.44.1-1ubuntu1.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "eatmydata": { - "name": "eatmydata", - "version": "105-6", - "release": "", - "newVersion": "105-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ebtables": { - "name": "ebtables", - "version": "2.0.10.4-3.5ubuntu2.18.04.3", - "release": "", - "newVersion": "2.0.10.4-3.5ubuntu2.18.04.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ec2-hibinit-agent": { - "name": "ec2-hibinit-agent", - "version": "1.0.0-0ubuntu4~18.04.5", - "release": "", - "newVersion": "1.0.0-0ubuntu4~18.04.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ed": { - "name": "ed", - "version": "1.10-2.1", - "release": "", - "newVersion": "1.10-2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "eject": { - "name": "eject", - "version": "2.1.5+deb1+cvs20081104-13.2", - "release": "", - "newVersion": "2.1.5+deb1+cvs20081104-13.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "elfutils": { - "name": "elfutils", - "version": "0.170-0.4ubuntu0.1", - "release": "", - "newVersion": "0.170-0.4ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ethtool": { - "name": "ethtool", - "version": "1:4.15-0ubuntu1", - "release": "", - "newVersion": "1:4.15-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "fdisk": { - "name": "fdisk", - "version": "2.31.1-0.4ubuntu3.7", - "release": "", - "newVersion": "2.31.1-0.4ubuntu3.7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "file": { - "name": "file", - "version": "1:5.32-2ubuntu0.4", - "release": "", - "newVersion": "1:5.32-2ubuntu0.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "findutils": { - "name": "findutils", - "version": "4.6.0+git+20170828-2", - "release": "", - "newVersion": "4.6.0+git+20170828-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "fonts-ubuntu-console": { - "name": "fonts-ubuntu-console", - "version": "0.83-2", - "release": "", - "newVersion": "0.83-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "friendly-recovery": { - "name": "friendly-recovery", - "version": "0.2.38ubuntu1.2", - "release": "", - "newVersion": "0.2.38ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ftp": { - "name": "ftp", - "version": "0.17-34", - "release": "", - "newVersion": "0.17-34", - "newRelease": "", - "arch": "", - "repository": "" - }, - "fuse": { - "name": "fuse", - "version": "2.9.7-1ubuntu1", - "release": "", - "newVersion": "2.9.7-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gawk": { - "name": "gawk", - "version": "1:4.1.4+dfsg-1build1", - "release": "", - "newVersion": "1:4.1.4+dfsg-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gcc-8-base": { - "name": "gcc-8-base", - "version": "8.4.0-1ubuntu1~18.04", - "release": "", - "newVersion": "8.4.0-1ubuntu1~18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gdisk": { - "name": "gdisk", - "version": "1.0.3-1", - "release": "", - "newVersion": "1.0.3-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "geoip-database": { - "name": "geoip-database", - "version": "20180315-1", - "release": "", - "newVersion": "20180315-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gettext-base": { - "name": "gettext-base", - "version": "0.19.8.1-6ubuntu0.3", - "release": "", - "newVersion": "0.19.8.1-6ubuntu0.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gir1.2-glib-2.0": { - "name": "gir1.2-glib-2.0", - "version": "1.56.1-1", - "release": "", - "newVersion": "1.56.1-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "git": { - "name": "git", - "version": "1:2.17.1-1ubuntu0.7", - "release": "", - "newVersion": "1:2.17.1-1ubuntu0.8", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "git-man": { - "name": "git-man", - "version": "1:2.17.1-1ubuntu0.7", - "release": "", - "newVersion": "1:2.17.1-1ubuntu0.8", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "gnupg": { - "name": "gnupg", - "version": "2.2.4-1ubuntu1.4", - "release": "", - "newVersion": "2.2.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gnupg-l10n": { - "name": "gnupg-l10n", - "version": "2.2.4-1ubuntu1.4", - "release": "", - "newVersion": "2.2.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gnupg-utils": { - "name": "gnupg-utils", - "version": "2.2.4-1ubuntu1.4", - "release": "", - "newVersion": "2.2.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg": { - "name": "gpg", - "version": "2.2.4-1ubuntu1.4", - "release": "", - "newVersion": "2.2.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg-agent": { - "name": "gpg-agent", - "version": "2.2.4-1ubuntu1.4", - "release": "", - "newVersion": "2.2.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg-wks-client": { - "name": "gpg-wks-client", - "version": "2.2.4-1ubuntu1.4", - "release": "", - "newVersion": "2.2.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg-wks-server": { - "name": "gpg-wks-server", - "version": "2.2.4-1ubuntu1.4", - "release": "", - "newVersion": "2.2.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpgconf": { - "name": "gpgconf", - "version": "2.2.4-1ubuntu1.4", - "release": "", - "newVersion": "2.2.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpgsm": { - "name": "gpgsm", - "version": "2.2.4-1ubuntu1.4", - "release": "", - "newVersion": "2.2.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpgv": { - "name": "gpgv", - "version": "2.2.4-1ubuntu1.4", - "release": "", - "newVersion": "2.2.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grep": { - "name": "grep", - "version": "3.1-2build1", - "release": "", - "newVersion": "3.1-2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "groff-base": { - "name": "groff-base", - "version": "1.22.3-10", - "release": "", - "newVersion": "1.22.3-10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub-common": { - "name": "grub-common", - "version": "2.02-2ubuntu8.21", - "release": "", - "newVersion": "2.02-2ubuntu8.21", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub-gfxpayload-lists": { - "name": "grub-gfxpayload-lists", - "version": "0.7", - "release": "", - "newVersion": "0.7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub-pc": { - "name": "grub-pc", - "version": "2.02-2ubuntu8.21", - "release": "", - "newVersion": "2.02-2ubuntu8.21", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub-pc-bin": { - "name": "grub-pc-bin", - "version": "2.02-2ubuntu8.21", - "release": "", - "newVersion": "2.02-2ubuntu8.21", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub2-common": { - "name": "grub2-common", - "version": "2.02-2ubuntu8.21", - "release": "", - "newVersion": "2.02-2ubuntu8.21", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gzip": { - "name": "gzip", - "version": "1.6-5ubuntu1", - "release": "", - "newVersion": "1.6-5ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "hdparm": { - "name": "hdparm", - "version": "9.54+ds-1", - "release": "", - "newVersion": "9.54+ds-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "hibagent": { - "name": "hibagent", - "version": "1.0.1-0ubuntu1", - "release": "", - "newVersion": "1.0.1-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "hostname": { - "name": "hostname", - "version": "3.20", - "release": "", - "newVersion": "3.20", - "newRelease": "", - "arch": "", - "repository": "" - }, - "htop": { - "name": "htop", - "version": "2.1.0-3", - "release": "", - "newVersion": "2.1.0-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "info": { - "name": "info", - "version": "6.5.0.dfsg.1-2", - "release": "", - "newVersion": "6.5.0.dfsg.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "init": { - "name": "init", - "version": "1.51", - "release": "", - "newVersion": "1.51", - "newRelease": "", - "arch": "", - "repository": "" - }, - "init-system-helpers": { - "name": "init-system-helpers", - "version": "1.51", - "release": "", - "newVersion": "1.51", - "newRelease": "", - "arch": "", - "repository": "" - }, - "initramfs-tools": { - "name": "initramfs-tools", - "version": "0.130ubuntu3.11", - "release": "", - "newVersion": "0.130ubuntu3.11", - "newRelease": "", - "arch": "", - "repository": "" - }, - "initramfs-tools-bin": { - "name": "initramfs-tools-bin", - "version": "0.130ubuntu3.11", - "release": "", - "newVersion": "0.130ubuntu3.11", - "newRelease": "", - "arch": "", - "repository": "" - }, - "initramfs-tools-core": { - "name": "initramfs-tools-core", - "version": "0.130ubuntu3.11", - "release": "", - "newVersion": "0.130ubuntu3.11", - "newRelease": "", - "arch": "", - "repository": "" - }, - "install-info": { - "name": "install-info", - "version": "6.5.0.dfsg.1-2", - "release": "", - "newVersion": "6.5.0.dfsg.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iproute2": { - "name": "iproute2", - "version": "4.15.0-2ubuntu1.2", - "release": "", - "newVersion": "4.15.0-2ubuntu1.3", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "iptables": { - "name": "iptables", - "version": "1.6.1-2ubuntu2", - "release": "", - "newVersion": "1.6.1-2ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iputils-ping": { - "name": "iputils-ping", - "version": "3:20161105-1ubuntu3", - "release": "", - "newVersion": "3:20161105-1ubuntu3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iputils-tracepath": { - "name": "iputils-tracepath", - "version": "3:20161105-1ubuntu3", - "release": "", - "newVersion": "3:20161105-1ubuntu3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "irqbalance": { - "name": "irqbalance", - "version": "1.3.0-0.1ubuntu0.18.04.1", - "release": "", - "newVersion": "1.3.0-0.1ubuntu0.18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "isc-dhcp-client": { - "name": "isc-dhcp-client", - "version": "4.3.5-3ubuntu7.1", - "release": "", - "newVersion": "4.3.5-3ubuntu7.2", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "isc-dhcp-common": { - "name": "isc-dhcp-common", - "version": "4.3.5-3ubuntu7.1", - "release": "", - "newVersion": "4.3.5-3ubuntu7.2", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "iso-codes": { - "name": "iso-codes", - "version": "3.79-1", - "release": "", - "newVersion": "3.79-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "kbd": { - "name": "kbd", - "version": "2.0.4-2ubuntu1", - "release": "", - "newVersion": "2.0.4-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "keyboard-configuration": { - "name": "keyboard-configuration", - "version": "1.178ubuntu2.9", - "release": "", - "newVersion": "1.178ubuntu2.9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "klibc-utils": { - "name": "klibc-utils", - "version": "2.0.4-9ubuntu2", - "release": "", - "newVersion": "2.0.4-9ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "kmod": { - "name": "kmod", - "version": "24-1ubuntu3.5", - "release": "", - "newVersion": "24-1ubuntu3.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "krb5-locales": { - "name": "krb5-locales", - "version": "1.16-2ubuntu0.2", - "release": "", - "newVersion": "1.16-2ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "landscape-common": { - "name": "landscape-common", - "version": "18.01-0ubuntu3.5", - "release": "", - "newVersion": "18.01-0ubuntu3.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "language-selector-common": { - "name": "language-selector-common", - "version": "0.188.3", - "release": "", - "newVersion": "0.188.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "less": { - "name": "less", - "version": "487-0.1", - "release": "", - "newVersion": "487-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libaccountsservice0": { - "name": "libaccountsservice0", - "version": "0.6.45-1ubuntu1.3", - "release": "", - "newVersion": "0.6.45-1ubuntu1.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libacl1": { - "name": "libacl1", - "version": "2.2.52-3build1", - "release": "", - "newVersion": "2.2.52-3build1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "457", - "name": "systemd-udevd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "libapparmor1": { - "name": "libapparmor1", - "version": "2.12-4ubuntu5.1", - "release": "", - "newVersion": "2.12-4ubuntu5.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "1942", - "name": "systemd" - } - ] - }, - "libapt-inst2.0": { - "name": "libapt-inst2.0", - "version": "1.6.12ubuntu0.2", - "release": "", - "newVersion": "1.6.12ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libapt-pkg5.0": { - "name": "libapt-pkg5.0", - "version": "1.6.12ubuntu0.2", - "release": "", - "newVersion": "1.6.12ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "libargon2-0": { - "name": "libargon2-0", - "version": "0~20161029-1.1", - "release": "", - "newVersion": "0~20161029-1.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "libasm1": { - "name": "libasm1", - "version": "0.170-0.4ubuntu0.1", - "release": "", - "newVersion": "0.170-0.4ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libasn1-8-heimdal": { - "name": "libasn1-8-heimdal", - "version": "7.5.0+dfsg-1", - "release": "", - "newVersion": "7.5.0+dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libassuan0": { - "name": "libassuan0", - "version": "2.5.1-2", - "release": "", - "newVersion": "2.5.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libatm1": { - "name": "libatm1", - "version": "1:2.5.1-2build1", - "release": "", - "newVersion": "1:2.5.1-2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libattr1": { - "name": "libattr1", - "version": "1:2.4.47-2build1", - "release": "", - "newVersion": "1:2.4.47-2build1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "457", - "name": "systemd-udevd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "libaudit-common": { - "name": "libaudit-common", - "version": "1:2.8.2-1ubuntu1.1", - "release": "", - "newVersion": "1:2.8.2-1ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libaudit1": { - "name": "libaudit1", - "version": "1:2.8.2-1ubuntu1.1", - "release": "", - "newVersion": "1:2.8.2-1ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1002", - "name": "atd" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2963", - "name": "sudo" - }, - { - "pid": "970", - "name": "cron" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "2964", - "name": "su" - } - ] - }, - "libbind9-160": { - "name": "libbind9-160", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "release": "", - "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libblkid1": { - "name": "libblkid1", - "version": "2.31.1-0.4ubuntu3.7", - "release": "", - "newVersion": "2.31.1-0.4ubuntu3.7", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "457", - "name": "systemd-udevd" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "libbsd0": { - "name": "libbsd0", - "version": "0.8.7-1ubuntu0.1", - "release": "", - "newVersion": "0.8.7-1ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libbz2-1.0": { - "name": "libbz2-1.0", - "version": "1.0.6-8.1ubuntu0.2", - "release": "", - "newVersion": "1.0.6-8.1ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "libc-bin": { - "name": "libc-bin", - "version": "2.27-3ubuntu1.4", - "release": "", - "newVersion": "2.27-3ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1027", - "name": "agetty" - }, - { - "pid": "1038", - "name": "agetty" - }, - { - "pid": "970", - "name": "cron" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "2965", - "name": "bash" - } - ] - }, - "libc6": { - "name": "libc6", - "version": "2.27-3ubuntu1.4", - "release": "", - "newVersion": "2.27-3ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1002", - "name": "atd" - }, - { - "pid": "1027", - "name": "agetty" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "997", - "name": "lxcfs" - }, - { - "pid": "2067", - "name": "bash" - }, - { - "pid": "1728", - "name": "ssm-agent-worke" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1038", - "name": "agetty" - }, - { - "pid": "2963", - "name": "sudo" - }, - { - "pid": "441", - "name": "lvmetad" - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "970", - "name": "cron" - }, - { - "pid": "1005", - "name": "acpid" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "1382", - "name": "snapd" - }, - { - "pid": "457", - "name": "systemd-udevd" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "2964", - "name": "su" - }, - { - "pid": "1693", - "name": "amazon-ssm-agen" - }, - { - "pid": "2965", - "name": "bash" - }, - { - "pid": "957", - "name": "rsyslogd" - } - ] - }, - "libcap-ng0": { - "name": "libcap-ng0", - "version": "0.7.7-3.1", - "release": "", - "newVersion": "0.7.7-3.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1002", - "name": "atd" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2963", - "name": "sudo" - }, - { - "pid": "970", - "name": "cron" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "2964", - "name": "su" - } - ] - }, - "libcap2": { - "name": "libcap2", - "version": "1:2.25-1.2", - "release": "", - "newVersion": "1:2.25-1.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "2963", - "name": "sudo" - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "2964", - "name": "su" - } - ] - }, - "libcap2-bin": { - "name": "libcap2-bin", - "version": "1:2.25-1.2", - "release": "", - "newVersion": "1:2.25-1.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcom-err2": { - "name": "libcom-err2", - "version": "1.44.1-1ubuntu1.3", - "release": "", - "newVersion": "1.44.1-1ubuntu1.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - } - ] - }, - "libcryptsetup12": { - "name": "libcryptsetup12", - "version": "2:2.0.2-1ubuntu1.2", - "release": "", - "newVersion": "2:2.0.2-1ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "libcurl3-gnutls": { - "name": "libcurl3-gnutls", - "version": "7.58.0-2ubuntu3.12", - "release": "", - "newVersion": "7.58.0-2ubuntu3.12", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcurl4": { - "name": "libcurl4", - "version": "7.58.0-2ubuntu3.12", - "release": "", - "newVersion": "7.58.0-2ubuntu3.12", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdb5.3": { - "name": "libdb5.3", - "version": "5.3.28-13.1ubuntu1.1", - "release": "", - "newVersion": "5.3.28-13.1ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdbus-1-3": { - "name": "libdbus-1-3", - "version": "1.12.2-1ubuntu1.2", - "release": "", - "newVersion": "1.12.2-1ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "libdebconfclient0": { - "name": "libdebconfclient0", - "version": "0.213ubuntu1", - "release": "", - "newVersion": "0.213ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdevmapper-event1.02.1": { - "name": "libdevmapper-event1.02.1", - "version": "2:1.02.145-4.1ubuntu3.18.04.3", - "release": "", - "newVersion": "2:1.02.145-4.1ubuntu3.18.04.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdevmapper1.02.1": { - "name": "libdevmapper1.02.1", - "version": "2:1.02.145-4.1ubuntu3.18.04.3", - "release": "", - "newVersion": "2:1.02.145-4.1ubuntu3.18.04.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "441", - "name": "lvmetad" - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "libdns-export1100": { - "name": "libdns-export1100", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "release": "", - "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdns1100": { - "name": "libdns1100", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "release": "", - "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdrm-common": { - "name": "libdrm-common", - "version": "2.4.101-2~18.04.1", - "release": "", - "newVersion": "2.4.101-2~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdrm2": { - "name": "libdrm2", - "version": "2.4.101-2~18.04.1", - "release": "", - "newVersion": "2.4.101-2~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdumbnet1": { - "name": "libdumbnet1", - "version": "1.12-7build1", - "release": "", - "newVersion": "1.12-7build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdw1": { - "name": "libdw1", - "version": "0.170-0.4ubuntu0.1", - "release": "", - "newVersion": "0.170-0.4ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libeatmydata1": { - "name": "libeatmydata1", - "version": "105-6", - "release": "", - "newVersion": "105-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libedit2": { - "name": "libedit2", - "version": "3.1-20170329-1", - "release": "", - "newVersion": "3.1-20170329-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libelf1": { - "name": "libelf1", - "version": "0.170-0.4ubuntu0.1", - "release": "", - "newVersion": "0.170-0.4ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liberror-perl": { - "name": "liberror-perl", - "version": "0.17025-1", - "release": "", - "newVersion": "0.17025-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libestr0": { - "name": "libestr0", - "version": "0.1.10-2.1", - "release": "", - "newVersion": "0.1.10-2.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "957", - "name": "rsyslogd" - } - ] - }, - "libevent-2.1-6": { - "name": "libevent-2.1-6", - "version": "2.1.8-stable-4build1", - "release": "", - "newVersion": "2.1.8-stable-4build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libexpat1": { - "name": "libexpat1", - "version": "2.2.5-3ubuntu0.2", - "release": "", - "newVersion": "2.2.5-3ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "libext2fs2": { - "name": "libext2fs2", - "version": "1.44.1-1ubuntu1.3", - "release": "", - "newVersion": "1.44.1-1ubuntu1.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfastjson4": { - "name": "libfastjson4", - "version": "0.99.8-2", - "release": "", - "newVersion": "0.99.8-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "957", - "name": "rsyslogd" - } - ] - }, - "libfdisk1": { - "name": "libfdisk1", - "version": "2.31.1-0.4ubuntu3.7", - "release": "", - "newVersion": "2.31.1-0.4ubuntu3.7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libffi6": { - "name": "libffi6", - "version": "3.2.1-8", - "release": "", - "newVersion": "3.2.1-8", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "995", - "name": "accounts-daemon" - } - ] - }, - "libfreetype6": { - "name": "libfreetype6", - "version": "2.8.1-2ubuntu2.1", - "release": "", - "newVersion": "2.8.1-2ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfribidi0": { - "name": "libfribidi0", - "version": "0.19.7-2", - "release": "", - "newVersion": "0.19.7-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfuse2": { - "name": "libfuse2", - "version": "2.9.7-1ubuntu1", - "release": "", - "newVersion": "2.9.7-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "997", - "name": "lxcfs" - } - ] - }, - "libgcc1": { - "name": "libgcc1", - "version": "1:8.4.0-1ubuntu1~18.04", - "release": "", - "newVersion": "1:8.4.0-1ubuntu1~18.04", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "libgcrypt20": { - "name": "libgcrypt20", - "version": "1.8.1-4ubuntu1.2", - "release": "", - "newVersion": "1.8.1-4ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "957", - "name": "rsyslogd" - } - ] - }, - "libgdbm-compat4": { - "name": "libgdbm-compat4", - "version": "1.14.1-6", - "release": "", - "newVersion": "1.14.1-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgdbm5": { - "name": "libgdbm5", - "version": "1.14.1-6", - "release": "", - "newVersion": "1.14.1-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgeoip1": { - "name": "libgeoip1", - "version": "1.6.12-1", - "release": "", - "newVersion": "1.6.12-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgirepository-1.0-1": { - "name": "libgirepository-1.0-1", - "version": "1.56.1-1", - "release": "", - "newVersion": "1.56.1-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "libglib2.0-0": { - "name": "libglib2.0-0", - "version": "2.56.4-0ubuntu0.18.04.6", - "release": "", - "newVersion": "2.56.4-0ubuntu0.18.04.8", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "995", - "name": "accounts-daemon" - } - ] - }, - "libglib2.0-data": { - "name": "libglib2.0-data", - "version": "2.56.4-0ubuntu0.18.04.6", - "release": "", - "newVersion": "2.56.4-0ubuntu0.18.04.8", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "libgmp10": { - "name": "libgmp10", - "version": "2:6.1.2+dfsg-2", - "release": "", - "newVersion": "2:6.1.2+dfsg-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgnutls30": { - "name": "libgnutls30", - "version": "3.5.18-1ubuntu1.4", - "release": "", - "newVersion": "3.5.18-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgpg-error0": { - "name": "libgpg-error0", - "version": "1.27-6", - "release": "", - "newVersion": "1.27-6", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "957", - "name": "rsyslogd" - } - ] - }, - "libgpm2": { - "name": "libgpm2", - "version": "1.20.7-5", - "release": "", - "newVersion": "1.20.7-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgssapi-krb5-2": { - "name": "libgssapi-krb5-2", - "version": "1.16-2ubuntu0.2", - "release": "", - "newVersion": "1.16-2ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - } - ] - }, - "libgssapi3-heimdal": { - "name": "libgssapi3-heimdal", - "version": "7.5.0+dfsg-1", - "release": "", - "newVersion": "7.5.0+dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libhcrypto4-heimdal": { - "name": "libhcrypto4-heimdal", - "version": "7.5.0+dfsg-1", - "release": "", - "newVersion": "7.5.0+dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libheimbase1-heimdal": { - "name": "libheimbase1-heimdal", - "version": "7.5.0+dfsg-1", - "release": "", - "newVersion": "7.5.0+dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libheimntlm0-heimdal": { - "name": "libheimntlm0-heimdal", - "version": "7.5.0+dfsg-1", - "release": "", - "newVersion": "7.5.0+dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libhogweed4": { - "name": "libhogweed4", - "version": "3.4-1", - "release": "", - "newVersion": "3.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libhx509-5-heimdal": { - "name": "libhx509-5-heimdal", - "version": "7.5.0+dfsg-1", - "release": "", - "newVersion": "7.5.0+dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libicu60": { - "name": "libicu60", - "version": "60.2-3ubuntu3.1", - "release": "", - "newVersion": "60.2-3ubuntu3.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libidn11": { - "name": "libidn11", - "version": "1.33-2.1ubuntu1.2", - "release": "", - "newVersion": "1.33-2.1ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "libidn2-0": { - "name": "libidn2-0", - "version": "2.0.4-1.1ubuntu0.2", - "release": "", - "newVersion": "2.0.4-1.1ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libip4tc0": { - "name": "libip4tc0", - "version": "1.6.1-2ubuntu2", - "release": "", - "newVersion": "1.6.1-2ubuntu2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "libip6tc0": { - "name": "libip6tc0", - "version": "1.6.1-2ubuntu2", - "release": "", - "newVersion": "1.6.1-2ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libipc-system-simple-perl": { - "name": "libipc-system-simple-perl", - "version": "1.25-4", - "release": "", - "newVersion": "1.25-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libiptc0": { - "name": "libiptc0", - "version": "1.6.1-2ubuntu2", - "release": "", - "newVersion": "1.6.1-2ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libirs160": { - "name": "libirs160", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "release": "", - "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libisc-export169": { - "name": "libisc-export169", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "release": "", - "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libisc169": { - "name": "libisc169", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "release": "", - "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libisccc160": { - "name": "libisccc160", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "release": "", - "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libisccfg160": { - "name": "libisccfg160", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "release": "", - "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libisns0": { - "name": "libisns0", - "version": "0.97-2build1", - "release": "", - "newVersion": "0.97-2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libjson-c3": { - "name": "libjson-c3", - "version": "0.12.1-1.3ubuntu0.3", - "release": "", - "newVersion": "0.12.1-1.3ubuntu0.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "libk5crypto3": { - "name": "libk5crypto3", - "version": "1.16-2ubuntu0.2", - "release": "", - "newVersion": "1.16-2ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - } - ] - }, - "libkeyutils1": { - "name": "libkeyutils1", - "version": "1.5.9-9.2ubuntu2", - "release": "", - "newVersion": "1.5.9-9.2ubuntu2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - } - ] - }, - "libklibc": { - "name": "libklibc", - "version": "2.0.4-9ubuntu2", - "release": "", - "newVersion": "2.0.4-9ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libkmod2": { - "name": "libkmod2", - "version": "24-1ubuntu3.5", - "release": "", - "newVersion": "24-1ubuntu3.5", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "457", - "name": "systemd-udevd" - }, - { - "pid": "1942", - "name": "systemd" - } - ] - }, - "libkrb5-26-heimdal": { - "name": "libkrb5-26-heimdal", - "version": "7.5.0+dfsg-1", - "release": "", - "newVersion": "7.5.0+dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libkrb5-3": { - "name": "libkrb5-3", - "version": "1.16-2ubuntu0.2", - "release": "", - "newVersion": "1.16-2ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - } - ] - }, - "libkrb5support0": { - "name": "libkrb5support0", - "version": "1.16-2ubuntu0.2", - "release": "", - "newVersion": "1.16-2ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - } - ] - }, - "libksba8": { - "name": "libksba8", - "version": "1.3.5-2", - "release": "", - "newVersion": "1.3.5-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libldap-2.4-2": { - "name": "libldap-2.4-2", - "version": "2.4.45+dfsg-1ubuntu1.10", - "release": "", - "newVersion": "2.4.45+dfsg-1ubuntu1.10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libldap-common": { - "name": "libldap-common", - "version": "2.4.45+dfsg-1ubuntu1.10", - "release": "", - "newVersion": "2.4.45+dfsg-1ubuntu1.10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblocale-gettext-perl": { - "name": "liblocale-gettext-perl", - "version": "1.07-3build2", - "release": "", - "newVersion": "1.07-3build2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblvm2app2.2": { - "name": "liblvm2app2.2", - "version": "2.02.176-4.1ubuntu3.18.04.3", - "release": "", - "newVersion": "2.02.176-4.1ubuntu3.18.04.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblvm2cmd2.02": { - "name": "liblvm2cmd2.02", - "version": "2.02.176-4.1ubuntu3.18.04.3", - "release": "", - "newVersion": "2.02.176-4.1ubuntu3.18.04.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblwres160": { - "name": "liblwres160", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "release": "", - "newVersion": "1:9.11.3+dfsg-1ubuntu1.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblxc-common": { - "name": "liblxc-common", - "version": "3.0.3-0ubuntu1~18.04.1", - "release": "", - "newVersion": "3.0.3-0ubuntu1~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblxc1": { - "name": "liblxc1", - "version": "3.0.3-0ubuntu1~18.04.1", - "release": "", - "newVersion": "3.0.3-0ubuntu1~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblz4-1": { - "name": "liblz4-1", - "version": "0.0~r131-2ubuntu3", - "release": "", - "newVersion": "0.0~r131-2ubuntu3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "957", - "name": "rsyslogd" - } - ] - }, - "liblzma5": { - "name": "liblzma5", - "version": "5.2.2-1.3", - "release": "", - "newVersion": "5.2.2-1.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "957", - "name": "rsyslogd" - } - ] - }, - "liblzo2-2": { - "name": "liblzo2-2", - "version": "2.08-1.2", - "release": "", - "newVersion": "2.08-1.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmagic-mgc": { - "name": "libmagic-mgc", - "version": "1:5.32-2ubuntu0.4", - "release": "", - "newVersion": "1:5.32-2ubuntu0.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmagic1": { - "name": "libmagic1", - "version": "1:5.32-2ubuntu0.4", - "release": "", - "newVersion": "1:5.32-2ubuntu0.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmnl0": { - "name": "libmnl0", - "version": "1.0.4-2", - "release": "", - "newVersion": "1.0.4-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmount1": { - "name": "libmount1", - "version": "2.31.1-0.4ubuntu3.7", - "release": "", - "newVersion": "2.31.1-0.4ubuntu3.7", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "995", - "name": "accounts-daemon" - } - ] - }, - "libmpdec2": { - "name": "libmpdec2", - "version": "2.4.2-1ubuntu1", - "release": "", - "newVersion": "2.4.2-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmpfr6": { - "name": "libmpfr6", - "version": "4.0.1-1", - "release": "", - "newVersion": "4.0.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmspack0": { - "name": "libmspack0", - "version": "0.6-3ubuntu0.3", - "release": "", - "newVersion": "0.6-3ubuntu0.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libncurses5": { - "name": "libncurses5", - "version": "6.1-1ubuntu1.18.04", - "release": "", - "newVersion": "6.1-1ubuntu1.18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libncursesw5": { - "name": "libncursesw5", - "version": "6.1-1ubuntu1.18.04", - "release": "", - "newVersion": "6.1-1ubuntu1.18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnetfilter-conntrack3": { - "name": "libnetfilter-conntrack3", - "version": "1.0.6-2", - "release": "", - "newVersion": "1.0.6-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnetplan0": { - "name": "libnetplan0", - "version": "0.99-0ubuntu3~18.04.4", - "release": "", - "newVersion": "0.99-0ubuntu3~18.04.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnettle6": { - "name": "libnettle6", - "version": "3.4-1", - "release": "", - "newVersion": "3.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnewt0.52": { - "name": "libnewt0.52", - "version": "0.52.20-1ubuntu1", - "release": "", - "newVersion": "0.52.20-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnfnetlink0": { - "name": "libnfnetlink0", - "version": "1.0.1-3", - "release": "", - "newVersion": "1.0.1-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnghttp2-14": { - "name": "libnghttp2-14", - "version": "1.30.0-1ubuntu1", - "release": "", - "newVersion": "1.30.0-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnih1": { - "name": "libnih1", - "version": "1.0.3-6ubuntu2", - "release": "", - "newVersion": "1.0.3-6ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnpth0": { - "name": "libnpth0", - "version": "1.5-3", - "release": "", - "newVersion": "1.5-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnss-systemd": { - "name": "libnss-systemd", - "version": "237-3ubuntu10.44", - "release": "", - "newVersion": "237-3ubuntu10.45", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main", - "AffectedProcs": [ - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2963", - "name": "sudo" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "2964", - "name": "su" - }, - { - "pid": "957", - "name": "rsyslogd" - } - ] - }, - "libntfs-3g88": { - "name": "libntfs-3g88", - "version": "1:2017.3.23-2ubuntu0.18.04.2", - "release": "", - "newVersion": "1:2017.3.23-2ubuntu0.18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnuma1": { - "name": "libnuma1", - "version": "2.0.11-2.1ubuntu0.1", - "release": "", - "newVersion": "2.0.11-2.1ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libp11-kit0": { - "name": "libp11-kit0", - "version": "0.23.9-2ubuntu0.1", - "release": "", - "newVersion": "0.23.9-2ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpam-cap": { - "name": "libpam-cap", - "version": "1:2.25-1.2", - "release": "", - "newVersion": "1:2.25-1.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2963", - "name": "sudo" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "2964", - "name": "su" - } - ] - }, - "libpam-modules": { - "name": "libpam-modules", - "version": "1.1.8-3.6ubuntu2.18.04.2", - "release": "", - "newVersion": "1.1.8-3.6ubuntu2.18.04.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2963", - "name": "sudo" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "2964", - "name": "su" - } - ] - }, - "libpam-modules-bin": { - "name": "libpam-modules-bin", - "version": "1.1.8-3.6ubuntu2.18.04.2", - "release": "", - "newVersion": "1.1.8-3.6ubuntu2.18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpam-runtime": { - "name": "libpam-runtime", - "version": "1.1.8-3.6ubuntu2.18.04.2", - "release": "", - "newVersion": "1.1.8-3.6ubuntu2.18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpam-systemd": { - "name": "libpam-systemd", - "version": "237-3ubuntu10.44", - "release": "", - "newVersion": "237-3ubuntu10.45", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main", - "AffectedProcs": [ - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2963", - "name": "sudo" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "2964", - "name": "su" - } - ] - }, - "libpam0g": { - "name": "libpam0g", - "version": "1.1.8-3.6ubuntu2.18.04.2", - "release": "", - "newVersion": "1.1.8-3.6ubuntu2.18.04.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1002", - "name": "atd" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2963", - "name": "sudo" - }, - { - "pid": "970", - "name": "cron" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "2964", - "name": "su" - } - ] - }, - "libparted2": { - "name": "libparted2", - "version": "3.2-20ubuntu0.2", - "release": "", - "newVersion": "3.2-20ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpcap0.8": { - "name": "libpcap0.8", - "version": "1.8.1-6ubuntu1.18.04.2", - "release": "", - "newVersion": "1.8.1-6ubuntu1.18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpci3": { - "name": "libpci3", - "version": "1:3.5.2-1ubuntu1.1", - "release": "", - "newVersion": "1:3.5.2-1ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpcre3": { - "name": "libpcre3", - "version": "2:8.39-9", - "release": "", - "newVersion": "2:8.39-9", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1002", - "name": "atd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "2963", - "name": "sudo" - }, - { - "pid": "441", - "name": "lvmetad" - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "970", - "name": "cron" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "457", - "name": "systemd-udevd" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "2964", - "name": "su" - } - ] - }, - "libperl5.26": { - "name": "libperl5.26", - "version": "5.26.1-6ubuntu0.5", - "release": "", - "newVersion": "5.26.1-6ubuntu0.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpipeline1": { - "name": "libpipeline1", - "version": "1.5.0-1", - "release": "", - "newVersion": "1.5.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libplymouth4": { - "name": "libplymouth4", - "version": "0.9.3-1ubuntu7.18.04.2", - "release": "", - "newVersion": "0.9.3-1ubuntu7.18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpng16-16": { - "name": "libpng16-16", - "version": "1.6.34-1ubuntu0.18.04.2", - "release": "", - "newVersion": "1.6.34-1ubuntu0.18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpolkit-agent-1-0": { - "name": "libpolkit-agent-1-0", - "version": "0.105-20ubuntu0.18.04.5", - "release": "", - "newVersion": "0.105-20ubuntu0.18.04.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpolkit-backend-1-0": { - "name": "libpolkit-backend-1-0", - "version": "0.105-20ubuntu0.18.04.5", - "release": "", - "newVersion": "0.105-20ubuntu0.18.04.5", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1013", - "name": "polkitd" - } - ] - }, - "libpolkit-gobject-1-0": { - "name": "libpolkit-gobject-1-0", - "version": "0.105-20ubuntu0.18.04.5", - "release": "", - "newVersion": "0.105-20ubuntu0.18.04.5", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "995", - "name": "accounts-daemon" - } - ] - }, - "libpopt0": { - "name": "libpopt0", - "version": "1.16-11", - "release": "", - "newVersion": "1.16-11", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libprocps6": { - "name": "libprocps6", - "version": "2:3.3.12-3ubuntu1.2", - "release": "", - "newVersion": "2:3.3.12-3ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpsl5": { - "name": "libpsl5", - "version": "0.19.1-5build1", - "release": "", - "newVersion": "0.19.1-5build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpython3-stdlib": { - "name": "libpython3-stdlib", - "version": "3.6.7-1~18.04", - "release": "", - "newVersion": "3.6.7-1~18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpython3.6": { - "name": "libpython3.6", - "version": "3.6.9-1~18.04ubuntu1.3", - "release": "", - "newVersion": "3.6.9-1~18.04ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "libpython3.6-minimal": { - "name": "libpython3.6-minimal", - "version": "3.6.9-1~18.04ubuntu1.3", - "release": "", - "newVersion": "3.6.9-1~18.04ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "libpython3.6-stdlib": { - "name": "libpython3.6-stdlib", - "version": "3.6.9-1~18.04ubuntu1.3", - "release": "", - "newVersion": "3.6.9-1~18.04ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - } - ] - }, - "libreadline5": { - "name": "libreadline5", - "version": "5.2+dfsg-3build1", - "release": "", - "newVersion": "5.2+dfsg-3build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libreadline7": { - "name": "libreadline7", - "version": "7.0-3", - "release": "", - "newVersion": "7.0-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libroken18-heimdal": { - "name": "libroken18-heimdal", - "version": "7.5.0+dfsg-1", - "release": "", - "newVersion": "7.5.0+dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "librtmp1": { - "name": "librtmp1", - "version": "2.4+20151223.gitfa8646d.1-1", - "release": "", - "newVersion": "2.4+20151223.gitfa8646d.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsasl2-2": { - "name": "libsasl2-2", - "version": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", - "release": "", - "newVersion": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsasl2-modules": { - "name": "libsasl2-modules", - "version": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", - "release": "", - "newVersion": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsasl2-modules-db": { - "name": "libsasl2-modules-db", - "version": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", - "release": "", - "newVersion": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libseccomp2": { - "name": "libseccomp2", - "version": "2.4.3-1ubuntu3.18.04.3", - "release": "", - "newVersion": "2.4.3-1ubuntu3.18.04.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "libselinux1": { - "name": "libselinux1", - "version": "2.7-2build2", - "release": "", - "newVersion": "2.7-2build2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1002", - "name": "atd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "2963", - "name": "sudo" - }, - { - "pid": "441", - "name": "lvmetad" - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "970", - "name": "cron" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "457", - "name": "systemd-udevd" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "2964", - "name": "su" - } - ] - }, - "libsemanage-common": { - "name": "libsemanage-common", - "version": "2.7-2build2", - "release": "", - "newVersion": "2.7-2build2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsemanage1": { - "name": "libsemanage1", - "version": "2.7-2build2", - "release": "", - "newVersion": "2.7-2build2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsepol1": { - "name": "libsepol1", - "version": "2.7-1", - "release": "", - "newVersion": "2.7-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsigsegv2": { - "name": "libsigsegv2", - "version": "2.12-1", - "release": "", - "newVersion": "2.12-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libslang2": { - "name": "libslang2", - "version": "2.3.1a-3ubuntu1", - "release": "", - "newVersion": "2.3.1a-3ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsmartcols1": { - "name": "libsmartcols1", - "version": "2.31.1-0.4ubuntu3.7", - "release": "", - "newVersion": "2.31.1-0.4ubuntu3.7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsqlite3-0": { - "name": "libsqlite3-0", - "version": "3.22.0-1ubuntu0.4", - "release": "", - "newVersion": "3.22.0-1ubuntu0.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libss2": { - "name": "libss2", - "version": "1.44.1-1ubuntu1.3", - "release": "", - "newVersion": "1.44.1-1ubuntu1.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libssl1.0.0": { - "name": "libssl1.0.0", - "version": "1.0.2n-1ubuntu5.6", - "release": "", - "newVersion": "1.0.2n-1ubuntu5.6", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - } - ] - }, - "libssl1.1": { - "name": "libssl1.1", - "version": "1.1.1-1ubuntu2.1~18.04.8", - "release": "", - "newVersion": "1.1.1-1ubuntu2.1~18.04.8", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libstdc++6": { - "name": "libstdc++6", - "version": "8.4.0-1ubuntu1~18.04", - "release": "", - "newVersion": "8.4.0-1ubuntu1~18.04", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "libsystemd0": { - "name": "libsystemd0", - "version": "237-3ubuntu10.44", - "release": "", - "newVersion": "237-3ubuntu10.45", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "980", - "name": "dbus-daemon" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "957", - "name": "rsyslogd" - } - ] - }, - "libtasn1-6": { - "name": "libtasn1-6", - "version": "4.13-2", - "release": "", - "newVersion": "4.13-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libtext-charwidth-perl": { - "name": "libtext-charwidth-perl", - "version": "0.04-7.1", - "release": "", - "newVersion": "0.04-7.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libtext-iconv-perl": { - "name": "libtext-iconv-perl", - "version": "1.7-5build6", - "release": "", - "newVersion": "1.7-5build6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libtext-wrapi18n-perl": { - "name": "libtext-wrapi18n-perl", - "version": "0.06-7.1", - "release": "", - "newVersion": "0.06-7.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libtinfo5": { - "name": "libtinfo5", - "version": "6.1-1ubuntu1.18.04", - "release": "", - "newVersion": "6.1-1ubuntu1.18.04", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2067", - "name": "bash" - }, - { - "pid": "2965", - "name": "bash" - } - ] - }, - "libudev1": { - "name": "libudev1", - "version": "237-3ubuntu10.44", - "release": "", - "newVersion": "237-3ubuntu10.45", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "441", - "name": "lvmetad" - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "libunistring2": { - "name": "libunistring2", - "version": "0.9.9-0ubuntu2", - "release": "", - "newVersion": "0.9.9-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libunwind8": { - "name": "libunwind8", - "version": "1.2.1-8", - "release": "", - "newVersion": "1.2.1-8", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libusb-1.0-0": { - "name": "libusb-1.0-0", - "version": "2:1.0.21-2", - "release": "", - "newVersion": "2:1.0.21-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libutempter0": { - "name": "libutempter0", - "version": "1.1.6-3", - "release": "", - "newVersion": "1.1.6-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libuuid1": { - "name": "libuuid1", - "version": "2.31.1-0.4ubuntu3.7", - "release": "", - "newVersion": "2.31.1-0.4ubuntu3.7", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "457", - "name": "systemd-udevd" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - }, - { - "pid": "957", - "name": "rsyslogd" - } - ] - }, - "libuv1": { - "name": "libuv1", - "version": "1.18.0-3", - "release": "", - "newVersion": "1.18.0-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libwind0-heimdal": { - "name": "libwind0-heimdal", - "version": "7.5.0+dfsg-1", - "release": "", - "newVersion": "7.5.0+dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libwrap0": { - "name": "libwrap0", - "version": "7.6.q-27", - "release": "", - "newVersion": "7.6.q-27", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - } - ] - }, - "libx11-6": { - "name": "libx11-6", - "version": "2:1.6.4-3ubuntu0.3", - "release": "", - "newVersion": "2:1.6.4-3ubuntu0.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libx11-data": { - "name": "libx11-data", - "version": "2:1.6.4-3ubuntu0.3", - "release": "", - "newVersion": "2:1.6.4-3ubuntu0.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxau6": { - "name": "libxau6", - "version": "1:1.0.8-1ubuntu1", - "release": "", - "newVersion": "1:1.0.8-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxcb1": { - "name": "libxcb1", - "version": "1.13-2~ubuntu18.04", - "release": "", - "newVersion": "1.13-2~ubuntu18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxdmcp6": { - "name": "libxdmcp6", - "version": "1:1.1.2-3", - "release": "", - "newVersion": "1:1.1.2-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxext6": { - "name": "libxext6", - "version": "2:1.3.3-1", - "release": "", - "newVersion": "2:1.3.3-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxml2": { - "name": "libxml2", - "version": "2.9.4+dfsg1-6.1ubuntu1.3", - "release": "", - "newVersion": "2.9.4+dfsg1-6.1ubuntu1.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxmlsec1": { - "name": "libxmlsec1", - "version": "1.2.25-1build1", - "release": "", - "newVersion": "1.2.25-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxmlsec1-openssl": { - "name": "libxmlsec1-openssl", - "version": "1.2.25-1build1", - "release": "", - "newVersion": "1.2.25-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxmuu1": { - "name": "libxmuu1", - "version": "2:1.1.2-2", - "release": "", - "newVersion": "2:1.1.2-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxslt1.1": { - "name": "libxslt1.1", - "version": "1.1.29-5ubuntu0.2", - "release": "", - "newVersion": "1.1.29-5ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxtables12": { - "name": "libxtables12", - "version": "1.6.1-2ubuntu2", - "release": "", - "newVersion": "1.6.1-2ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libyaml-0-2": { - "name": "libyaml-0-2", - "version": "0.1.7-2ubuntu3", - "release": "", - "newVersion": "0.1.7-2ubuntu3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libzstd1": { - "name": "libzstd1", - "version": "1.3.3+dfsg-2ubuntu1.1", - "release": "", - "newVersion": "1.3.3+dfsg-2ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main", - "AffectedProcs": [ - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "linux-aws": { - "name": "linux-aws", - "version": "5.4.0.1038.22", - "release": "", - "newVersion": "5.4.0.1041.24", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "linux-aws-5.4-headers-5.4.0-1038": { - "name": "linux-aws-5.4-headers-5.4.0-1038", - "version": "5.4.0-1038.40~18.04.1", - "release": "", - "newVersion": "5.4.0-1038.40~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "linux-base": { - "name": "linux-base", - "version": "4.5ubuntu1.2", - "release": "", - "newVersion": "4.5ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "linux-headers-5.4.0-1038-aws": { - "name": "linux-headers-5.4.0-1038-aws", - "version": "5.4.0-1038.40~18.04.1", - "release": "", - "newVersion": "5.4.0-1038.40~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "linux-headers-aws": { - "name": "linux-headers-aws", - "version": "5.4.0.1038.22", - "release": "", - "newVersion": "5.4.0.1041.24", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "linux-image-5.4.0-1038-aws": { - "name": "linux-image-5.4.0-1038-aws", - "version": "5.4.0-1038.40~18.04.1", - "release": "", - "newVersion": "5.4.0-1038.40~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "linux-image-aws": { - "name": "linux-image-aws", - "version": "5.4.0.1038.22", - "release": "", - "newVersion": "5.4.0.1041.24", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "linux-modules-5.4.0-1038-aws": { - "name": "linux-modules-5.4.0-1038-aws", - "version": "5.4.0-1038.40~18.04.1", - "release": "", - "newVersion": "5.4.0-1038.40~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "locales": { - "name": "locales", - "version": "2.27-3ubuntu1.4", - "release": "", - "newVersion": "2.27-3ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "login": { - "name": "login", - "version": "1:4.5-1ubuntu2", - "release": "", - "newVersion": "1:4.5-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2964", - "name": "su" - } - ] - }, - "logrotate": { - "name": "logrotate", - "version": "3.11.0-0.1ubuntu1", - "release": "", - "newVersion": "3.11.0-0.1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lsb-base": { - "name": "lsb-base", - "version": "9.20170808ubuntu1", - "release": "", - "newVersion": "9.20170808ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lsb-release": { - "name": "lsb-release", - "version": "9.20170808ubuntu1", - "release": "", - "newVersion": "9.20170808ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lshw": { - "name": "lshw", - "version": "02.18-0.1ubuntu6.18.04.2", - "release": "", - "newVersion": "02.18-0.1ubuntu6.18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lsof": { - "name": "lsof", - "version": "4.89+dfsg-0.1", - "release": "", - "newVersion": "4.89+dfsg-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ltrace": { - "name": "ltrace", - "version": "0.7.3-6ubuntu1", - "release": "", - "newVersion": "0.7.3-6ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lvm2": { - "name": "lvm2", - "version": "2.02.176-4.1ubuntu3.18.04.3", - "release": "", - "newVersion": "2.02.176-4.1ubuntu3.18.04.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "441", - "name": "lvmetad" - } - ] - }, - "lxcfs": { - "name": "lxcfs", - "version": "3.0.3-0ubuntu1~18.04.2", - "release": "", - "newVersion": "3.0.3-0ubuntu1~18.04.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "997", - "name": "lxcfs" - } - ] - }, - "lxd": { - "name": "lxd", - "version": "3.0.3-0ubuntu1~18.04.1", - "release": "", - "newVersion": "3.0.3-0ubuntu1~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lxd-client": { - "name": "lxd-client", - "version": "3.0.3-0ubuntu1~18.04.1", - "release": "", - "newVersion": "3.0.3-0ubuntu1~18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "man-db": { - "name": "man-db", - "version": "2.8.3-2ubuntu0.1", - "release": "", - "newVersion": "2.8.3-2ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "manpages": { - "name": "manpages", - "version": "4.15-1", - "release": "", - "newVersion": "4.15-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mawk": { - "name": "mawk", - "version": "1.3.3-17ubuntu3", - "release": "", - "newVersion": "1.3.3-17ubuntu3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mdadm": { - "name": "mdadm", - "version": "4.1~rc1-3~ubuntu18.04.4", - "release": "", - "newVersion": "4.1~rc1-3~ubuntu18.04.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mime-support": { - "name": "mime-support", - "version": "3.60ubuntu1", - "release": "", - "newVersion": "3.60ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mlocate": { - "name": "mlocate", - "version": "0.26-2ubuntu3.1", - "release": "", - "newVersion": "0.26-2ubuntu3.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "motd-news-config": { - "name": "motd-news-config", - "version": "10.1ubuntu2.10", - "release": "", - "newVersion": "10.1ubuntu2.10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mount": { - "name": "mount", - "version": "2.31.1-0.4ubuntu3.7", - "release": "", - "newVersion": "2.31.1-0.4ubuntu3.7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mtr-tiny": { - "name": "mtr-tiny", - "version": "0.92-1", - "release": "", - "newVersion": "0.92-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "multiarch-support": { - "name": "multiarch-support", - "version": "2.27-3ubuntu1.4", - "release": "", - "newVersion": "2.27-3ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "nano": { - "name": "nano", - "version": "2.9.3-2", - "release": "", - "newVersion": "2.9.3-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ncurses-base": { - "name": "ncurses-base", - "version": "6.1-1ubuntu1.18.04", - "release": "", - "newVersion": "6.1-1ubuntu1.18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ncurses-bin": { - "name": "ncurses-bin", - "version": "6.1-1ubuntu1.18.04", - "release": "", - "newVersion": "6.1-1ubuntu1.18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ncurses-term": { - "name": "ncurses-term", - "version": "6.1-1ubuntu1.18.04", - "release": "", - "newVersion": "6.1-1ubuntu1.18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "net-tools": { - "name": "net-tools", - "version": "1.60+git20161116.90da8a0-1ubuntu1", - "release": "", - "newVersion": "1.60+git20161116.90da8a0-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "netbase": { - "name": "netbase", - "version": "5.4", - "release": "", - "newVersion": "5.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "netcat-openbsd": { - "name": "netcat-openbsd", - "version": "1.187-1ubuntu0.1", - "release": "", - "newVersion": "1.187-1ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "netplan.io": { - "name": "netplan.io", - "version": "0.99-0ubuntu3~18.04.4", - "release": "", - "newVersion": "0.99-0ubuntu3~18.04.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "networkd-dispatcher": { - "name": "networkd-dispatcher", - "version": "1.7-0ubuntu3.3", - "release": "", - "newVersion": "1.7-0ubuntu3.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "nplan": { - "name": "nplan", - "version": "0.99-0ubuntu3~18.04.4", - "release": "", - "newVersion": "0.99-0ubuntu3~18.04.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ntfs-3g": { - "name": "ntfs-3g", - "version": "1:2017.3.23-2ubuntu0.18.04.2", - "release": "", - "newVersion": "1:2017.3.23-2ubuntu0.18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "open-iscsi": { - "name": "open-iscsi", - "version": "2.0.874-5ubuntu2.10", - "release": "", - "newVersion": "2.0.874-5ubuntu2.10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "open-vm-tools": { - "name": "open-vm-tools", - "version": "2:11.0.5-4ubuntu0.18.04.1", - "release": "", - "newVersion": "2:11.0.5-4ubuntu0.18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "openssh-client": { - "name": "openssh-client", - "version": "1:7.6p1-4ubuntu0.3", - "release": "", - "newVersion": "1:7.6p1-4ubuntu0.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "openssh-server": { - "name": "openssh-server", - "version": "1:7.6p1-4ubuntu0.3", - "release": "", - "newVersion": "1:7.6p1-4ubuntu0.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - } - ] - }, - "openssh-sftp-server": { - "name": "openssh-sftp-server", - "version": "1:7.6p1-4ubuntu0.3", - "release": "", - "newVersion": "1:7.6p1-4ubuntu0.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "openssl": { - "name": "openssl", - "version": "1.1.1-1ubuntu2.1~18.04.8", - "release": "", - "newVersion": "1.1.1-1ubuntu2.1~18.04.8", - "newRelease": "", - "arch": "", - "repository": "" - }, - "os-prober": { - "name": "os-prober", - "version": "1.74ubuntu1", - "release": "", - "newVersion": "1.74ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "overlayroot": { - "name": "overlayroot", - "version": "0.40ubuntu1.1", - "release": "", - "newVersion": "0.40ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "parted": { - "name": "parted", - "version": "3.2-20ubuntu0.2", - "release": "", - "newVersion": "3.2-20ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "passwd": { - "name": "passwd", - "version": "1:4.5-1ubuntu2", - "release": "", - "newVersion": "1:4.5-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "pastebinit": { - "name": "pastebinit", - "version": "1.5-2", - "release": "", - "newVersion": "1.5-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "patch": { - "name": "patch", - "version": "2.7.6-2ubuntu1.1", - "release": "", - "newVersion": "2.7.6-2ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "pciutils": { - "name": "pciutils", - "version": "1:3.5.2-1ubuntu1.1", - "release": "", - "newVersion": "1:3.5.2-1ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "perl": { - "name": "perl", - "version": "5.26.1-6ubuntu0.5", - "release": "", - "newVersion": "5.26.1-6ubuntu0.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "perl-base": { - "name": "perl-base", - "version": "5.26.1-6ubuntu0.5", - "release": "", - "newVersion": "5.26.1-6ubuntu0.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "perl-modules-5.26": { - "name": "perl-modules-5.26", - "version": "5.26.1-6ubuntu0.5", - "release": "", - "newVersion": "5.26.1-6ubuntu0.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "pinentry-curses": { - "name": "pinentry-curses", - "version": "1.1.0-1", - "release": "", - "newVersion": "1.1.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "plymouth": { - "name": "plymouth", - "version": "0.9.3-1ubuntu7.18.04.2", - "release": "", - "newVersion": "0.9.3-1ubuntu7.18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "plymouth-theme-ubuntu-text": { - "name": "plymouth-theme-ubuntu-text", - "version": "0.9.3-1ubuntu7.18.04.2", - "release": "", - "newVersion": "0.9.3-1ubuntu7.18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "policykit-1": { - "name": "policykit-1", - "version": "0.105-20ubuntu0.18.04.5", - "release": "", - "newVersion": "0.105-20ubuntu0.18.04.5", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1013", - "name": "polkitd" - } - ] - }, - "pollinate": { - "name": "pollinate", - "version": "4.33-0ubuntu1~18.04.2", - "release": "", - "newVersion": "4.33-0ubuntu1~18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "popularity-contest": { - "name": "popularity-contest", - "version": "1.66ubuntu1", - "release": "", - "newVersion": "1.66ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "powermgmt-base": { - "name": "powermgmt-base", - "version": "1.33", - "release": "", - "newVersion": "1.33", - "newRelease": "", - "arch": "", - "repository": "" - }, - "procps": { - "name": "procps", - "version": "2:3.3.12-3ubuntu1.2", - "release": "", - "newVersion": "2:3.3.12-3ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "psmisc": { - "name": "psmisc", - "version": "23.1-1ubuntu0.1", - "release": "", - "newVersion": "23.1-1ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "publicsuffix": { - "name": "publicsuffix", - "version": "20180223.1310-1", - "release": "", - "newVersion": "20180223.1310-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-apt-common": { - "name": "python-apt-common", - "version": "1.6.5ubuntu0.5", - "release": "", - "newVersion": "1.6.5ubuntu0.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3": { - "name": "python3", - "version": "3.6.7-1~18.04", - "release": "", - "newVersion": "3.6.7-1~18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-apport": { - "name": "python3-apport", - "version": "2.20.9-0ubuntu7.23", - "release": "", - "newVersion": "2.20.9-0ubuntu7.23", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-apt": { - "name": "python3-apt", - "version": "1.6.5ubuntu0.5", - "release": "", - "newVersion": "1.6.5ubuntu0.5", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "python3-asn1crypto": { - "name": "python3-asn1crypto", - "version": "0.24.0-1", - "release": "", - "newVersion": "0.24.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-attr": { - "name": "python3-attr", - "version": "17.4.0-2", - "release": "", - "newVersion": "17.4.0-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-automat": { - "name": "python3-automat", - "version": "0.6.0-1", - "release": "", - "newVersion": "0.6.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-blinker": { - "name": "python3-blinker", - "version": "1.4+dfsg1-0.1", - "release": "", - "newVersion": "1.4+dfsg1-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-certifi": { - "name": "python3-certifi", - "version": "2018.1.18-2", - "release": "", - "newVersion": "2018.1.18-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-cffi-backend": { - "name": "python3-cffi-backend", - "version": "1.11.5-1", - "release": "", - "newVersion": "1.11.5-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-chardet": { - "name": "python3-chardet", - "version": "3.0.4-1", - "release": "", - "newVersion": "3.0.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-click": { - "name": "python3-click", - "version": "6.7-3", - "release": "", - "newVersion": "6.7-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-colorama": { - "name": "python3-colorama", - "version": "0.3.7-1", - "release": "", - "newVersion": "0.3.7-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-commandnotfound": { - "name": "python3-commandnotfound", - "version": "18.04.5", - "release": "", - "newVersion": "18.04.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-configobj": { - "name": "python3-configobj", - "version": "5.0.6-2", - "release": "", - "newVersion": "5.0.6-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-constantly": { - "name": "python3-constantly", - "version": "15.1.0-1", - "release": "", - "newVersion": "15.1.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-cryptography": { - "name": "python3-cryptography", - "version": "2.1.4-1ubuntu1.4", - "release": "", - "newVersion": "2.1.4-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-dbus": { - "name": "python3-dbus", - "version": "1.2.6-1", - "release": "", - "newVersion": "1.2.6-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "python3-debconf": { - "name": "python3-debconf", - "version": "1.5.66ubuntu1", - "release": "", - "newVersion": "1.5.66ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-debian": { - "name": "python3-debian", - "version": "0.1.32", - "release": "", - "newVersion": "0.1.32", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-distro-info": { - "name": "python3-distro-info", - "version": "0.18ubuntu0.18.04.1", - "release": "", - "newVersion": "0.18ubuntu0.18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-distupgrade": { - "name": "python3-distupgrade", - "version": "1:18.04.42", - "release": "", - "newVersion": "1:18.04.42", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-gdbm": { - "name": "python3-gdbm", - "version": "3.6.9-1~18.04", - "release": "", - "newVersion": "3.6.9-1~18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-gi": { - "name": "python3-gi", - "version": "3.26.1-2ubuntu1", - "release": "", - "newVersion": "3.26.1-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "python3-httplib2": { - "name": "python3-httplib2", - "version": "0.9.2+dfsg-1ubuntu0.3", - "release": "", - "newVersion": "0.9.2+dfsg-1ubuntu0.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-hyperlink": { - "name": "python3-hyperlink", - "version": "17.3.1-2", - "release": "", - "newVersion": "17.3.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-idna": { - "name": "python3-idna", - "version": "2.6-1", - "release": "", - "newVersion": "2.6-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-incremental": { - "name": "python3-incremental", - "version": "16.10.1-3", - "release": "", - "newVersion": "16.10.1-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jinja2": { - "name": "python3-jinja2", - "version": "2.10-1ubuntu0.18.04.1", - "release": "", - "newVersion": "2.10-1ubuntu0.18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-json-pointer": { - "name": "python3-json-pointer", - "version": "1.10-1", - "release": "", - "newVersion": "1.10-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jsonpatch": { - "name": "python3-jsonpatch", - "version": "1.19+really1.16-1fakesync1", - "release": "", - "newVersion": "1.19+really1.16-1fakesync1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jsonschema": { - "name": "python3-jsonschema", - "version": "2.6.0-2", - "release": "", - "newVersion": "2.6.0-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jwt": { - "name": "python3-jwt", - "version": "1.5.3+ds1-1", - "release": "", - "newVersion": "1.5.3+ds1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-markupsafe": { - "name": "python3-markupsafe", - "version": "1.0-1build1", - "release": "", - "newVersion": "1.0-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-minimal": { - "name": "python3-minimal", - "version": "3.6.7-1~18.04", - "release": "", - "newVersion": "3.6.7-1~18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-netifaces": { - "name": "python3-netifaces", - "version": "0.10.4-0.1build4", - "release": "", - "newVersion": "0.10.4-0.1build4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-newt": { - "name": "python3-newt", - "version": "0.52.20-1ubuntu1", - "release": "", - "newVersion": "0.52.20-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-oauthlib": { - "name": "python3-oauthlib", - "version": "2.0.6-1", - "release": "", - "newVersion": "2.0.6-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-openssl": { - "name": "python3-openssl", - "version": "17.5.0-1ubuntu1", - "release": "", - "newVersion": "17.5.0-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pam": { - "name": "python3-pam", - "version": "0.4.2-13.2ubuntu4", - "release": "", - "newVersion": "0.4.2-13.2ubuntu4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pkg-resources": { - "name": "python3-pkg-resources", - "version": "39.0.1-2", - "release": "", - "newVersion": "39.0.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-problem-report": { - "name": "python3-problem-report", - "version": "2.20.9-0ubuntu7.23", - "release": "", - "newVersion": "2.20.9-0ubuntu7.23", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pyasn1": { - "name": "python3-pyasn1", - "version": "0.4.2-3", - "release": "", - "newVersion": "0.4.2-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pyasn1-modules": { - "name": "python3-pyasn1-modules", - "version": "0.2.1-0.2", - "release": "", - "newVersion": "0.2.1-0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-requests": { - "name": "python3-requests", - "version": "2.18.4-2ubuntu0.1", - "release": "", - "newVersion": "2.18.4-2ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-requests-unixsocket": { - "name": "python3-requests-unixsocket", - "version": "0.1.5-3", - "release": "", - "newVersion": "0.1.5-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-serial": { - "name": "python3-serial", - "version": "3.4-2", - "release": "", - "newVersion": "3.4-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-service-identity": { - "name": "python3-service-identity", - "version": "16.0.0-2", - "release": "", - "newVersion": "16.0.0-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-six": { - "name": "python3-six", - "version": "1.11.0-2", - "release": "", - "newVersion": "1.11.0-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-software-properties": { - "name": "python3-software-properties", - "version": "0.96.24.32.14", - "release": "", - "newVersion": "0.96.24.32.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-systemd": { - "name": "python3-systemd", - "version": "234-1build1", - "release": "", - "newVersion": "234-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-twisted": { - "name": "python3-twisted", - "version": "17.9.0-2ubuntu0.1", - "release": "", - "newVersion": "17.9.0-2ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-twisted-bin": { - "name": "python3-twisted-bin", - "version": "17.9.0-2ubuntu0.1", - "release": "", - "newVersion": "17.9.0-2ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-update-manager": { - "name": "python3-update-manager", - "version": "1:18.04.11.13", - "release": "", - "newVersion": "1:18.04.11.13", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-urllib3": { - "name": "python3-urllib3", - "version": "1.22-1ubuntu0.18.04.2", - "release": "", - "newVersion": "1.22-1ubuntu0.18.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-yaml": { - "name": "python3-yaml", - "version": "3.12-1build2", - "release": "", - "newVersion": "3.12-1build2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-zope.interface": { - "name": "python3-zope.interface", - "version": "4.3.2-1build2", - "release": "", - "newVersion": "4.3.2-1build2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3.6": { - "name": "python3.6", - "version": "3.6.9-1~18.04ubuntu1.3", - "release": "", - "newVersion": "3.6.9-1~18.04ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "python3.6-minimal": { - "name": "python3.6-minimal", - "version": "3.6.9-1~18.04ubuntu1.3", - "release": "", - "newVersion": "3.6.9-1~18.04ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "1040", - "name": "unattended-upgr" - } - ] - }, - "readline-common": { - "name": "readline-common", - "version": "7.0-3", - "release": "", - "newVersion": "7.0-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "rsync": { - "name": "rsync", - "version": "3.1.2-2.1ubuntu1.1", - "release": "", - "newVersion": "3.1.2-2.1ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "rsyslog": { - "name": "rsyslog", - "version": "8.32.0-1ubuntu4", - "release": "", - "newVersion": "8.32.0-1ubuntu4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "957", - "name": "rsyslogd" - } - ] - }, - "run-one": { - "name": "run-one", - "version": "1.17-0ubuntu1", - "release": "", - "newVersion": "1.17-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "screen": { - "name": "screen", - "version": "4.6.2-1ubuntu1.1", - "release": "", - "newVersion": "4.6.2-1ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sed": { - "name": "sed", - "version": "4.4-2", - "release": "", - "newVersion": "4.4-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sensible-utils": { - "name": "sensible-utils", - "version": "0.0.12", - "release": "", - "newVersion": "0.0.12", - "newRelease": "", - "arch": "", - "repository": "" - }, - "shared-mime-info": { - "name": "shared-mime-info", - "version": "1.9-2", - "release": "", - "newVersion": "1.9-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "snapd": { - "name": "snapd", - "version": "2.48.3+18.04", - "release": "", - "newVersion": "2.48.3+18.04", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1382", - "name": "snapd" - } - ] - }, - "software-properties-common": { - "name": "software-properties-common", - "version": "0.96.24.32.14", - "release": "", - "newVersion": "0.96.24.32.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sosreport": { - "name": "sosreport", - "version": "3.9.1-1ubuntu0.18.04.3", - "release": "", - "newVersion": "3.9.1-1ubuntu0.18.04.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "squashfs-tools": { - "name": "squashfs-tools", - "version": "1:4.3-6ubuntu0.18.04.1", - "release": "", - "newVersion": "1:4.3-6ubuntu0.18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ssh-import-id": { - "name": "ssh-import-id", - "version": "5.7-0ubuntu1.1", - "release": "", - "newVersion": "5.7-0ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "strace": { - "name": "strace", - "version": "4.21-1ubuntu1", - "release": "", - "newVersion": "4.21-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sudo": { - "name": "sudo", - "version": "1.8.21p2-3ubuntu1.4", - "release": "", - "newVersion": "1.8.21p2-3ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2963", - "name": "sudo" - } - ] - }, - "systemd": { - "name": "systemd", - "version": "237-3ubuntu10.44", - "release": "", - "newVersion": "237-3ubuntu10.45", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "994", - "name": "systemd-logind" - }, - { - "pid": "1945", - "name": "(sd-pam)" - }, - { - "pid": "839", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "541", - "name": "systemd-timesyn" - }, - { - "pid": "1942", - "name": "systemd" - }, - { - "pid": "419", - "name": "systemd-journal" - }, - { - "pid": "828", - "name": "systemd-network" - } - ] - }, - "systemd-sysv": { - "name": "systemd-sysv", - "version": "237-3ubuntu10.44", - "release": "", - "newVersion": "237-3ubuntu10.45", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main" - }, - "sysvinit-utils": { - "name": "sysvinit-utils", - "version": "2.88dsf-59.10ubuntu1", - "release": "", - "newVersion": "2.88dsf-59.10ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tar": { - "name": "tar", - "version": "1.29b-2ubuntu0.2", - "release": "", - "newVersion": "1.29b-2ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tcpdump": { - "name": "tcpdump", - "version": "4.9.3-0ubuntu0.18.04.1", - "release": "", - "newVersion": "4.9.3-0ubuntu0.18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "telnet": { - "name": "telnet", - "version": "0.17-41", - "release": "", - "newVersion": "0.17-41", - "newRelease": "", - "arch": "", - "repository": "" - }, - "time": { - "name": "time", - "version": "1.7-25.1build1", - "release": "", - "newVersion": "1.7-25.1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tmux": { - "name": "tmux", - "version": "2.6-3ubuntu0.2", - "release": "", - "newVersion": "2.6-3ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tzdata": { - "name": "tzdata", - "version": "2021a-0ubuntu0.18.04", - "release": "", - "newVersion": "2021a-0ubuntu0.18.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-advantage-tools": { - "name": "ubuntu-advantage-tools", - "version": "17", - "release": "", - "newVersion": "17", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-keyring": { - "name": "ubuntu-keyring", - "version": "2018.09.18.1~18.04.0", - "release": "", - "newVersion": "2018.09.18.1~18.04.0", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-minimal": { - "name": "ubuntu-minimal", - "version": "1.417.5", - "release": "", - "newVersion": "1.417.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-release-upgrader-core": { - "name": "ubuntu-release-upgrader-core", - "version": "1:18.04.42", - "release": "", - "newVersion": "1:18.04.42", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-server": { - "name": "ubuntu-server", - "version": "1.417.5", - "release": "", - "newVersion": "1.417.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-standard": { - "name": "ubuntu-standard", - "version": "1.417.5", - "release": "", - "newVersion": "1.417.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ucf": { - "name": "ucf", - "version": "3.0038", - "release": "", - "newVersion": "3.0038", - "newRelease": "", - "arch": "", - "repository": "" - }, - "udev": { - "name": "udev", - "version": "237-3ubuntu10.44", - "release": "", - "newVersion": "237-3ubuntu10.45", - "newRelease": "", - "arch": "", - "repository": "bionic-updates/main", - "AffectedProcs": [ - { - "pid": "457", - "name": "systemd-udevd" - } - ] - }, - "ufw": { - "name": "ufw", - "version": "0.36-0ubuntu0.18.04.1", - "release": "", - "newVersion": "0.36-0ubuntu0.18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "uidmap": { - "name": "uidmap", - "version": "1:4.5-1ubuntu2", - "release": "", - "newVersion": "1:4.5-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "unattended-upgrades": { - "name": "unattended-upgrades", - "version": "1.1ubuntu1.18.04.14", - "release": "", - "newVersion": "1.1ubuntu1.18.04.14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "update-manager-core": { - "name": "update-manager-core", - "version": "1:18.04.11.13", - "release": "", - "newVersion": "1:18.04.11.13", - "newRelease": "", - "arch": "", - "repository": "" - }, - "update-notifier-common": { - "name": "update-notifier-common", - "version": "3.192.1.9", - "release": "", - "newVersion": "3.192.1.9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ureadahead": { - "name": "ureadahead", - "version": "0.100.0-21", - "release": "", - "newVersion": "0.100.0-21", - "newRelease": "", - "arch": "", - "repository": "" - }, - "usbutils": { - "name": "usbutils", - "version": "1:007-4build1", - "release": "", - "newVersion": "1:007-4build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "util-linux": { - "name": "util-linux", - "version": "2.31.1-0.4ubuntu3.7", - "release": "", - "newVersion": "2.31.1-0.4ubuntu3.7", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1027", - "name": "agetty" - }, - { - "pid": "1038", - "name": "agetty" - } - ] - }, - "uuid-runtime": { - "name": "uuid-runtime", - "version": "2.31.1-0.4ubuntu3.7", - "release": "", - "newVersion": "2.31.1-0.4ubuntu3.7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim": { - "name": "vim", - "version": "2:8.0.1453-1ubuntu1.4", - "release": "", - "newVersion": "2:8.0.1453-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim-common": { - "name": "vim-common", - "version": "2:8.0.1453-1ubuntu1.4", - "release": "", - "newVersion": "2:8.0.1453-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim-runtime": { - "name": "vim-runtime", - "version": "2:8.0.1453-1ubuntu1.4", - "release": "", - "newVersion": "2:8.0.1453-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim-tiny": { - "name": "vim-tiny", - "version": "2:8.0.1453-1ubuntu1.4", - "release": "", - "newVersion": "2:8.0.1453-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "wget": { - "name": "wget", - "version": "1.19.4-1ubuntu2.2", - "release": "", - "newVersion": "1.19.4-1ubuntu2.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "whiptail": { - "name": "whiptail", - "version": "0.52.20-1ubuntu1", - "release": "", - "newVersion": "0.52.20-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xauth": { - "name": "xauth", - "version": "1:1.0.10-1", - "release": "", - "newVersion": "1:1.0.10-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xdelta3": { - "name": "xdelta3", - "version": "3.0.11-dfsg-1ubuntu1", - "release": "", - "newVersion": "3.0.11-dfsg-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xdg-user-dirs": { - "name": "xdg-user-dirs", - "version": "0.17-1ubuntu1", - "release": "", - "newVersion": "0.17-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xfsprogs": { - "name": "xfsprogs", - "version": "4.9.0+nmu1ubuntu2", - "release": "", - "newVersion": "4.9.0+nmu1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xkb-data": { - "name": "xkb-data", - "version": "2.23.1-1ubuntu1.18.04.1", - "release": "", - "newVersion": "2.23.1-1ubuntu1.18.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xxd": { - "name": "xxd", - "version": "2:8.0.1453-1ubuntu1.4", - "release": "", - "newVersion": "2:8.0.1453-1ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xz-utils": { - "name": "xz-utils", - "version": "5.2.2-1.3", - "release": "", - "newVersion": "5.2.2-1.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "zerofree": { - "name": "zerofree", - "version": "1.0.4-1", - "release": "", - "newVersion": "1.0.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "zlib1g": { - "name": "zlib1g", - "version": "1:1.2.11.dfsg-0ubuntu2", - "release": "", - "newVersion": "1:1.2.11.dfsg-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1000", - "name": "networkd-dispat" - }, - { - "pid": "2097", - "name": "sshd" - }, - { - "pid": "1013", - "name": "polkitd" - }, - { - "pid": "1040", - "name": "unattended-upgr" - }, - { - "pid": "2066", - "name": "sshd" - }, - { - "pid": "995", - "name": "accounts-daemon" - }, - { - "pid": "1154", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1931", - "name": "sshd" - }, - { - "pid": "2167", - "name": "sshd" - }, - { - "pid": "957", - "name": "rsyslogd" - } - ] - } - }, - "SrcPackages": { - "argon2": { - "name": "argon2", - "version": "0~20161029-1.1", - "arch": "", - "binaryNames": [ - "libargon2-0" - ] - }, - "asn1crypto": { - "name": "asn1crypto", - "version": "0.24.0-1", - "arch": "", - "binaryNames": [ - "python3-asn1crypto" - ] - }, - "attr": { - "name": "attr", - "version": "1:2.4.47-2build1", - "arch": "", - "binaryNames": [ - "libattr1" - ] - }, - "audit": { - "name": "audit", - "version": "1:2.8.2-1ubuntu1.1", - "arch": "", - "binaryNames": [ - "libaudit-common", - "libaudit1" - ] - }, - "automat": { - "name": "automat", - "version": "0.6.0-1", - "arch": "", - "binaryNames": [ - "python3-automat" - ] - }, - "bind9": { - "name": "bind9", - "version": "1:9.11.3+dfsg-1ubuntu1.14", - "arch": "", - "binaryNames": [ - "bind9-host", - "dnsutils", - "libbind9-160", - "libdns-export1100", - "libdns1100", - "libirs160", - "libisc-export169", - "libisc169", - "libisccc160", - "libisccfg160", - "liblwres160" - ] - }, - "blinker": { - "name": "blinker", - "version": "1.4+dfsg1-0.1", - "arch": "", - "binaryNames": [ - "python3-blinker" - ] - }, - "busybox": { - "name": "busybox", - "version": "1:1.27.2-2ubuntu3.3", - "arch": "", - "binaryNames": [ - "busybox-initramfs", - "busybox-static" - ] - }, - "cdebconf": { - "name": "cdebconf", - "version": "0.213ubuntu1", - "arch": "", - "binaryNames": [ - "libdebconfclient0" - ] - }, - "chardet": { - "name": "chardet", - "version": "3.0.4-1", - "arch": "", - "binaryNames": [ - "python3-chardet" - ] - }, - "cloud-initramfs-tools": { - "name": "cloud-initramfs-tools", - "version": "0.40ubuntu1.1", - "arch": "", - "binaryNames": [ - "cloud-initramfs-copymods", - "cloud-initramfs-dyn-netconf", - "overlayroot" - ] - }, - "cloud-utils": { - "name": "cloud-utils", - "version": "0.30-0ubuntu5", - "arch": "", - "binaryNames": [ - "cloud-guest-utils" - ] - }, - "configobj": { - "name": "configobj", - "version": "5.0.6-2", - "arch": "", - "binaryNames": [ - "python3-configobj" - ] - }, - "constantly": { - "name": "constantly", - "version": "15.1.0-1", - "arch": "", - "binaryNames": [ - "python3-constantly" - ] - }, - "cyrus-sasl2": { - "name": "cyrus-sasl2", - "version": "2.1.27~101-g0780600+dfsg-3ubuntu2.3", - "arch": "", - "binaryNames": [ - "libsasl2-2", - "libsasl2-modules", - "libsasl2-modules-db" - ] - }, - "db5.3": { - "name": "db5.3", - "version": "5.3.28-13.1ubuntu1.1", - "arch": "", - "binaryNames": [ - "libdb5.3" - ] - }, - "dbus-python": { - "name": "dbus-python", - "version": "1.2.6-1", - "arch": "", - "binaryNames": [ - "python3-dbus" - ] - }, - "distro-info": { - "name": "distro-info", - "version": "0.18ubuntu0.18.04.1", - "arch": "", - "binaryNames": [ - "python3-distro-info" - ] - }, - "dnsmasq": { - "name": "dnsmasq", - "version": "2.79-1ubuntu0.3", - "arch": "", - "binaryNames": [ - "dnsmasq-base" - ] - }, - "expat": { - "name": "expat", - "version": "2.2.5-3ubuntu0.2", - "arch": "", - "binaryNames": [ - "libexpat1" - ] - }, - "fonts-ubuntu": { - "name": "fonts-ubuntu", - "version": "0.83-2", - "arch": "", - "binaryNames": [ - "fonts-ubuntu-console" - ] - }, - "freetype": { - "name": "freetype", - "version": "2.8.1-2ubuntu2.1", - "arch": "", - "binaryNames": [ - "libfreetype6" - ] - }, - "fribidi": { - "name": "fribidi", - "version": "0.19.7-2", - "arch": "", - "binaryNames": [ - "libfribidi0" - ] - }, - "gcc-8": { - "name": "gcc-8", - "version": "8.4.0-1ubuntu1~18.04", - "arch": "", - "binaryNames": [ - "gcc-8-base", - "libgcc1", - "libstdc++6" - ] - }, - "gdbm": { - "name": "gdbm", - "version": "1.14.1-6", - "arch": "", - "binaryNames": [ - "libgdbm-compat4", - "libgdbm5" - ] - }, - "geoip": { - "name": "geoip", - "version": "1.6.12-1", - "arch": "", - "binaryNames": [ - "libgeoip1" - ] - }, - "gettext": { - "name": "gettext", - "version": "0.19.8.1-6ubuntu0.3", - "arch": "", - "binaryNames": [ - "gettext-base" - ] - }, - "glib2.0": { - "name": "glib2.0", - "version": "2.56.4-0ubuntu0.18.04.6", - "arch": "", - "binaryNames": [ - "libglib2.0-0", - "libglib2.0-data" - ] - }, - "glibc": { - "name": "glibc", - "version": "2.27-3ubuntu1.4", - "arch": "", - "binaryNames": [ - "libc-bin", - "libc6", - "locales", - "multiarch-support" - ] - }, - "gmp": { - "name": "gmp", - "version": "2:6.1.2+dfsg-2", - "arch": "", - "binaryNames": [ - "libgmp10" - ] - }, - "gnupg2": { - "name": "gnupg2", - "version": "2.2.4-1ubuntu1.4", - "arch": "", - "binaryNames": [ - "dirmngr", - "gnupg", - "gnupg-l10n", - "gnupg-utils", - "gpg", - "gpg-agent", - "gpg-wks-client", - "gpg-wks-server", - "gpgconf", - "gpgsm", - "gpgv" - ] - }, - "gnutls28": { - "name": "gnutls28", - "version": "3.5.18-1ubuntu1.4", - "arch": "", - "binaryNames": [ - "libgnutls30" - ] - }, - "gobject-introspection": { - "name": "gobject-introspection", - "version": "1.56.1-1", - "arch": "", - "binaryNames": [ - "gir1.2-glib-2.0", - "libgirepository-1.0-1" - ] - }, - "gpm": { - "name": "gpm", - "version": "1.20.7-5", - "arch": "", - "binaryNames": [ - "libgpm2" - ] - }, - "groff": { - "name": "groff", - "version": "1.22.3-10", - "arch": "", - "binaryNames": [ - "groff-base" - ] - }, - "grub2": { - "name": "grub2", - "version": "2.02-2ubuntu8.21", - "arch": "", - "binaryNames": [ - "grub-common", - "grub-pc", - "grub-pc-bin", - "grub2-common" - ] - }, - "heimdal": { - "name": "heimdal", - "version": "7.5.0+dfsg-1", - "arch": "", - "binaryNames": [ - "libasn1-8-heimdal", - "libgssapi3-heimdal", - "libhcrypto4-heimdal", - "libheimbase1-heimdal", - "libheimntlm0-heimdal", - "libhx509-5-heimdal", - "libkrb5-26-heimdal", - "libroken18-heimdal", - "libwind0-heimdal" - ] - }, - "hyperlink": { - "name": "hyperlink", - "version": "17.3.1-2", - "arch": "", - "binaryNames": [ - "python3-hyperlink" - ] - }, - "icu": { - "name": "icu", - "version": "60.2-3ubuntu3.1", - "arch": "", - "binaryNames": [ - "libicu60" - ] - }, - "incremental": { - "name": "incremental", - "version": "16.10.1-3", - "arch": "", - "binaryNames": [ - "python3-incremental" - ] - }, - "iputils": { - "name": "iputils", - "version": "3:20161105-1ubuntu3", - "arch": "", - "binaryNames": [ - "iputils-ping", - "iputils-tracepath" - ] - }, - "isc-dhcp": { - "name": "isc-dhcp", - "version": "4.3.5-3ubuntu7.1", - "arch": "", - "binaryNames": [ - "isc-dhcp-client", - "isc-dhcp-common" - ] - }, - "jinja2": { - "name": "jinja2", - "version": "2.10-1ubuntu0.18.04.1", - "arch": "", - "binaryNames": [ - "python3-jinja2" - ] - }, - "json-c": { - "name": "json-c", - "version": "0.12.1-1.3ubuntu0.3", - "arch": "", - "binaryNames": [ - "libjson-c3" - ] - }, - "keyutils": { - "name": "keyutils", - "version": "1.5.9-9.2ubuntu2", - "arch": "", - "binaryNames": [ - "libkeyutils1" - ] - }, - "klibc": { - "name": "klibc", - "version": "2.0.4-9ubuntu2", - "arch": "", - "binaryNames": [ - "klibc-utils", - "libklibc" - ] - }, - "krb5": { - "name": "krb5", - "version": "1.16-2ubuntu0.2", - "arch": "", - "binaryNames": [ - "krb5-locales", - "libgssapi-krb5-2", - "libk5crypto3", - "libkrb5-3", - "libkrb5support0" - ] - }, - "landscape-client": { - "name": "landscape-client", - "version": "18.01-0ubuntu3.5", - "arch": "", - "binaryNames": [ - "landscape-common" - ] - }, - "language-selector": { - "name": "language-selector", - "version": "0.188.3", - "arch": "", - "binaryNames": [ - "language-selector-common" - ] - }, - "libassuan": { - "name": "libassuan", - "version": "2.5.1-2", - "arch": "", - "binaryNames": [ - "libassuan0" - ] - }, - "libbsd": { - "name": "libbsd", - "version": "0.8.7-1ubuntu0.1", - "arch": "", - "binaryNames": [ - "libbsd0" - ] - }, - "libcap-ng": { - "name": "libcap-ng", - "version": "0.7.7-3.1", - "arch": "", - "binaryNames": [ - "libcap-ng0" - ] - }, - "libdrm": { - "name": "libdrm", - "version": "2.4.101-2~18.04.1", - "arch": "", - "binaryNames": [ - "libdrm-common", - "libdrm2" - ] - }, - "libdumbnet": { - "name": "libdumbnet", - "version": "1.12-7build1", - "arch": "", - "binaryNames": [ - "libdumbnet1" - ] - }, - "libeatmydata": { - "name": "libeatmydata", - "version": "105-6", - "arch": "", - "binaryNames": [ - "eatmydata", - "libeatmydata1" - ] - }, - "libedit": { - "name": "libedit", - "version": "3.1-20170329-1", - "arch": "", - "binaryNames": [ - "libedit2" - ] - }, - "libestr": { - "name": "libestr", - "version": "0.1.10-2.1", - "arch": "", - "binaryNames": [ - "libestr0" - ] - }, - "libevent": { - "name": "libevent", - "version": "2.1.8-stable-4build1", - "arch": "", - "binaryNames": [ - "libevent-2.1-6" - ] - }, - "libfastjson": { - "name": "libfastjson", - "version": "0.99.8-2", - "arch": "", - "binaryNames": [ - "libfastjson4" - ] - }, - "libffi": { - "name": "libffi", - "version": "3.2.1-8", - "arch": "", - "binaryNames": [ - "libffi6" - ] - }, - "libgpg-error": { - "name": "libgpg-error", - "version": "1.27-6", - "arch": "", - "binaryNames": [ - "libgpg-error0" - ] - }, - "libidn": { - "name": "libidn", - "version": "1.33-2.1ubuntu1.2", - "arch": "", - "binaryNames": [ - "libidn11" - ] - }, - "libidn2": { - "name": "libidn2", - "version": "2.0.4-1.1ubuntu0.2", - "arch": "", - "binaryNames": [ - "libidn2-0" - ] - }, - "libksba": { - "name": "libksba", - "version": "1.3.5-2", - "arch": "", - "binaryNames": [ - "libksba8" - ] - }, - "libmnl": { - "name": "libmnl", - "version": "1.0.4-2", - "arch": "", - "binaryNames": [ - "libmnl0" - ] - }, - "libmspack": { - "name": "libmspack", - "version": "0.6-3ubuntu0.3", - "arch": "", - "binaryNames": [ - "libmspack0" - ] - }, - "libnetfilter-conntrack": { - "name": "libnetfilter-conntrack", - "version": "1.0.6-2", - "arch": "", - "binaryNames": [ - "libnetfilter-conntrack3" - ] - }, - "libnfnetlink": { - "name": "libnfnetlink", - "version": "1.0.1-3", - "arch": "", - "binaryNames": [ - "libnfnetlink0" - ] - }, - "libnih": { - "name": "libnih", - "version": "1.0.3-6ubuntu2", - "arch": "", - "binaryNames": [ - "libnih1" - ] - }, - "libpcap": { - "name": "libpcap", - "version": "1.8.1-6ubuntu1.18.04.2", - "arch": "", - "binaryNames": [ - "libpcap0.8" - ] - }, - "libpipeline": { - "name": "libpipeline", - "version": "1.5.0-1", - "arch": "", - "binaryNames": [ - "libpipeline1" - ] - }, - "libpng1.6": { - "name": "libpng1.6", - "version": "1.6.34-1ubuntu0.18.04.2", - "arch": "", - "binaryNames": [ - "libpng16-16" - ] - }, - "libpsl": { - "name": "libpsl", - "version": "0.19.1-5build1", - "arch": "", - "binaryNames": [ - "libpsl5" - ] - }, - "libseccomp": { - "name": "libseccomp", - "version": "2.4.3-1ubuntu3.18.04.3", - "arch": "", - "binaryNames": [ - "libseccomp2" - ] - }, - "libselinux": { - "name": "libselinux", - "version": "2.7-2build2", - "arch": "", - "binaryNames": [ - "libselinux1" - ] - }, - "libsemanage": { - "name": "libsemanage", - "version": "2.7-2build2", - "arch": "", - "binaryNames": [ - "libsemanage-common", - "libsemanage1" - ] - }, - "libsepol": { - "name": "libsepol", - "version": "2.7-1", - "arch": "", - "binaryNames": [ - "libsepol1" - ] - }, - "libsigsegv": { - "name": "libsigsegv", - "version": "2.12-1", - "arch": "", - "binaryNames": [ - "libsigsegv2" - ] - }, - "libunistring": { - "name": "libunistring", - "version": "0.9.9-0ubuntu2", - "arch": "", - "binaryNames": [ - "libunistring2" - ] - }, - "libunwind": { - "name": "libunwind", - "version": "1.2.1-8", - "arch": "", - "binaryNames": [ - "libunwind8" - ] - }, - "libusb-1.0": { - "name": "libusb-1.0", - "version": "2:1.0.21-2", - "arch": "", - "binaryNames": [ - "libusb-1.0-0" - ] - }, - "libutempter": { - "name": "libutempter", - "version": "1.1.6-3", - "arch": "", - "binaryNames": [ - "libutempter0" - ] - }, - "libx11": { - "name": "libx11", - "version": "2:1.6.4-3ubuntu0.3", - "arch": "", - "binaryNames": [ - "libx11-6", - "libx11-data" - ] - }, - "libxau": { - "name": "libxau", - "version": "1:1.0.8-1ubuntu1", - "arch": "", - "binaryNames": [ - "libxau6" - ] - }, - "libxcb": { - "name": "libxcb", - "version": "1.13-2~ubuntu18.04", - "arch": "", - "binaryNames": [ - "libxcb1" - ] - }, - "libxdmcp": { - "name": "libxdmcp", - "version": "1:1.1.2-3", - "arch": "", - "binaryNames": [ - "libxdmcp6" - ] - }, - "libxext": { - "name": "libxext", - "version": "2:1.3.3-1", - "arch": "", - "binaryNames": [ - "libxext6" - ] - }, - "libxmu": { - "name": "libxmu", - "version": "2:1.1.2-2", - "arch": "", - "binaryNames": [ - "libxmuu1" - ] - }, - "libxslt": { - "name": "libxslt", - "version": "1.1.29-5ubuntu0.2", - "arch": "", - "binaryNames": [ - "libxslt1.1" - ] - }, - "libyaml": { - "name": "libyaml", - "version": "0.1.7-2ubuntu3", - "arch": "", - "binaryNames": [ - "libyaml-0-2" - ] - }, - "libzstd": { - "name": "libzstd", - "version": "1.3.3+dfsg-2ubuntu1.1", - "arch": "", - "binaryNames": [ - "libzstd1" - ] - }, - "linux-atm": { - "name": "linux-atm", - "version": "1:2.5.1-2build1", - "arch": "", - "binaryNames": [ - "libatm1" - ] - }, - "linux-aws-5.4": { - "name": "linux-aws-5.4", - "version": "5.4.0-1038.40~18.04.1", - "arch": "", - "binaryNames": [ - "linux-aws-5.4-headers-5.4.0-1038", - "linux-headers-5.4.0-1038-aws", - "linux-image-5.4.0-1038-aws", - "linux-modules-5.4.0-1038-aws" - ] - }, - "linux-meta-aws-5.4": { - "name": "linux-meta-aws-5.4", - "version": "5.4.0.1038.22", - "arch": "", - "binaryNames": [ - "linux-aws", - "linux-headers-aws", - "linux-image-aws" - ] - }, - "lsb": { - "name": "lsb", - "version": "9.20170808ubuntu1", - "arch": "", - "binaryNames": [ - "lsb-base", - "lsb-release" - ] - }, - "lxc": { - "name": "lxc", - "version": "3.0.3-0ubuntu1~18.04.1", - "arch": "", - "binaryNames": [ - "liblxc-common", - "liblxc1" - ] - }, - "lz4": { - "name": "lz4", - "version": "0.0~r131-2ubuntu3", - "arch": "", - "binaryNames": [ - "liblz4-1" - ] - }, - "lzo2": { - "name": "lzo2", - "version": "2.08-1.2", - "arch": "", - "binaryNames": [ - "liblzo2-2" - ] - }, - "markupsafe": { - "name": "markupsafe", - "version": "1.0-1build1", - "arch": "", - "binaryNames": [ - "python3-markupsafe" - ] - }, - "mpdecimal": { - "name": "mpdecimal", - "version": "2.4.2-1ubuntu1", - "arch": "", - "binaryNames": [ - "libmpdec2" - ] - }, - "mpfr4": { - "name": "mpfr4", - "version": "4.0.1-1", - "arch": "", - "binaryNames": [ - "libmpfr6" - ] - }, - "mtr": { - "name": "mtr", - "version": "0.92-1", - "arch": "", - "binaryNames": [ - "mtr-tiny" - ] - }, - "ncurses": { - "name": "ncurses", - "version": "6.1-1ubuntu1.18.04", - "arch": "", - "binaryNames": [ - "libncurses5", - "libncursesw5", - "libtinfo5", - "ncurses-base", - "ncurses-bin", - "ncurses-term" - ] - }, - "netifaces": { - "name": "netifaces", - "version": "0.10.4-0.1build4", - "arch": "", - "binaryNames": [ - "python3-netifaces" - ] - }, - "netkit-ftp": { - "name": "netkit-ftp", - "version": "0.17-34", - "arch": "", - "binaryNames": [ - "ftp" - ] - }, - "netkit-telnet": { - "name": "netkit-telnet", - "version": "0.17-41", - "arch": "", - "binaryNames": [ - "telnet" - ] - }, - "nettle": { - "name": "nettle", - "version": "3.4-1", - "arch": "", - "binaryNames": [ - "libhogweed4", - "libnettle6" - ] - }, - "newt": { - "name": "newt", - "version": "0.52.20-1ubuntu1", - "arch": "", - "binaryNames": [ - "libnewt0.52", - "python3-newt", - "whiptail" - ] - }, - "nghttp2": { - "name": "nghttp2", - "version": "1.30.0-1ubuntu1", - "arch": "", - "binaryNames": [ - "libnghttp2-14" - ] - }, - "npth": { - "name": "npth", - "version": "1.5-3", - "arch": "", - "binaryNames": [ - "libnpth0" - ] - }, - "numactl": { - "name": "numactl", - "version": "2.0.11-2.1ubuntu0.1", - "arch": "", - "binaryNames": [ - "libnuma1" - ] - }, - "open-isns": { - "name": "open-isns", - "version": "0.97-2build1", - "arch": "", - "binaryNames": [ - "libisns0" - ] - }, - "openldap": { - "name": "openldap", - "version": "2.4.45+dfsg-1ubuntu1.10", - "arch": "", - "binaryNames": [ - "libldap-2.4-2", - "libldap-common" - ] - }, - "openssh": { - "name": "openssh", - "version": "1:7.6p1-4ubuntu0.3", - "arch": "", - "binaryNames": [ - "openssh-client", - "openssh-server", - "openssh-sftp-server" - ] - }, - "openssl1.0": { - "name": "openssl1.0", - "version": "1.0.2n-1ubuntu5.6", - "arch": "", - "binaryNames": [ - "libssl1.0.0" - ] - }, - "p11-kit": { - "name": "p11-kit", - "version": "0.23.9-2ubuntu0.1", - "arch": "", - "binaryNames": [ - "libp11-kit0" - ] - }, - "pam": { - "name": "pam", - "version": "1.1.8-3.6ubuntu2.18.04.2", - "arch": "", - "binaryNames": [ - "libpam-modules", - "libpam-modules-bin", - "libpam-runtime", - "libpam0g" - ] - }, - "pcre3": { - "name": "pcre3", - "version": "2:8.39-9", - "arch": "", - "binaryNames": [ - "libpcre3" - ] - }, - "pinentry": { - "name": "pinentry", - "version": "1.1.0-1", - "arch": "", - "binaryNames": [ - "pinentry-curses" - ] - }, - "popt": { - "name": "popt", - "version": "1.16-11", - "arch": "", - "binaryNames": [ - "libpopt0" - ] - }, - "pyasn1": { - "name": "pyasn1", - "version": "0.4.2-3", - "arch": "", - "binaryNames": [ - "python3-pyasn1" - ] - }, - "pygobject": { - "name": "pygobject", - "version": "3.26.1-2ubuntu1", - "arch": "", - "binaryNames": [ - "python3-gi" - ] - }, - "pyjwt": { - "name": "pyjwt", - "version": "1.5.3+ds1-1", - "arch": "", - "binaryNames": [ - "python3-jwt" - ] - }, - "pyopenssl": { - "name": "pyopenssl", - "version": "17.5.0-1ubuntu1", - "arch": "", - "binaryNames": [ - "python3-openssl" - ] - }, - "pyserial": { - "name": "pyserial", - "version": "3.4-2", - "arch": "", - "binaryNames": [ - "python3-serial" - ] - }, - "python-apt": { - "name": "python-apt", - "version": "1.6.5ubuntu0.5", - "arch": "", - "binaryNames": [ - "python-apt-common", - "python3-apt" - ] - }, - "python-attrs": { - "name": "python-attrs", - "version": "17.4.0-2", - "arch": "", - "binaryNames": [ - "python3-attr" - ] - }, - "python-certifi": { - "name": "python-certifi", - "version": "2018.1.18-2", - "arch": "", - "binaryNames": [ - "python3-certifi" - ] - }, - "python-cffi": { - "name": "python-cffi", - "version": "1.11.5-1", - "arch": "", - "binaryNames": [ - "python3-cffi-backend" - ] - }, - "python-click": { - "name": "python-click", - "version": "6.7-3", - "arch": "", - "binaryNames": [ - "python3-click" - ] - }, - "python-colorama": { - "name": "python-colorama", - "version": "0.3.7-1", - "arch": "", - "binaryNames": [ - "python3-colorama" - ] - }, - "python-cryptography": { - "name": "python-cryptography", - "version": "2.1.4-1ubuntu1.4", - "arch": "", - "binaryNames": [ - "python3-cryptography" - ] - }, - "python-debian": { - "name": "python-debian", - "version": "0.1.32", - "arch": "", - "binaryNames": [ - "python3-debian" - ] - }, - "python-httplib2": { - "name": "python-httplib2", - "version": "0.9.2+dfsg-1ubuntu0.3", - "arch": "", - "binaryNames": [ - "python3-httplib2" - ] - }, - "python-idna": { - "name": "python-idna", - "version": "2.6-1", - "arch": "", - "binaryNames": [ - "python3-idna" - ] - }, - "python-json-patch": { - "name": "python-json-patch", - "version": "1.19+really1.16-1fakesync1", - "arch": "", - "binaryNames": [ - "python3-jsonpatch" - ] - }, - "python-json-pointer": { - "name": "python-json-pointer", - "version": "1.10-1", - "arch": "", - "binaryNames": [ - "python3-json-pointer" - ] - }, - "python-jsonschema": { - "name": "python-jsonschema", - "version": "2.6.0-2", - "arch": "", - "binaryNames": [ - "python3-jsonschema" - ] - }, - "python-oauthlib": { - "name": "python-oauthlib", - "version": "2.0.6-1", - "arch": "", - "binaryNames": [ - "python3-oauthlib" - ] - }, - "python-pam": { - "name": "python-pam", - "version": "0.4.2-13.2ubuntu4", - "arch": "", - "binaryNames": [ - "python3-pam" - ] - }, - "python-pyasn1-modules": { - "name": "python-pyasn1-modules", - "version": "0.2.1-0.2", - "arch": "", - "binaryNames": [ - "python3-pyasn1-modules" - ] - }, - "python-requests-unixsocket": { - "name": "python-requests-unixsocket", - "version": "0.1.5-3", - "arch": "", - "binaryNames": [ - "python3-requests-unixsocket" - ] - }, - "python-service-identity": { - "name": "python-service-identity", - "version": "16.0.0-2", - "arch": "", - "binaryNames": [ - "python3-service-identity" - ] - }, - "python-setuptools": { - "name": "python-setuptools", - "version": "39.0.1-2", - "arch": "", - "binaryNames": [ - "python3-pkg-resources" - ] - }, - "python-systemd": { - "name": "python-systemd", - "version": "234-1build1", - "arch": "", - "binaryNames": [ - "python3-systemd" - ] - }, - "python-urllib3": { - "name": "python-urllib3", - "version": "1.22-1ubuntu0.18.04.2", - "arch": "", - "binaryNames": [ - "python3-urllib3" - ] - }, - "python3-defaults": { - "name": "python3-defaults", - "version": "3.6.7-1~18.04", - "arch": "", - "binaryNames": [ - "libpython3-stdlib", - "python3", - "python3-minimal" - ] - }, - "python3-stdlib-extensions": { - "name": "python3-stdlib-extensions", - "version": "3.6.9-1~18.04", - "arch": "", - "binaryNames": [ - "python3-gdbm" - ] - }, - "pyyaml": { - "name": "pyyaml", - "version": "3.12-1build2", - "arch": "", - "binaryNames": [ - "python3-yaml" - ] - }, - "readline": { - "name": "readline", - "version": "7.0-3", - "arch": "", - "binaryNames": [ - "libreadline7", - "readline-common" - ] - }, - "readline5": { - "name": "readline5", - "version": "5.2+dfsg-3build1", - "arch": "", - "binaryNames": [ - "libreadline5" - ] - }, - "requests": { - "name": "requests", - "version": "2.18.4-2ubuntu0.1", - "arch": "", - "binaryNames": [ - "python3-requests" - ] - }, - "rtmpdump": { - "name": "rtmpdump", - "version": "2.4+20151223.gitfa8646d.1-1", - "arch": "", - "binaryNames": [ - "librtmp1" - ] - }, - "shadow": { - "name": "shadow", - "version": "1:4.5-1ubuntu2", - "arch": "", - "binaryNames": [ - "login", - "passwd", - "uidmap" - ] - }, - "six": { - "name": "six", - "version": "1.11.0-2", - "arch": "", - "binaryNames": [ - "python3-six" - ] - }, - "slang2": { - "name": "slang2", - "version": "2.3.1a-3ubuntu1", - "arch": "", - "binaryNames": [ - "libslang2" - ] - }, - "software-properties": { - "name": "software-properties", - "version": "0.96.24.32.14", - "arch": "", - "binaryNames": [ - "python3-software-properties", - "software-properties-common" - ] - }, - "sqlite3": { - "name": "sqlite3", - "version": "3.22.0-1ubuntu0.4", - "arch": "", - "binaryNames": [ - "libsqlite3-0" - ] - }, - "sysvinit": { - "name": "sysvinit", - "version": "2.88dsf-59.10ubuntu1", - "arch": "", - "binaryNames": [ - "sysvinit-utils" - ] - }, - "tcp-wrappers": { - "name": "tcp-wrappers", - "version": "7.6.q-27", - "arch": "", - "binaryNames": [ - "libwrap0" - ] - }, - "texinfo": { - "name": "texinfo", - "version": "6.5.0.dfsg.1-2", - "arch": "", - "binaryNames": [ - "info", - "install-info" - ] - }, - "twisted": { - "name": "twisted", - "version": "17.9.0-2ubuntu0.1", - "arch": "", - "binaryNames": [ - "python3-twisted", - "python3-twisted-bin" - ] - }, - "ubuntu-meta": { - "name": "ubuntu-meta", - "version": "1.417.5", - "arch": "", - "binaryNames": [ - "ubuntu-minimal", - "ubuntu-server", - "ubuntu-standard" - ] - }, - "ubuntu-release-upgrader": { - "name": "ubuntu-release-upgrader", - "version": "1:18.04.42", - "arch": "", - "binaryNames": [ - "python3-distupgrade", - "ubuntu-release-upgrader-core" - ] - }, - "update-manager": { - "name": "update-manager", - "version": "1:18.04.11.13", - "arch": "", - "binaryNames": [ - "python3-update-manager", - "update-manager-core" - ] - }, - "update-notifier": { - "name": "update-notifier", - "version": "3.192.1.9", - "arch": "", - "binaryNames": [ - "update-notifier-common" - ] - }, - "xkeyboard-config": { - "name": "xkeyboard-config", - "version": "2.23.1-1ubuntu1.18.04.1", - "arch": "", - "binaryNames": [ - "xkb-data" - ] - }, - "xmlsec1": { - "name": "xmlsec1", - "version": "1.2.25-1build1", - "arch": "", - "binaryNames": [ - "libxmlsec1", - "libxmlsec1-openssl" - ] - }, - "zlib": { - "name": "zlib", - "version": "1:1.2.11.dfsg-0ubuntu2", - "arch": "", - "binaryNames": [ - "zlib1g" - ] - }, - "zope.interface": { - "name": "zope.interface", - "version": "4.3.2-1build2", - "arch": "", - "binaryNames": [ - "python3-zope.interface" - ] - } - }, - "constant": { - "scan": { - "logDir": "/var/log/vuls", - "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", - "default": { - "port": "22", - "scanMode": [ - "fast" - ] - }, - "servers": { - "ubuntu_1804": { - "serverName": "ubuntu_1804", - "user": "ubuntu", - "host": "13.231.130.70", - "port": "22", - "keyPath": "/home/ubuntu/.ssh/stg.pem", - "scanMode": [ - "fast-root" - ], - "wordpress": {} - } - }, - "cveDict": { - "Name": "cveDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", - "DebugSQL": false - }, - "ovalDict": { - "Name": "ovalDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", - "DebugSQL": false - }, - "gost": { - "Name": "gost", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", - "DebugSQL": false - }, - "exploit": { - "Name": "exploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", - "DebugSQL": false - }, - "metasploit": { - "Name": "metasploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", - "DebugSQL": false - } - }, - "report": { - "default": {}, - "cveDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "ovalDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "gost": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "exploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "metasploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - } - } - } -} \ No newline at end of file diff --git a/integration/data/ubuntu_2004.json b/integration/data/ubuntu_2004.json deleted file mode 100755 index 66e6b402..00000000 --- a/integration/data/ubuntu_2004.json +++ /dev/null @@ -1,8559 +0,0 @@ -{ - "jsonVersion": 4, - "lang": "", - "serverUUID": "", - "serverName": "ubuntu_2004", - "family": "ubuntu", - "release": "20.04", - "container": { - "containerID": "", - "name": "", - "image": "", - "type": "", - "uuid": "" - }, - "platform": { - "name": "aws", - "instanceID": "i-0fdb2d5d49b36f54d" - }, - "ipv4Addrs": [ - "192.168.0.25" - ], - "scannedAt": "2021-03-24T16:58:43.554959877+09:00", - "scanMode": "fast-root mode", - "scannedVersion": "v0.15.9", - "scannedRevision": "build-20210324_121008_fc3b438", - "scannedBy": "dev", - "scannedVia": "remote", - "scannedIpv4Addrs": [ - "172.21.0.1", - "172.19.0.1", - "172.18.0.1", - "172.17.0.1", - "172.20.0.1" - ], - "reportedAt": "0001-01-01T00:00:00Z", - "reportedVersion": "", - "reportedRevision": "", - "reportedBy": "", - "errors": [], - "warnings": [], - "scannedCves": {}, - "runningKernel": { - "release": "5.4.0-1038-aws", - "version": "", - "rebootRequired": false - }, - "packages": { - "accountsservice": { - "name": "accountsservice", - "version": "0.6.55-0ubuntu12~20.04.4", - "release": "", - "newVersion": "0.6.55-0ubuntu12~20.04.4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "442", - "name": "accounts-daemon" - } - ] - }, - "acpid": { - "name": "acpid", - "version": "1:2.0.32-1ubuntu1", - "release": "", - "newVersion": "1:2.0.32-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "443", - "name": "acpid" - } - ] - }, - "adduser": { - "name": "adduser", - "version": "3.118ubuntu2", - "release": "", - "newVersion": "3.118ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "alsa-topology-conf": { - "name": "alsa-topology-conf", - "version": "1.2.2-1", - "release": "", - "newVersion": "1.2.2-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "alsa-ucm-conf": { - "name": "alsa-ucm-conf", - "version": "1.2.2-1ubuntu0.5", - "release": "", - "newVersion": "1.2.2-1ubuntu0.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "amd64-microcode": { - "name": "amd64-microcode", - "version": "3.20191218.1ubuntu1", - "release": "", - "newVersion": "3.20191218.1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apparmor": { - "name": "apparmor", - "version": "2.13.3-7ubuntu5.1", - "release": "", - "newVersion": "2.13.3-7ubuntu5.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apport": { - "name": "apport", - "version": "2.20.11-0ubuntu27.16", - "release": "", - "newVersion": "2.20.11-0ubuntu27.16", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apport-symptoms": { - "name": "apport-symptoms", - "version": "0.23", - "release": "", - "newVersion": "0.23", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apt": { - "name": "apt", - "version": "2.0.4", - "release": "", - "newVersion": "2.0.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "apt-utils": { - "name": "apt-utils", - "version": "2.0.4", - "release": "", - "newVersion": "2.0.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "at": { - "name": "at", - "version": "3.1.23-1ubuntu1", - "release": "", - "newVersion": "3.1.23-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "474", - "name": "atd" - } - ] - }, - "base-files": { - "name": "base-files", - "version": "11ubuntu5.3", - "release": "", - "newVersion": "11ubuntu5.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "base-passwd": { - "name": "base-passwd", - "version": "3.5.47", - "release": "", - "newVersion": "3.5.47", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bash": { - "name": "bash", - "version": "5.0-6ubuntu1.1", - "release": "", - "newVersion": "5.0-6ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bash-completion": { - "name": "bash-completion", - "version": "1:2.10-1ubuntu1", - "release": "", - "newVersion": "1:2.10-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bc": { - "name": "bc", - "version": "1.07.1-2build1", - "release": "", - "newVersion": "1.07.1-2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bcache-tools": { - "name": "bcache-tools", - "version": "1.0.8-3ubuntu0.1", - "release": "", - "newVersion": "1.0.8-3ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bind9-dnsutils": { - "name": "bind9-dnsutils", - "version": "1:9.16.1-0ubuntu2.6", - "release": "", - "newVersion": "1:9.16.1-0ubuntu2.7", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "bind9-host": { - "name": "bind9-host", - "version": "1:9.16.1-0ubuntu2.6", - "release": "", - "newVersion": "1:9.16.1-0ubuntu2.7", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "bind9-libs": { - "name": "bind9-libs", - "version": "1:9.16.1-0ubuntu2.6", - "release": "", - "newVersion": "1:9.16.1-0ubuntu2.7", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "bolt": { - "name": "bolt", - "version": "0.8-4ubuntu1", - "release": "", - "newVersion": "0.8-4ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bsdmainutils": { - "name": "bsdmainutils", - "version": "11.1.2ubuntu3", - "release": "", - "newVersion": "11.1.2ubuntu3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bsdutils": { - "name": "bsdutils", - "version": "1:2.34-0.1ubuntu9.1", - "release": "", - "newVersion": "1:2.34-0.1ubuntu9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "btrfs-progs": { - "name": "btrfs-progs", - "version": "5.4.1-2", - "release": "", - "newVersion": "5.4.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "busybox-initramfs": { - "name": "busybox-initramfs", - "version": "1:1.30.1-4ubuntu6.3", - "release": "", - "newVersion": "1:1.30.1-4ubuntu6.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "busybox-static": { - "name": "busybox-static", - "version": "1:1.30.1-4ubuntu6.3", - "release": "", - "newVersion": "1:1.30.1-4ubuntu6.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "byobu": { - "name": "byobu", - "version": "5.133-0ubuntu1", - "release": "", - "newVersion": "5.133-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "bzip2": { - "name": "bzip2", - "version": "1.0.8-2", - "release": "", - "newVersion": "1.0.8-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ca-certificates": { - "name": "ca-certificates", - "version": "20210119~20.04.1", - "release": "", - "newVersion": "20210119~20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-guest-utils": { - "name": "cloud-guest-utils", - "version": "0.31-7-gd99b2d76-0ubuntu1", - "release": "", - "newVersion": "0.31-7-gd99b2d76-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-init": { - "name": "cloud-init", - "version": "20.4.1-0ubuntu1~20.04.1", - "release": "", - "newVersion": "20.4.1-0ubuntu1~20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-initramfs-copymods": { - "name": "cloud-initramfs-copymods", - "version": "0.45ubuntu1", - "release": "", - "newVersion": "0.45ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cloud-initramfs-dyn-netconf": { - "name": "cloud-initramfs-dyn-netconf", - "version": "0.45ubuntu1", - "release": "", - "newVersion": "0.45ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "command-not-found": { - "name": "command-not-found", - "version": "20.04.4", - "release": "", - "newVersion": "20.04.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "console-setup": { - "name": "console-setup", - "version": "1.194ubuntu3", - "release": "", - "newVersion": "1.194ubuntu3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "console-setup-linux": { - "name": "console-setup-linux", - "version": "1.194ubuntu3", - "release": "", - "newVersion": "1.194ubuntu3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "coreutils": { - "name": "coreutils", - "version": "8.30-3ubuntu2", - "release": "", - "newVersion": "8.30-3ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cpio": { - "name": "cpio", - "version": "2.13+dfsg-2", - "release": "", - "newVersion": "2.13+dfsg-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cron": { - "name": "cron", - "version": "3.0pl1-136ubuntu1", - "release": "", - "newVersion": "3.0pl1-136ubuntu1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "450", - "name": "cron" - } - ] - }, - "cryptsetup": { - "name": "cryptsetup", - "version": "2:2.2.2-3ubuntu2.3", - "release": "", - "newVersion": "2:2.2.2-3ubuntu2.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cryptsetup-bin": { - "name": "cryptsetup-bin", - "version": "2:2.2.2-3ubuntu2.3", - "release": "", - "newVersion": "2:2.2.2-3ubuntu2.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cryptsetup-initramfs": { - "name": "cryptsetup-initramfs", - "version": "2:2.2.2-3ubuntu2.3", - "release": "", - "newVersion": "2:2.2.2-3ubuntu2.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "cryptsetup-run": { - "name": "cryptsetup-run", - "version": "2:2.2.2-3ubuntu2.3", - "release": "", - "newVersion": "2:2.2.2-3ubuntu2.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "curl": { - "name": "curl", - "version": "7.68.0-1ubuntu2.4", - "release": "", - "newVersion": "7.68.0-1ubuntu2.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dash": { - "name": "dash", - "version": "0.5.10.2-6", - "release": "", - "newVersion": "0.5.10.2-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dbus": { - "name": "dbus", - "version": "1.12.16-2ubuntu2.1", - "release": "", - "newVersion": "1.12.16-2ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "451", - "name": "dbus-daemon" - } - ] - }, - "dbus-user-session": { - "name": "dbus-user-session", - "version": "1.12.16-2ubuntu2.1", - "release": "", - "newVersion": "1.12.16-2ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dconf-gsettings-backend": { - "name": "dconf-gsettings-backend", - "version": "0.36.0-1", - "release": "", - "newVersion": "0.36.0-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "442", - "name": "accounts-daemon" - }, - { - "pid": "617", - "name": "polkitd" - } - ] - }, - "dconf-service": { - "name": "dconf-service", - "version": "0.36.0-1", - "release": "", - "newVersion": "0.36.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dctrl-tools": { - "name": "dctrl-tools", - "version": "2.24-3", - "release": "", - "newVersion": "2.24-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debconf": { - "name": "debconf", - "version": "1.5.73", - "release": "", - "newVersion": "1.5.73", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debconf-i18n": { - "name": "debconf-i18n", - "version": "1.5.73", - "release": "", - "newVersion": "1.5.73", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debian-goodies": { - "name": "debian-goodies", - "version": "0.84", - "release": "", - "newVersion": "0.84", - "newRelease": "", - "arch": "", - "repository": "" - }, - "debianutils": { - "name": "debianutils", - "version": "4.9.1", - "release": "", - "newVersion": "4.9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "diffutils": { - "name": "diffutils", - "version": "1:3.7-3", - "release": "", - "newVersion": "1:3.7-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dirmngr": { - "name": "dirmngr", - "version": "2.2.19-3ubuntu2.1", - "release": "", - "newVersion": "2.2.19-3ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "distro-info-data": { - "name": "distro-info-data", - "version": "0.43ubuntu1.4", - "release": "", - "newVersion": "0.43ubuntu1.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dmeventd": { - "name": "dmeventd", - "version": "2:1.02.167-1ubuntu1", - "release": "", - "newVersion": "2:1.02.167-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dmidecode": { - "name": "dmidecode", - "version": "3.2-3", - "release": "", - "newVersion": "3.2-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dmsetup": { - "name": "dmsetup", - "version": "2:1.02.167-1ubuntu1", - "release": "", - "newVersion": "2:1.02.167-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dosfstools": { - "name": "dosfstools", - "version": "4.1-2", - "release": "", - "newVersion": "4.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "dpkg": { - "name": "dpkg", - "version": "1.19.7ubuntu3", - "release": "", - "newVersion": "1.19.7ubuntu3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "e2fsprogs": { - "name": "e2fsprogs", - "version": "1.45.5-2ubuntu1", - "release": "", - "newVersion": "1.45.5-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "eatmydata": { - "name": "eatmydata", - "version": "105-7", - "release": "", - "newVersion": "105-7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ec2-hibinit-agent": { - "name": "ec2-hibinit-agent", - "version": "1.0.0-0ubuntu9.1", - "release": "", - "newVersion": "1.0.0-0ubuntu9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ec2-instance-connect": { - "name": "ec2-instance-connect", - "version": "1.1.12+dfsg1-0ubuntu3.20.04.0", - "release": "", - "newVersion": "1.1.12+dfsg1-0ubuntu3.20.04.0", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ed": { - "name": "ed", - "version": "1.16-1", - "release": "", - "newVersion": "1.16-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "eject": { - "name": "eject", - "version": "2.1.5+deb1+cvs20081104-14", - "release": "", - "newVersion": "2.1.5+deb1+cvs20081104-14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "elfutils": { - "name": "elfutils", - "version": "0.176-1.1build1", - "release": "", - "newVersion": "0.176-1.1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ethtool": { - "name": "ethtool", - "version": "1:5.4-1", - "release": "", - "newVersion": "1:5.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "fdisk": { - "name": "fdisk", - "version": "2.34-0.1ubuntu9.1", - "release": "", - "newVersion": "2.34-0.1ubuntu9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "file": { - "name": "file", - "version": "1:5.38-4", - "release": "", - "newVersion": "1:5.38-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "finalrd": { - "name": "finalrd", - "version": "6~ubuntu20.04.1", - "release": "", - "newVersion": "6~ubuntu20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "findutils": { - "name": "findutils", - "version": "4.7.0-1ubuntu1", - "release": "", - "newVersion": "4.7.0-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "fonts-ubuntu-console": { - "name": "fonts-ubuntu-console", - "version": "0.83-4ubuntu1", - "release": "", - "newVersion": "0.83-4ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "friendly-recovery": { - "name": "friendly-recovery", - "version": "0.2.41ubuntu0.20.04.1", - "release": "", - "newVersion": "0.2.41ubuntu0.20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ftp": { - "name": "ftp", - "version": "0.17-34.1", - "release": "", - "newVersion": "0.17-34.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "fuse": { - "name": "fuse", - "version": "2.9.9-3", - "release": "", - "newVersion": "2.9.9-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "fwupd": { - "name": "fwupd", - "version": "1.3.11-1~focal1", - "release": "", - "newVersion": "1.3.11-1~focal1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "fwupd-signed": { - "name": "fwupd-signed", - "version": "1.27.1ubuntu2+1.3.11-1~focal1", - "release": "", - "newVersion": "1.27.1ubuntu2+1.3.11-1~focal1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gawk": { - "name": "gawk", - "version": "1:5.0.1+dfsg-1", - "release": "", - "newVersion": "1:5.0.1+dfsg-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gcc-10-base": { - "name": "gcc-10-base", - "version": "10.2.0-5ubuntu1~20.04", - "release": "", - "newVersion": "10.2.0-5ubuntu1~20.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gdisk": { - "name": "gdisk", - "version": "1.0.5-1", - "release": "", - "newVersion": "1.0.5-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gettext-base": { - "name": "gettext-base", - "version": "0.19.8.1-10build1", - "release": "", - "newVersion": "0.19.8.1-10build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gir1.2-glib-2.0": { - "name": "gir1.2-glib-2.0", - "version": "1.64.1-1~ubuntu20.04.1", - "release": "", - "newVersion": "1.64.1-1~ubuntu20.04.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "626", - "name": "unattended-upgr" - } - ] - }, - "gir1.2-packagekitglib-1.0": { - "name": "gir1.2-packagekitglib-1.0", - "version": "1.1.13-2ubuntu1.1", - "release": "", - "newVersion": "1.1.13-2ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "git": { - "name": "git", - "version": "1:2.25.1-1ubuntu3", - "release": "", - "newVersion": "1:2.25.1-1ubuntu3.1", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "git-man": { - "name": "git-man", - "version": "1:2.25.1-1ubuntu3", - "release": "", - "newVersion": "1:2.25.1-1ubuntu3.1", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "glib-networking": { - "name": "glib-networking", - "version": "2.64.2-1ubuntu0.1", - "release": "", - "newVersion": "2.64.2-1ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "glib-networking-common": { - "name": "glib-networking-common", - "version": "2.64.2-1ubuntu0.1", - "release": "", - "newVersion": "2.64.2-1ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "glib-networking-services": { - "name": "glib-networking-services", - "version": "2.64.2-1ubuntu0.1", - "release": "", - "newVersion": "2.64.2-1ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gnupg": { - "name": "gnupg", - "version": "2.2.19-3ubuntu2.1", - "release": "", - "newVersion": "2.2.19-3ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gnupg-l10n": { - "name": "gnupg-l10n", - "version": "2.2.19-3ubuntu2.1", - "release": "", - "newVersion": "2.2.19-3ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gnupg-utils": { - "name": "gnupg-utils", - "version": "2.2.19-3ubuntu2.1", - "release": "", - "newVersion": "2.2.19-3ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg": { - "name": "gpg", - "version": "2.2.19-3ubuntu2.1", - "release": "", - "newVersion": "2.2.19-3ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg-agent": { - "name": "gpg-agent", - "version": "2.2.19-3ubuntu2.1", - "release": "", - "newVersion": "2.2.19-3ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg-wks-client": { - "name": "gpg-wks-client", - "version": "2.2.19-3ubuntu2.1", - "release": "", - "newVersion": "2.2.19-3ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpg-wks-server": { - "name": "gpg-wks-server", - "version": "2.2.19-3ubuntu2.1", - "release": "", - "newVersion": "2.2.19-3ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpgconf": { - "name": "gpgconf", - "version": "2.2.19-3ubuntu2.1", - "release": "", - "newVersion": "2.2.19-3ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpgsm": { - "name": "gpgsm", - "version": "2.2.19-3ubuntu2.1", - "release": "", - "newVersion": "2.2.19-3ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gpgv": { - "name": "gpgv", - "version": "2.2.19-3ubuntu2.1", - "release": "", - "newVersion": "2.2.19-3ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grep": { - "name": "grep", - "version": "3.4-1", - "release": "", - "newVersion": "3.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "groff-base": { - "name": "groff-base", - "version": "1.22.4-4build1", - "release": "", - "newVersion": "1.22.4-4build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub-common": { - "name": "grub-common", - "version": "2.04-1ubuntu26.9", - "release": "", - "newVersion": "2.04-1ubuntu26.9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub-gfxpayload-lists": { - "name": "grub-gfxpayload-lists", - "version": "0.7", - "release": "", - "newVersion": "0.7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub-pc": { - "name": "grub-pc", - "version": "2.04-1ubuntu26.9", - "release": "", - "newVersion": "2.04-1ubuntu26.9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub-pc-bin": { - "name": "grub-pc-bin", - "version": "2.04-1ubuntu26.9", - "release": "", - "newVersion": "2.04-1ubuntu26.9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "grub2-common": { - "name": "grub2-common", - "version": "2.04-1ubuntu26.9", - "release": "", - "newVersion": "2.04-1ubuntu26.9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gsettings-desktop-schemas": { - "name": "gsettings-desktop-schemas", - "version": "3.36.0-1ubuntu1", - "release": "", - "newVersion": "3.36.0-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "gzip": { - "name": "gzip", - "version": "1.10-0ubuntu4", - "release": "", - "newVersion": "1.10-0ubuntu4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "hdparm": { - "name": "hdparm", - "version": "9.58+ds-4", - "release": "", - "newVersion": "9.58+ds-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "hibagent": { - "name": "hibagent", - "version": "1.0.1-0ubuntu1", - "release": "", - "newVersion": "1.0.1-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "hostname": { - "name": "hostname", - "version": "3.23", - "release": "", - "newVersion": "3.23", - "newRelease": "", - "arch": "", - "repository": "" - }, - "htop": { - "name": "htop", - "version": "2.2.0-2build1", - "release": "", - "newVersion": "2.2.0-2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "info": { - "name": "info", - "version": "6.7.0.dfsg.2-5", - "release": "", - "newVersion": "6.7.0.dfsg.2-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "init": { - "name": "init", - "version": "1.57", - "release": "", - "newVersion": "1.57", - "newRelease": "", - "arch": "", - "repository": "" - }, - "init-system-helpers": { - "name": "init-system-helpers", - "version": "1.57", - "release": "", - "newVersion": "1.57", - "newRelease": "", - "arch": "", - "repository": "" - }, - "initramfs-tools": { - "name": "initramfs-tools", - "version": "0.136ubuntu6.3", - "release": "", - "newVersion": "0.136ubuntu6.4", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "initramfs-tools-bin": { - "name": "initramfs-tools-bin", - "version": "0.136ubuntu6.3", - "release": "", - "newVersion": "0.136ubuntu6.4", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "initramfs-tools-core": { - "name": "initramfs-tools-core", - "version": "0.136ubuntu6.3", - "release": "", - "newVersion": "0.136ubuntu6.4", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "install-info": { - "name": "install-info", - "version": "6.7.0.dfsg.2-5", - "release": "", - "newVersion": "6.7.0.dfsg.2-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "intel-microcode": { - "name": "intel-microcode", - "version": "3.20201110.0ubuntu0.20.04.2", - "release": "", - "newVersion": "3.20201110.0ubuntu0.20.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iproute2": { - "name": "iproute2", - "version": "5.5.0-1ubuntu1", - "release": "", - "newVersion": "5.5.0-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iptables": { - "name": "iptables", - "version": "1.8.4-3ubuntu2", - "release": "", - "newVersion": "1.8.4-3ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iputils-ping": { - "name": "iputils-ping", - "version": "3:20190709-3", - "release": "", - "newVersion": "3:20190709-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iputils-tracepath": { - "name": "iputils-tracepath", - "version": "3:20190709-3", - "release": "", - "newVersion": "3:20190709-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "irqbalance": { - "name": "irqbalance", - "version": "1.6.0-3ubuntu1", - "release": "", - "newVersion": "1.6.0-3ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "isc-dhcp-client": { - "name": "isc-dhcp-client", - "version": "4.4.1-2.1ubuntu5", - "release": "", - "newVersion": "4.4.1-2.1ubuntu5.20.04.1", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "isc-dhcp-common": { - "name": "isc-dhcp-common", - "version": "4.4.1-2.1ubuntu5", - "release": "", - "newVersion": "4.4.1-2.1ubuntu5.20.04.1", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "iso-codes": { - "name": "iso-codes", - "version": "4.4-1", - "release": "", - "newVersion": "4.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "iucode-tool": { - "name": "iucode-tool", - "version": "2.3.1-1", - "release": "", - "newVersion": "2.3.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "kbd": { - "name": "kbd", - "version": "2.0.4-4ubuntu2", - "release": "", - "newVersion": "2.0.4-4ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "keyboard-configuration": { - "name": "keyboard-configuration", - "version": "1.194ubuntu3", - "release": "", - "newVersion": "1.194ubuntu3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "klibc-utils": { - "name": "klibc-utils", - "version": "2.0.7-1ubuntu5", - "release": "", - "newVersion": "2.0.7-1ubuntu5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "kmod": { - "name": "kmod", - "version": "27-1ubuntu2", - "release": "", - "newVersion": "27-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "kpartx": { - "name": "kpartx", - "version": "0.8.3-1ubuntu2", - "release": "", - "newVersion": "0.8.3-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "krb5-locales": { - "name": "krb5-locales", - "version": "1.17-6ubuntu4.1", - "release": "", - "newVersion": "1.17-6ubuntu4.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "landscape-common": { - "name": "landscape-common", - "version": "19.12-0ubuntu4.1", - "release": "", - "newVersion": "19.12-0ubuntu4.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "language-selector-common": { - "name": "language-selector-common", - "version": "0.204.2", - "release": "", - "newVersion": "0.204.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "less": { - "name": "less", - "version": "551-1ubuntu0.1", - "release": "", - "newVersion": "551-1ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libaccountsservice0": { - "name": "libaccountsservice0", - "version": "0.6.55-0ubuntu12~20.04.4", - "release": "", - "newVersion": "0.6.55-0ubuntu12~20.04.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libacl1": { - "name": "libacl1", - "version": "2.2.53-6", - "release": "", - "newVersion": "2.2.53-6", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "191", - "name": "systemd-udevd" - }, - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "libaio1": { - "name": "libaio1", - "version": "0.3.112-5", - "release": "", - "newVersion": "0.3.112-5", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "270", - "name": "multipathd" - } - ] - }, - "libapparmor1": { - "name": "libapparmor1", - "version": "2.13.3-7ubuntu5.1", - "release": "", - "newVersion": "2.13.3-7ubuntu5.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "451", - "name": "dbus-daemon" - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "libappstream4": { - "name": "libappstream4", - "version": "0.12.10-2", - "release": "", - "newVersion": "0.12.10-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "libapt-pkg6.0": { - "name": "libapt-pkg6.0", - "version": "2.0.4", - "release": "", - "newVersion": "2.0.4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "626", - "name": "unattended-upgr" - } - ] - }, - "libarchive13": { - "name": "libarchive13", - "version": "3.4.0-2ubuntu1", - "release": "", - "newVersion": "3.4.0-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libargon2-1": { - "name": "libargon2-1", - "version": "0~20171227-0.2", - "release": "", - "newVersion": "0~20171227-0.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "libasm1": { - "name": "libasm1", - "version": "0.176-1.1build1", - "release": "", - "newVersion": "0.176-1.1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libasn1-8-heimdal": { - "name": "libasn1-8-heimdal", - "version": "7.7.0+dfsg-1ubuntu1", - "release": "", - "newVersion": "7.7.0+dfsg-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libasound2": { - "name": "libasound2", - "version": "1.2.2-2.1ubuntu2.3", - "release": "", - "newVersion": "1.2.2-2.1ubuntu2.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libasound2-data": { - "name": "libasound2-data", - "version": "1.2.2-2.1ubuntu2.3", - "release": "", - "newVersion": "1.2.2-2.1ubuntu2.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libassuan0": { - "name": "libassuan0", - "version": "2.5.3-7ubuntu2", - "release": "", - "newVersion": "2.5.3-7ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libatm1": { - "name": "libatm1", - "version": "1:2.5.1-4", - "release": "", - "newVersion": "1:2.5.1-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libattr1": { - "name": "libattr1", - "version": "1:2.4.48-5", - "release": "", - "newVersion": "1:2.4.48-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libaudit-common": { - "name": "libaudit-common", - "version": "1:2.8.5-2ubuntu6", - "release": "", - "newVersion": "1:2.8.5-2ubuntu6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libaudit1": { - "name": "libaudit1", - "version": "1:2.8.5-2ubuntu6", - "release": "", - "newVersion": "1:2.8.5-2ubuntu6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libblkid1": { - "name": "libblkid1", - "version": "2.34-0.1ubuntu9.1", - "release": "", - "newVersion": "2.34-0.1ubuntu9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libbrotli1": { - "name": "libbrotli1", - "version": "1.0.7-6ubuntu0.1", - "release": "", - "newVersion": "1.0.7-6ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "libbsd0": { - "name": "libbsd0", - "version": "0.10.0-1", - "release": "", - "newVersion": "0.10.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libbz2-1.0": { - "name": "libbz2-1.0", - "version": "1.0.8-2", - "release": "", - "newVersion": "1.0.8-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libc-bin": { - "name": "libc-bin", - "version": "2.31-0ubuntu9.2", - "release": "", - "newVersion": "2.31-0ubuntu9.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "2287", - "name": "bash" - }, - { - "pid": "626", - "name": "unattended-upgr" - }, - { - "pid": "596", - "name": "agetty" - }, - { - "pid": "584", - "name": "agetty" - }, - { - "pid": "442", - "name": "accounts-daemon" - }, - { - "pid": "450", - "name": "cron" - } - ] - }, - "libc6": { - "name": "libc6", - "version": "2.31-0ubuntu9.2", - "release": "", - "newVersion": "2.31-0ubuntu9.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "2287", - "name": "bash" - }, - { - "pid": "2276", - "name": "bash" - }, - { - "pid": "626", - "name": "unattended-upgr" - }, - { - "pid": "596", - "name": "agetty" - }, - { - "pid": "584", - "name": "agetty" - }, - { - "pid": "442", - "name": "accounts-daemon" - }, - { - "pid": "617", - "name": "polkitd" - }, - { - "pid": "450", - "name": "cron" - }, - { - "pid": "2286", - "name": "su" - } - ] - }, - "libcanberra0": { - "name": "libcanberra0", - "version": "0.30-7ubuntu1", - "release": "", - "newVersion": "0.30-7ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcap-ng0": { - "name": "libcap-ng0", - "version": "0.7.9-2.1build1", - "release": "", - "newVersion": "0.7.9-2.1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcap2": { - "name": "libcap2", - "version": "1:2.32-1", - "release": "", - "newVersion": "1:2.32-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcap2-bin": { - "name": "libcap2-bin", - "version": "1:2.32-1", - "release": "", - "newVersion": "1:2.32-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcbor0.6": { - "name": "libcbor0.6", - "version": "0.6.0-0ubuntu1", - "release": "", - "newVersion": "0.6.0-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcom-err2": { - "name": "libcom-err2", - "version": "1.45.5-2ubuntu1", - "release": "", - "newVersion": "1.45.5-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcrypt1": { - "name": "libcrypt1", - "version": "1:4.4.10-10ubuntu4", - "release": "", - "newVersion": "1:4.4.10-10ubuntu4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcryptsetup12": { - "name": "libcryptsetup12", - "version": "2:2.2.2-3ubuntu2.3", - "release": "", - "newVersion": "2:2.2.2-3ubuntu2.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcurl3-gnutls": { - "name": "libcurl3-gnutls", - "version": "7.68.0-1ubuntu2.4", - "release": "", - "newVersion": "7.68.0-1ubuntu2.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libcurl4": { - "name": "libcurl4", - "version": "7.68.0-1ubuntu2.4", - "release": "", - "newVersion": "7.68.0-1ubuntu2.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdb5.3": { - "name": "libdb5.3", - "version": "5.3.28+dfsg1-0.6ubuntu2", - "release": "", - "newVersion": "5.3.28+dfsg1-0.6ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdbus-1-3": { - "name": "libdbus-1-3", - "version": "1.12.16-2ubuntu2.1", - "release": "", - "newVersion": "1.12.16-2ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdconf1": { - "name": "libdconf1", - "version": "0.36.0-1", - "release": "", - "newVersion": "0.36.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdebconfclient0": { - "name": "libdebconfclient0", - "version": "0.251ubuntu1", - "release": "", - "newVersion": "0.251ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdevmapper-event1.02.1": { - "name": "libdevmapper-event1.02.1", - "version": "2:1.02.167-1ubuntu1", - "release": "", - "newVersion": "2:1.02.167-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdevmapper1.02.1": { - "name": "libdevmapper1.02.1", - "version": "2:1.02.167-1ubuntu1", - "release": "", - "newVersion": "2:1.02.167-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdns-export1109": { - "name": "libdns-export1109", - "version": "1:9.11.16+dfsg-3~ubuntu1", - "release": "", - "newVersion": "1:9.11.16+dfsg-3~ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdrm-common": { - "name": "libdrm-common", - "version": "2.4.102-1ubuntu1~20.04.1", - "release": "", - "newVersion": "2.4.102-1ubuntu1~20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdrm2": { - "name": "libdrm2", - "version": "2.4.102-1ubuntu1~20.04.1", - "release": "", - "newVersion": "2.4.102-1ubuntu1~20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libdw1": { - "name": "libdw1", - "version": "0.176-1.1build1", - "release": "", - "newVersion": "0.176-1.1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libeatmydata1": { - "name": "libeatmydata1", - "version": "105-7", - "release": "", - "newVersion": "105-7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libedit2": { - "name": "libedit2", - "version": "3.1-20191231-1", - "release": "", - "newVersion": "3.1-20191231-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libefiboot1": { - "name": "libefiboot1", - "version": "37-2ubuntu2.2", - "release": "", - "newVersion": "37-2ubuntu2.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libefivar1": { - "name": "libefivar1", - "version": "37-2ubuntu2.2", - "release": "", - "newVersion": "37-2ubuntu2.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libelf1": { - "name": "libelf1", - "version": "0.176-1.1build1", - "release": "", - "newVersion": "0.176-1.1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liberror-perl": { - "name": "liberror-perl", - "version": "0.17029-1", - "release": "", - "newVersion": "0.17029-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libestr0": { - "name": "libestr0", - "version": "0.1.10-2.1", - "release": "", - "newVersion": "0.1.10-2.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "464", - "name": "rsyslogd" - } - ] - }, - "libevent-2.1-7": { - "name": "libevent-2.1-7", - "version": "2.1.11-stable-1", - "release": "", - "newVersion": "2.1.11-stable-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libexpat1": { - "name": "libexpat1", - "version": "2.2.9-1build1", - "release": "", - "newVersion": "2.2.9-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libext2fs2": { - "name": "libext2fs2", - "version": "1.45.5-2ubuntu1", - "release": "", - "newVersion": "1.45.5-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfastjson4": { - "name": "libfastjson4", - "version": "0.99.8-2", - "release": "", - "newVersion": "0.99.8-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "464", - "name": "rsyslogd" - } - ] - }, - "libfdisk1": { - "name": "libfdisk1", - "version": "2.34-0.1ubuntu9.1", - "release": "", - "newVersion": "2.34-0.1ubuntu9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libffi7": { - "name": "libffi7", - "version": "3.3-4", - "release": "", - "newVersion": "3.3-4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "626", - "name": "unattended-upgr" - }, - { - "pid": "442", - "name": "accounts-daemon" - }, - { - "pid": "617", - "name": "polkitd" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - } - ] - }, - "libfido2-1": { - "name": "libfido2-1", - "version": "1.3.1-1ubuntu2", - "release": "", - "newVersion": "1.3.1-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfile-which-perl": { - "name": "libfile-which-perl", - "version": "1.23-1", - "release": "", - "newVersion": "1.23-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfl2": { - "name": "libfl2", - "version": "2.6.4-6.2", - "release": "", - "newVersion": "2.6.4-6.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfreetype6": { - "name": "libfreetype6", - "version": "2.10.1-2ubuntu0.1", - "release": "", - "newVersion": "2.10.1-2ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfribidi0": { - "name": "libfribidi0", - "version": "1.0.8-2", - "release": "", - "newVersion": "1.0.8-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfuse2": { - "name": "libfuse2", - "version": "2.9.9-3", - "release": "", - "newVersion": "2.9.9-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfwupd2": { - "name": "libfwupd2", - "version": "1.3.11-1~focal1", - "release": "", - "newVersion": "1.3.11-1~focal1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libfwupdplugin1": { - "name": "libfwupdplugin1", - "version": "1.3.11-1~focal1", - "release": "", - "newVersion": "1.3.11-1~focal1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgcab-1.0-0": { - "name": "libgcab-1.0-0", - "version": "1.4-1", - "release": "", - "newVersion": "1.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgcc-s1": { - "name": "libgcc-s1", - "version": "10.2.0-5ubuntu1~20.04", - "release": "", - "newVersion": "10.2.0-5ubuntu1~20.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgcrypt20": { - "name": "libgcrypt20", - "version": "1.8.5-5ubuntu1", - "release": "", - "newVersion": "1.8.5-5ubuntu1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "270", - "name": "multipathd" - }, - { - "pid": "464", - "name": "rsyslogd" - }, - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "626", - "name": "unattended-upgr" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "725", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "1410", - "name": "sshd" - }, - { - "pid": "2196", - "name": "sshd" - }, - { - "pid": "1321", - "name": "sshd" - }, - { - "pid": "2275", - "name": "sshd" - }, - { - "pid": "451", - "name": "dbus-daemon" - }, - { - "pid": "442", - "name": "accounts-daemon" - }, - { - "pid": "617", - "name": "polkitd" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "libgdbm-compat4": { - "name": "libgdbm-compat4", - "version": "1.18.1-5", - "release": "", - "newVersion": "1.18.1-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgdbm6": { - "name": "libgdbm6", - "version": "1.18.1-5", - "release": "", - "newVersion": "1.18.1-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgirepository-1.0-1": { - "name": "libgirepository-1.0-1", - "version": "1.64.1-1~ubuntu20.04.1", - "release": "", - "newVersion": "1.64.1-1~ubuntu20.04.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "626", - "name": "unattended-upgr" - } - ] - }, - "libglib2.0-0": { - "name": "libglib2.0-0", - "version": "2.64.6-1~ubuntu20.04.1", - "release": "", - "newVersion": "2.64.6-1~ubuntu20.04.3", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "626", - "name": "unattended-upgr" - }, - { - "pid": "442", - "name": "accounts-daemon" - }, - { - "pid": "617", - "name": "polkitd" - } - ] - }, - "libglib2.0-bin": { - "name": "libglib2.0-bin", - "version": "2.64.6-1~ubuntu20.04.1", - "release": "", - "newVersion": "2.64.6-1~ubuntu20.04.3", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "libglib2.0-data": { - "name": "libglib2.0-data", - "version": "2.64.6-1~ubuntu20.04.1", - "release": "", - "newVersion": "2.64.6-1~ubuntu20.04.3", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "libgmp10": { - "name": "libgmp10", - "version": "2:6.2.0+dfsg-4", - "release": "", - "newVersion": "2:6.2.0+dfsg-4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - } - ] - }, - "libgnutls30": { - "name": "libgnutls30", - "version": "3.6.13-2ubuntu1.3", - "release": "", - "newVersion": "3.6.13-2ubuntu1.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - } - ] - }, - "libgpg-error0": { - "name": "libgpg-error0", - "version": "1.37-1", - "release": "", - "newVersion": "1.37-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgpgme11": { - "name": "libgpgme11", - "version": "1.13.1-7ubuntu2", - "release": "", - "newVersion": "1.13.1-7ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgpm2": { - "name": "libgpm2", - "version": "1.20.7-5", - "release": "", - "newVersion": "1.20.7-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgssapi-krb5-2": { - "name": "libgssapi-krb5-2", - "version": "1.17-6ubuntu4.1", - "release": "", - "newVersion": "1.17-6ubuntu4.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "725", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1410", - "name": "sshd" - }, - { - "pid": "2196", - "name": "sshd" - }, - { - "pid": "1321", - "name": "sshd" - }, - { - "pid": "2275", - "name": "sshd" - } - ] - }, - "libgssapi3-heimdal": { - "name": "libgssapi3-heimdal", - "version": "7.7.0+dfsg-1ubuntu1", - "release": "", - "newVersion": "7.7.0+dfsg-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgstreamer1.0-0": { - "name": "libgstreamer1.0-0", - "version": "1.16.2-2", - "release": "", - "newVersion": "1.16.2-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "libgudev-1.0-0": { - "name": "libgudev-1.0-0", - "version": "1:233-1", - "release": "", - "newVersion": "1:233-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libgusb2": { - "name": "libgusb2", - "version": "0.3.4-0.1", - "release": "", - "newVersion": "0.3.4-0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libhcrypto4-heimdal": { - "name": "libhcrypto4-heimdal", - "version": "7.7.0+dfsg-1ubuntu1", - "release": "", - "newVersion": "7.7.0+dfsg-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libheimbase1-heimdal": { - "name": "libheimbase1-heimdal", - "version": "7.7.0+dfsg-1ubuntu1", - "release": "", - "newVersion": "7.7.0+dfsg-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libheimntlm0-heimdal": { - "name": "libheimntlm0-heimdal", - "version": "7.7.0+dfsg-1ubuntu1", - "release": "", - "newVersion": "7.7.0+dfsg-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libhogweed5": { - "name": "libhogweed5", - "version": "3.5.1+really3.5.1-2", - "release": "", - "newVersion": "3.5.1+really3.5.1-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - } - ] - }, - "libhx509-5-heimdal": { - "name": "libhx509-5-heimdal", - "version": "7.7.0+dfsg-1ubuntu1", - "release": "", - "newVersion": "7.7.0+dfsg-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libicu66": { - "name": "libicu66", - "version": "66.1-2ubuntu2", - "release": "", - "newVersion": "66.1-2ubuntu2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "libidn2-0": { - "name": "libidn2-0", - "version": "2.2.0-2", - "release": "", - "newVersion": "2.2.0-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "libip4tc2": { - "name": "libip4tc2", - "version": "1.8.4-3ubuntu2", - "release": "", - "newVersion": "1.8.4-3ubuntu2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "libip6tc2": { - "name": "libip6tc2", - "version": "1.8.4-3ubuntu2", - "release": "", - "newVersion": "1.8.4-3ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libipc-system-simple-perl": { - "name": "libipc-system-simple-perl", - "version": "1.26-1", - "release": "", - "newVersion": "1.26-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libisc-export1105": { - "name": "libisc-export1105", - "version": "1:9.11.16+dfsg-3~ubuntu1", - "release": "", - "newVersion": "1:9.11.16+dfsg-3~ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libisns0": { - "name": "libisns0", - "version": "0.97-3", - "release": "", - "newVersion": "0.97-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libjson-c4": { - "name": "libjson-c4", - "version": "0.13.1+dfsg-7ubuntu0.3", - "release": "", - "newVersion": "0.13.1+dfsg-7ubuntu0.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "libjson-glib-1.0-0": { - "name": "libjson-glib-1.0-0", - "version": "1.4.4-2ubuntu2", - "release": "", - "newVersion": "1.4.4-2ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libjson-glib-1.0-common": { - "name": "libjson-glib-1.0-common", - "version": "1.4.4-2ubuntu2", - "release": "", - "newVersion": "1.4.4-2ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libk5crypto3": { - "name": "libk5crypto3", - "version": "1.17-6ubuntu4.1", - "release": "", - "newVersion": "1.17-6ubuntu4.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "725", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1410", - "name": "sshd" - }, - { - "pid": "2196", - "name": "sshd" - }, - { - "pid": "1321", - "name": "sshd" - }, - { - "pid": "2275", - "name": "sshd" - } - ] - }, - "libkeyutils1": { - "name": "libkeyutils1", - "version": "1.6-6ubuntu1", - "release": "", - "newVersion": "1.6-6ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libklibc": { - "name": "libklibc", - "version": "2.0.7-1ubuntu5", - "release": "", - "newVersion": "2.0.7-1ubuntu5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libkmod2": { - "name": "libkmod2", - "version": "27-1ubuntu2", - "release": "", - "newVersion": "27-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "191", - "name": "systemd-udevd" - }, - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "libkrb5-26-heimdal": { - "name": "libkrb5-26-heimdal", - "version": "7.7.0+dfsg-1ubuntu1", - "release": "", - "newVersion": "7.7.0+dfsg-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libkrb5-3": { - "name": "libkrb5-3", - "version": "1.17-6ubuntu4.1", - "release": "", - "newVersion": "1.17-6ubuntu4.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "725", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1410", - "name": "sshd" - }, - { - "pid": "2196", - "name": "sshd" - }, - { - "pid": "1321", - "name": "sshd" - }, - { - "pid": "2275", - "name": "sshd" - } - ] - }, - "libkrb5support0": { - "name": "libkrb5support0", - "version": "1.17-6ubuntu4.1", - "release": "", - "newVersion": "1.17-6ubuntu4.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "725", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1410", - "name": "sshd" - }, - { - "pid": "2196", - "name": "sshd" - }, - { - "pid": "1321", - "name": "sshd" - }, - { - "pid": "2275", - "name": "sshd" - } - ] - }, - "libksba8": { - "name": "libksba8", - "version": "1.3.5-2", - "release": "", - "newVersion": "1.3.5-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libldap-2.4-2": { - "name": "libldap-2.4-2", - "version": "2.4.49+dfsg-2ubuntu1.7", - "release": "", - "newVersion": "2.4.49+dfsg-2ubuntu1.7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libldap-common": { - "name": "libldap-common", - "version": "2.4.49+dfsg-2ubuntu1.7", - "release": "", - "newVersion": "2.4.49+dfsg-2ubuntu1.7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblmdb0": { - "name": "liblmdb0", - "version": "0.9.24-1", - "release": "", - "newVersion": "0.9.24-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "liblocale-gettext-perl": { - "name": "liblocale-gettext-perl", - "version": "1.07-4", - "release": "", - "newVersion": "1.07-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libltdl7": { - "name": "libltdl7", - "version": "2.4.6-14", - "release": "", - "newVersion": "2.4.6-14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblvm2cmd2.03": { - "name": "liblvm2cmd2.03", - "version": "2.03.07-1ubuntu1", - "release": "", - "newVersion": "2.03.07-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblz4-1": { - "name": "liblz4-1", - "version": "1.9.2-2", - "release": "", - "newVersion": "1.9.2-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "270", - "name": "multipathd" - }, - { - "pid": "464", - "name": "rsyslogd" - }, - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "626", - "name": "unattended-upgr" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "725", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "1410", - "name": "sshd" - }, - { - "pid": "2196", - "name": "sshd" - }, - { - "pid": "1321", - "name": "sshd" - }, - { - "pid": "2275", - "name": "sshd" - }, - { - "pid": "451", - "name": "dbus-daemon" - }, - { - "pid": "442", - "name": "accounts-daemon" - }, - { - "pid": "617", - "name": "polkitd" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "liblzma5": { - "name": "liblzma5", - "version": "5.2.4-1ubuntu1", - "release": "", - "newVersion": "5.2.4-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liblzo2-2": { - "name": "liblzo2-2", - "version": "2.10-2", - "release": "", - "newVersion": "2.10-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmagic-mgc": { - "name": "libmagic-mgc", - "version": "1:5.38-4", - "release": "", - "newVersion": "1:5.38-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmagic1": { - "name": "libmagic1", - "version": "1:5.38-4", - "release": "", - "newVersion": "1:5.38-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmaxminddb0": { - "name": "libmaxminddb0", - "version": "1.4.2-0ubuntu1.20.04.1", - "release": "", - "newVersion": "1.4.2-0ubuntu1.20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmnl0": { - "name": "libmnl0", - "version": "1.0.4-2", - "release": "", - "newVersion": "1.0.4-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmount1": { - "name": "libmount1", - "version": "2.34-0.1ubuntu9.1", - "release": "", - "newVersion": "2.34-0.1ubuntu9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmpdec2": { - "name": "libmpdec2", - "version": "2.4.2-3", - "release": "", - "newVersion": "2.4.2-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmpfr6": { - "name": "libmpfr6", - "version": "4.0.2-1", - "release": "", - "newVersion": "4.0.2-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libmspack0": { - "name": "libmspack0", - "version": "0.10.1-2", - "release": "", - "newVersion": "0.10.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libncurses6": { - "name": "libncurses6", - "version": "6.2-0ubuntu2", - "release": "", - "newVersion": "6.2-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libncursesw6": { - "name": "libncursesw6", - "version": "6.2-0ubuntu2", - "release": "", - "newVersion": "6.2-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnetfilter-conntrack3": { - "name": "libnetfilter-conntrack3", - "version": "1.0.7-2", - "release": "", - "newVersion": "1.0.7-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnetplan0": { - "name": "libnetplan0", - "version": "0.101-0ubuntu3~20.04.2", - "release": "", - "newVersion": "0.101-0ubuntu3~20.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnettle7": { - "name": "libnettle7", - "version": "3.5.1+really3.5.1-2", - "release": "", - "newVersion": "3.5.1+really3.5.1-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - } - ] - }, - "libnewt0.52": { - "name": "libnewt0.52", - "version": "0.52.21-4ubuntu2", - "release": "", - "newVersion": "0.52.21-4ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnfnetlink0": { - "name": "libnfnetlink0", - "version": "1.0.1-3build1", - "release": "", - "newVersion": "1.0.1-3build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnftnl11": { - "name": "libnftnl11", - "version": "1.1.5-1", - "release": "", - "newVersion": "1.1.5-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnghttp2-14": { - "name": "libnghttp2-14", - "version": "1.40.0-1build1", - "release": "", - "newVersion": "1.40.0-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnpth0": { - "name": "libnpth0", - "version": "1.6-1", - "release": "", - "newVersion": "1.6-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnss-systemd": { - "name": "libnss-systemd", - "version": "245.4-4ubuntu3.4", - "release": "", - "newVersion": "245.4-4ubuntu3.5", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "libntfs-3g883": { - "name": "libntfs-3g883", - "version": "1:2017.3.23AR.3-3ubuntu1", - "release": "", - "newVersion": "1:2017.3.23AR.3-3ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libnuma1": { - "name": "libnuma1", - "version": "2.0.12-1", - "release": "", - "newVersion": "2.0.12-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libogg0": { - "name": "libogg0", - "version": "1.3.4-0ubuntu1", - "release": "", - "newVersion": "1.3.4-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libp11-kit0": { - "name": "libp11-kit0", - "version": "0.23.20-1ubuntu0.1", - "release": "", - "newVersion": "0.23.20-1ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - } - ] - }, - "libpackagekit-glib2-18": { - "name": "libpackagekit-glib2-18", - "version": "1.1.13-2ubuntu1.1", - "release": "", - "newVersion": "1.1.13-2ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "libpam-cap": { - "name": "libpam-cap", - "version": "1:2.32-1", - "release": "", - "newVersion": "1:2.32-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpam-modules": { - "name": "libpam-modules", - "version": "1.3.1-5ubuntu4.1", - "release": "", - "newVersion": "1.3.1-5ubuntu4.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpam-modules-bin": { - "name": "libpam-modules-bin", - "version": "1.3.1-5ubuntu4.1", - "release": "", - "newVersion": "1.3.1-5ubuntu4.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpam-runtime": { - "name": "libpam-runtime", - "version": "1.3.1-5ubuntu4.1", - "release": "", - "newVersion": "1.3.1-5ubuntu4.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpam-systemd": { - "name": "libpam-systemd", - "version": "245.4-4ubuntu3.4", - "release": "", - "newVersion": "245.4-4ubuntu3.5", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "libpam0g": { - "name": "libpam0g", - "version": "1.3.1-5ubuntu4.1", - "release": "", - "newVersion": "1.3.1-5ubuntu4.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libparted2": { - "name": "libparted2", - "version": "3.3-4ubuntu0.20.04.1", - "release": "", - "newVersion": "3.3-4ubuntu0.20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpcap0.8": { - "name": "libpcap0.8", - "version": "1.9.1-3", - "release": "", - "newVersion": "1.9.1-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpci3": { - "name": "libpci3", - "version": "1:3.6.4-1", - "release": "", - "newVersion": "1:3.6.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpcre2-8-0": { - "name": "libpcre2-8-0", - "version": "10.34-7", - "release": "", - "newVersion": "10.34-7", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "191", - "name": "systemd-udevd" - }, - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "270", - "name": "multipathd" - }, - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "2285", - "name": "sudo" - }, - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "474", - "name": "atd" - }, - { - "pid": "626", - "name": "unattended-upgr" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "725", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "1410", - "name": "sshd" - }, - { - "pid": "2196", - "name": "sshd" - }, - { - "pid": "1321", - "name": "sshd" - }, - { - "pid": "2275", - "name": "sshd" - }, - { - "pid": "451", - "name": "dbus-daemon" - }, - { - "pid": "442", - "name": "accounts-daemon" - }, - { - "pid": "617", - "name": "polkitd" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "450", - "name": "cron" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - }, - { - "pid": "2286", - "name": "su" - } - ] - }, - "libpcre3": { - "name": "libpcre3", - "version": "2:8.39-12build1", - "release": "", - "newVersion": "2:8.39-12build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libperl5.30": { - "name": "libperl5.30", - "version": "5.30.0-9ubuntu0.2", - "release": "", - "newVersion": "5.30.0-9ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpipeline1": { - "name": "libpipeline1", - "version": "1.5.2-2build1", - "release": "", - "newVersion": "1.5.2-2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libplymouth5": { - "name": "libplymouth5", - "version": "0.9.4git20200323-0ubuntu6.2", - "release": "", - "newVersion": "0.9.4git20200323-0ubuntu6.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpng16-16": { - "name": "libpng16-16", - "version": "1.6.37-2", - "release": "", - "newVersion": "1.6.37-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpolkit-agent-1-0": { - "name": "libpolkit-agent-1-0", - "version": "0.105-26ubuntu1", - "release": "", - "newVersion": "0.105-26ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpolkit-gobject-1-0": { - "name": "libpolkit-gobject-1-0", - "version": "0.105-26ubuntu1", - "release": "", - "newVersion": "0.105-26ubuntu1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "442", - "name": "accounts-daemon" - }, - { - "pid": "617", - "name": "polkitd" - } - ] - }, - "libpopt0": { - "name": "libpopt0", - "version": "1.16-14", - "release": "", - "newVersion": "1.16-14", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libprocps8": { - "name": "libprocps8", - "version": "2:3.3.16-1ubuntu2", - "release": "", - "newVersion": "2:3.3.16-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libproxy1v5": { - "name": "libproxy1v5", - "version": "0.4.15-10ubuntu1.2", - "release": "", - "newVersion": "0.4.15-10ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "442", - "name": "accounts-daemon" - }, - { - "pid": "617", - "name": "polkitd" - } - ] - }, - "libpsl5": { - "name": "libpsl5", - "version": "0.21.0-1ubuntu1", - "release": "", - "newVersion": "0.21.0-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "libpython3-stdlib": { - "name": "libpython3-stdlib", - "version": "3.8.2-0ubuntu2", - "release": "", - "newVersion": "3.8.2-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libpython3.8": { - "name": "libpython3.8", - "version": "3.8.5-1~20.04", - "release": "", - "newVersion": "3.8.5-1~20.04.2", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "libpython3.8-minimal": { - "name": "libpython3.8-minimal", - "version": "3.8.5-1~20.04", - "release": "", - "newVersion": "3.8.5-1~20.04.2", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "libpython3.8-stdlib": { - "name": "libpython3.8-stdlib", - "version": "3.8.5-1~20.04", - "release": "", - "newVersion": "3.8.5-1~20.04.2", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "626", - "name": "unattended-upgr" - } - ] - }, - "libreadline5": { - "name": "libreadline5", - "version": "5.2+dfsg-3build3", - "release": "", - "newVersion": "5.2+dfsg-3build3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libreadline8": { - "name": "libreadline8", - "version": "8.0-4", - "release": "", - "newVersion": "8.0-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libroken18-heimdal": { - "name": "libroken18-heimdal", - "version": "7.7.0+dfsg-1ubuntu1", - "release": "", - "newVersion": "7.7.0+dfsg-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "librtmp1": { - "name": "librtmp1", - "version": "2.4+20151223.gitfa8646d.1-2build1", - "release": "", - "newVersion": "2.4+20151223.gitfa8646d.1-2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsasl2-2": { - "name": "libsasl2-2", - "version": "2.1.27+dfsg-2", - "release": "", - "newVersion": "2.1.27+dfsg-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsasl2-modules": { - "name": "libsasl2-modules", - "version": "2.1.27+dfsg-2", - "release": "", - "newVersion": "2.1.27+dfsg-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsasl2-modules-db": { - "name": "libsasl2-modules-db", - "version": "2.1.27+dfsg-2", - "release": "", - "newVersion": "2.1.27+dfsg-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libseccomp2": { - "name": "libseccomp2", - "version": "2.4.3-1ubuntu3.20.04.3", - "release": "", - "newVersion": "2.4.3-1ubuntu3.20.04.3", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "libselinux1": { - "name": "libselinux1", - "version": "3.0-1build2", - "release": "", - "newVersion": "3.0-1build2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsemanage-common": { - "name": "libsemanage-common", - "version": "3.0-1build2", - "release": "", - "newVersion": "3.0-1build2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsemanage1": { - "name": "libsemanage1", - "version": "3.0-1build2", - "release": "", - "newVersion": "3.0-1build2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsepol1": { - "name": "libsepol1", - "version": "3.0-1", - "release": "", - "newVersion": "3.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsgutils2-2": { - "name": "libsgutils2-2", - "version": "1.44-1ubuntu2", - "release": "", - "newVersion": "1.44-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsigsegv2": { - "name": "libsigsegv2", - "version": "2.12-2", - "release": "", - "newVersion": "2.12-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libslang2": { - "name": "libslang2", - "version": "2.3.2-4", - "release": "", - "newVersion": "2.3.2-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsmartcols1": { - "name": "libsmartcols1", - "version": "2.34-0.1ubuntu9.1", - "release": "", - "newVersion": "2.34-0.1ubuntu9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsmbios-c2": { - "name": "libsmbios-c2", - "version": "2.4.3-1", - "release": "", - "newVersion": "2.4.3-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsodium23": { - "name": "libsodium23", - "version": "1.0.18-1", - "release": "", - "newVersion": "1.0.18-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libsoup2.4-1": { - "name": "libsoup2.4-1", - "version": "2.70.0-1", - "release": "", - "newVersion": "2.70.0-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "libsqlite3-0": { - "name": "libsqlite3-0", - "version": "3.31.1-4ubuntu0.2", - "release": "", - "newVersion": "3.31.1-4ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "libss2": { - "name": "libss2", - "version": "1.45.5-2ubuntu1", - "release": "", - "newVersion": "1.45.5-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libssh-4": { - "name": "libssh-4", - "version": "0.9.3-2ubuntu2.1", - "release": "", - "newVersion": "0.9.3-2ubuntu2.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libssl1.1": { - "name": "libssl1.1", - "version": "1.1.1f-1ubuntu2.2", - "release": "", - "newVersion": "1.1.1f-1ubuntu2.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "191", - "name": "systemd-udevd" - }, - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "725", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "1410", - "name": "sshd" - }, - { - "pid": "2196", - "name": "sshd" - }, - { - "pid": "1321", - "name": "sshd" - }, - { - "pid": "2275", - "name": "sshd" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "libstdc++6": { - "name": "libstdc++6", - "version": "10.2.0-5ubuntu1~20.04", - "release": "", - "newVersion": "10.2.0-5ubuntu1~20.04", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "626", - "name": "unattended-upgr" - }, - { - "pid": "442", - "name": "accounts-daemon" - }, - { - "pid": "617", - "name": "polkitd" - } - ] - }, - "libstemmer0d": { - "name": "libstemmer0d", - "version": "0+svn585-2", - "release": "", - "newVersion": "0+svn585-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "libsystemd0": { - "name": "libsystemd0", - "version": "245.4-4ubuntu3.4", - "release": "", - "newVersion": "245.4-4ubuntu3.5", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "libtasn1-6": { - "name": "libtasn1-6", - "version": "4.16.0-2", - "release": "", - "newVersion": "4.16.0-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - } - ] - }, - "libtdb1": { - "name": "libtdb1", - "version": "1.4.2-3build1", - "release": "", - "newVersion": "1.4.2-3build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libtext-charwidth-perl": { - "name": "libtext-charwidth-perl", - "version": "0.04-10", - "release": "", - "newVersion": "0.04-10", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libtext-iconv-perl": { - "name": "libtext-iconv-perl", - "version": "1.7-7", - "release": "", - "newVersion": "1.7-7", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libtext-wrapi18n-perl": { - "name": "libtext-wrapi18n-perl", - "version": "0.06-9", - "release": "", - "newVersion": "0.06-9", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libtinfo6": { - "name": "libtinfo6", - "version": "6.2-0ubuntu2", - "release": "", - "newVersion": "6.2-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libtss2-esys0": { - "name": "libtss2-esys0", - "version": "2.3.2-1", - "release": "", - "newVersion": "2.3.2-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libuchardet0": { - "name": "libuchardet0", - "version": "0.0.6-3build1", - "release": "", - "newVersion": "0.0.6-3build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libudev1": { - "name": "libudev1", - "version": "245.4-4ubuntu3.4", - "release": "", - "newVersion": "245.4-4ubuntu3.5", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "libunistring2": { - "name": "libunistring2", - "version": "0.9.10-2", - "release": "", - "newVersion": "0.9.10-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "376", - "name": "systemd-network" - }, - { - "pid": "1", - "name": "systemd" - }, - { - "pid": "1334", - "name": "systemd" - }, - { - "pid": "158", - "name": "systemd-journal" - }, - { - "pid": "467", - "name": "systemd-logind" - }, - { - "pid": "302", - "name": "systemd-timesyn" - }, - { - "pid": "379", - "name": "systemd-resolve", - "listenPortStats": [ - { - "bindAddress": "127.0.0.53", - "port": "53", - "portReachableTo": [] - } - ] - }, - { - "pid": "1335", - "name": "(sd-pam)" - } - ] - }, - "libunwind8": { - "name": "libunwind8", - "version": "1.2.1-9build1", - "release": "", - "newVersion": "1.2.1-9build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "liburcu6": { - "name": "liburcu6", - "version": "0.11.1-2", - "release": "", - "newVersion": "0.11.1-2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "270", - "name": "multipathd" - } - ] - }, - "libusb-1.0-0": { - "name": "libusb-1.0-0", - "version": "2:1.0.23-2build1", - "release": "", - "newVersion": "2:1.0.23-2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libutempter0": { - "name": "libutempter0", - "version": "1.1.6-4", - "release": "", - "newVersion": "1.1.6-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libuuid1": { - "name": "libuuid1", - "version": "2.34-0.1ubuntu9.1", - "release": "", - "newVersion": "2.34-0.1ubuntu9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libuv1": { - "name": "libuv1", - "version": "1.34.2-1ubuntu1.1", - "release": "", - "newVersion": "1.34.2-1ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libvorbis0a": { - "name": "libvorbis0a", - "version": "1.3.6-2ubuntu1", - "release": "", - "newVersion": "1.3.6-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libvorbisfile3": { - "name": "libvorbisfile3", - "version": "1.3.6-2ubuntu1", - "release": "", - "newVersion": "1.3.6-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libwind0-heimdal": { - "name": "libwind0-heimdal", - "version": "7.7.0+dfsg-1ubuntu1", - "release": "", - "newVersion": "7.7.0+dfsg-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libwrap0": { - "name": "libwrap0", - "version": "7.6.q-30", - "release": "", - "newVersion": "7.6.q-30", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "725", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1410", - "name": "sshd" - }, - { - "pid": "2196", - "name": "sshd" - }, - { - "pid": "1321", - "name": "sshd" - }, - { - "pid": "2275", - "name": "sshd" - } - ] - }, - "libx11-6": { - "name": "libx11-6", - "version": "2:1.6.9-2ubuntu1.1", - "release": "", - "newVersion": "2:1.6.9-2ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libx11-data": { - "name": "libx11-data", - "version": "2:1.6.9-2ubuntu1.1", - "release": "", - "newVersion": "2:1.6.9-2ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxau6": { - "name": "libxau6", - "version": "1:1.0.9-0ubuntu1", - "release": "", - "newVersion": "1:1.0.9-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxcb1": { - "name": "libxcb1", - "version": "1.14-2", - "release": "", - "newVersion": "1.14-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxdmcp6": { - "name": "libxdmcp6", - "version": "1:1.1.3-0ubuntu1", - "release": "", - "newVersion": "1:1.1.3-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxext6": { - "name": "libxext6", - "version": "2:1.3.4-0ubuntu1", - "release": "", - "newVersion": "2:1.3.4-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxml2": { - "name": "libxml2", - "version": "2.9.10+dfsg-5", - "release": "", - "newVersion": "2.9.10+dfsg-5", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "libxmlb1": { - "name": "libxmlb1", - "version": "0.1.15-2", - "release": "", - "newVersion": "0.1.15-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxmlsec1": { - "name": "libxmlsec1", - "version": "1.2.28-2", - "release": "", - "newVersion": "1.2.28-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxmlsec1-openssl": { - "name": "libxmlsec1-openssl", - "version": "1.2.28-2", - "release": "", - "newVersion": "1.2.28-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxmuu1": { - "name": "libxmuu1", - "version": "2:1.1.3-0ubuntu1", - "release": "", - "newVersion": "2:1.1.3-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxslt1.1": { - "name": "libxslt1.1", - "version": "1.1.34-4", - "release": "", - "newVersion": "1.1.34-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libxtables12": { - "name": "libxtables12", - "version": "1.8.4-3ubuntu2", - "release": "", - "newVersion": "1.8.4-3ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "libyaml-0-2": { - "name": "libyaml-0-2", - "version": "0.2.2-1", - "release": "", - "newVersion": "0.2.2-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "libzstd1": { - "name": "libzstd1", - "version": "1.4.4+dfsg-3", - "release": "", - "newVersion": "1.4.4+dfsg-3ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - }, - { - "pid": "626", - "name": "unattended-upgr" - } - ] - }, - "linux-aws": { - "name": "linux-aws", - "version": "5.4.0.1038.39", - "release": "", - "newVersion": "5.4.0.1041.42", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "linux-aws-headers-5.4.0-1038": { - "name": "linux-aws-headers-5.4.0-1038", - "version": "5.4.0-1038.40", - "release": "", - "newVersion": "5.4.0-1038.40", - "newRelease": "", - "arch": "", - "repository": "" - }, - "linux-base": { - "name": "linux-base", - "version": "4.5ubuntu3.1", - "release": "", - "newVersion": "4.5ubuntu3.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "linux-headers-5.4.0-1038-aws": { - "name": "linux-headers-5.4.0-1038-aws", - "version": "5.4.0-1038.40", - "release": "", - "newVersion": "5.4.0-1038.40", - "newRelease": "", - "arch": "", - "repository": "" - }, - "linux-headers-aws": { - "name": "linux-headers-aws", - "version": "5.4.0.1038.39", - "release": "", - "newVersion": "5.4.0.1041.42", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "linux-image-5.4.0-1038-aws": { - "name": "linux-image-5.4.0-1038-aws", - "version": "5.4.0-1038.40", - "release": "", - "newVersion": "5.4.0-1038.40", - "newRelease": "", - "arch": "", - "repository": "" - }, - "linux-image-aws": { - "name": "linux-image-aws", - "version": "5.4.0.1038.39", - "release": "", - "newVersion": "5.4.0.1041.42", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "linux-modules-5.4.0-1038-aws": { - "name": "linux-modules-5.4.0-1038-aws", - "version": "5.4.0-1038.40", - "release": "", - "newVersion": "5.4.0-1038.40", - "newRelease": "", - "arch": "", - "repository": "" - }, - "locales": { - "name": "locales", - "version": "2.31-0ubuntu9.2", - "release": "", - "newVersion": "2.31-0ubuntu9.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "login": { - "name": "login", - "version": "1:4.8.1-1ubuntu5.20.04", - "release": "", - "newVersion": "1:4.8.1-1ubuntu5.20.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "logrotate": { - "name": "logrotate", - "version": "3.14.0-4ubuntu3", - "release": "", - "newVersion": "3.14.0-4ubuntu3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "logsave": { - "name": "logsave", - "version": "1.45.5-2ubuntu1", - "release": "", - "newVersion": "1.45.5-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lsb-base": { - "name": "lsb-base", - "version": "11.1.0ubuntu2", - "release": "", - "newVersion": "11.1.0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lsb-release": { - "name": "lsb-release", - "version": "11.1.0ubuntu2", - "release": "", - "newVersion": "11.1.0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lshw": { - "name": "lshw", - "version": "02.18.85-0.3ubuntu2.20.04.1", - "release": "", - "newVersion": "02.18.85-0.3ubuntu2.20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lsof": { - "name": "lsof", - "version": "4.93.2+dfsg-1ubuntu0.20.04.1", - "release": "", - "newVersion": "4.93.2+dfsg-1ubuntu0.20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ltrace": { - "name": "ltrace", - "version": "0.7.3-6.1ubuntu1", - "release": "", - "newVersion": "0.7.3-6.1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lvm2": { - "name": "lvm2", - "version": "2.03.07-1ubuntu1", - "release": "", - "newVersion": "2.03.07-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lxd-agent-loader": { - "name": "lxd-agent-loader", - "version": "0.4", - "release": "", - "newVersion": "0.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "lz4": { - "name": "lz4", - "version": "1.9.2-2", - "release": "", - "newVersion": "1.9.2-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "man-db": { - "name": "man-db", - "version": "2.9.1-1", - "release": "", - "newVersion": "2.9.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "manpages": { - "name": "manpages", - "version": "5.05-1", - "release": "", - "newVersion": "5.05-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mawk": { - "name": "mawk", - "version": "1.3.4.20200120-2", - "release": "", - "newVersion": "1.3.4.20200120-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mdadm": { - "name": "mdadm", - "version": "4.1-5ubuntu1.2", - "release": "", - "newVersion": "4.1-5ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "microcode-initrd": { - "name": "microcode-initrd", - "version": "2~20.04.0", - "release": "", - "newVersion": "2~20.04.0", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mime-support": { - "name": "mime-support", - "version": "3.64ubuntu1", - "release": "", - "newVersion": "3.64ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "motd-news-config": { - "name": "motd-news-config", - "version": "11ubuntu5.3", - "release": "", - "newVersion": "11ubuntu5.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mount": { - "name": "mount", - "version": "2.34-0.1ubuntu9.1", - "release": "", - "newVersion": "2.34-0.1ubuntu9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "mtr-tiny": { - "name": "mtr-tiny", - "version": "0.93-1", - "release": "", - "newVersion": "0.93-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "multipath-tools": { - "name": "multipath-tools", - "version": "0.8.3-1ubuntu2", - "release": "", - "newVersion": "0.8.3-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "nano": { - "name": "nano", - "version": "4.8-1ubuntu1", - "release": "", - "newVersion": "4.8-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ncurses-base": { - "name": "ncurses-base", - "version": "6.2-0ubuntu2", - "release": "", - "newVersion": "6.2-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ncurses-bin": { - "name": "ncurses-bin", - "version": "6.2-0ubuntu2", - "release": "", - "newVersion": "6.2-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ncurses-term": { - "name": "ncurses-term", - "version": "6.2-0ubuntu2", - "release": "", - "newVersion": "6.2-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "netbase": { - "name": "netbase", - "version": "6.1", - "release": "", - "newVersion": "6.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "netcat-openbsd": { - "name": "netcat-openbsd", - "version": "1.206-1ubuntu1", - "release": "", - "newVersion": "1.206-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "netplan.io": { - "name": "netplan.io", - "version": "0.101-0ubuntu3~20.04.2", - "release": "", - "newVersion": "0.101-0ubuntu3~20.04.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "networkd-dispatcher": { - "name": "networkd-dispatcher", - "version": "2.0.1-1", - "release": "", - "newVersion": "2.0.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ntfs-3g": { - "name": "ntfs-3g", - "version": "1:2017.3.23AR.3-3ubuntu1", - "release": "", - "newVersion": "1:2017.3.23AR.3-3ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "open-iscsi": { - "name": "open-iscsi", - "version": "2.0.874-7.1ubuntu6.1", - "release": "", - "newVersion": "2.0.874-7.1ubuntu6.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "open-vm-tools": { - "name": "open-vm-tools", - "version": "2:11.0.5-4", - "release": "", - "newVersion": "2:11.1.5-1~ubuntu20.04.2", - "newRelease": "", - "arch": "", - "repository": "focal-updates/universe" - }, - "openssh-client": { - "name": "openssh-client", - "version": "1:8.2p1-4ubuntu0.1", - "release": "", - "newVersion": "1:8.2p1-4ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "openssh-server": { - "name": "openssh-server", - "version": "1:8.2p1-4ubuntu0.1", - "release": "", - "newVersion": "1:8.2p1-4ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main", - "AffectedProcs": [ - { - "pid": "725", - "name": "sshd", - "listenPortStats": [ - { - "bindAddress": "*", - "port": "22", - "portReachableTo": [] - } - ] - }, - { - "pid": "1410", - "name": "sshd" - }, - { - "pid": "2196", - "name": "sshd" - }, - { - "pid": "1321", - "name": "sshd" - }, - { - "pid": "2275", - "name": "sshd" - } - ] - }, - "openssh-sftp-server": { - "name": "openssh-sftp-server", - "version": "1:8.2p1-4ubuntu0.1", - "release": "", - "newVersion": "1:8.2p1-4ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "openssl": { - "name": "openssl", - "version": "1.1.1f-1ubuntu2.2", - "release": "", - "newVersion": "1.1.1f-1ubuntu2.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "os-prober": { - "name": "os-prober", - "version": "1.74ubuntu2", - "release": "", - "newVersion": "1.74ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "overlayroot": { - "name": "overlayroot", - "version": "0.45ubuntu1", - "release": "", - "newVersion": "0.45ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "packagekit": { - "name": "packagekit", - "version": "1.1.13-2ubuntu1.1", - "release": "", - "newVersion": "1.1.13-2ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "1677", - "name": "packagekitd" - } - ] - }, - "packagekit-tools": { - "name": "packagekit-tools", - "version": "1.1.13-2ubuntu1.1", - "release": "", - "newVersion": "1.1.13-2ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "parted": { - "name": "parted", - "version": "3.3-4ubuntu0.20.04.1", - "release": "", - "newVersion": "3.3-4ubuntu0.20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "passwd": { - "name": "passwd", - "version": "1:4.8.1-1ubuntu5.20.04", - "release": "", - "newVersion": "1:4.8.1-1ubuntu5.20.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "pastebinit": { - "name": "pastebinit", - "version": "1.5.1-1", - "release": "", - "newVersion": "1.5.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "patch": { - "name": "patch", - "version": "2.7.6-6", - "release": "", - "newVersion": "2.7.6-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "pci.ids": { - "name": "pci.ids", - "version": "0.0~2020.03.20-1", - "release": "", - "newVersion": "0.0~2020.03.20-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "pciutils": { - "name": "pciutils", - "version": "1:3.6.4-1", - "release": "", - "newVersion": "1:3.6.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "perl": { - "name": "perl", - "version": "5.30.0-9ubuntu0.2", - "release": "", - "newVersion": "5.30.0-9ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "perl-base": { - "name": "perl-base", - "version": "5.30.0-9ubuntu0.2", - "release": "", - "newVersion": "5.30.0-9ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "perl-modules-5.30": { - "name": "perl-modules-5.30", - "version": "5.30.0-9ubuntu0.2", - "release": "", - "newVersion": "5.30.0-9ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "pinentry-curses": { - "name": "pinentry-curses", - "version": "1.1.0-3build1", - "release": "", - "newVersion": "1.1.0-3build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "plymouth": { - "name": "plymouth", - "version": "0.9.4git20200323-0ubuntu6.2", - "release": "", - "newVersion": "0.9.4git20200323-0ubuntu6.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "plymouth-theme-ubuntu-text": { - "name": "plymouth-theme-ubuntu-text", - "version": "0.9.4git20200323-0ubuntu6.2", - "release": "", - "newVersion": "0.9.4git20200323-0ubuntu6.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "policykit-1": { - "name": "policykit-1", - "version": "0.105-26ubuntu1", - "release": "", - "newVersion": "0.105-26ubuntu1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "617", - "name": "polkitd" - } - ] - }, - "pollinate": { - "name": "pollinate", - "version": "4.33-3ubuntu1.20.04.1", - "release": "", - "newVersion": "4.33-3ubuntu1.20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "popularity-contest": { - "name": "popularity-contest", - "version": "1.69ubuntu1", - "release": "", - "newVersion": "1.69ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "powermgmt-base": { - "name": "powermgmt-base", - "version": "1.36", - "release": "", - "newVersion": "1.36", - "newRelease": "", - "arch": "", - "repository": "" - }, - "procps": { - "name": "procps", - "version": "2:3.3.16-1ubuntu2", - "release": "", - "newVersion": "2:3.3.16-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "psmisc": { - "name": "psmisc", - "version": "23.3-1", - "release": "", - "newVersion": "23.3-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "publicsuffix": { - "name": "publicsuffix", - "version": "20200303.0012-1", - "release": "", - "newVersion": "20200303.0012-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python-apt-common": { - "name": "python-apt-common", - "version": "2.0.0ubuntu0.20.04.4", - "release": "", - "newVersion": "2.0.0ubuntu0.20.04.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3": { - "name": "python3", - "version": "3.8.2-0ubuntu2", - "release": "", - "newVersion": "3.8.2-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-apport": { - "name": "python3-apport", - "version": "2.20.11-0ubuntu27.16", - "release": "", - "newVersion": "2.20.11-0ubuntu27.16", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-apt": { - "name": "python3-apt", - "version": "2.0.0ubuntu0.20.04.4", - "release": "", - "newVersion": "2.0.0ubuntu0.20.04.4", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "626", - "name": "unattended-upgr" - } - ] - }, - "python3-attr": { - "name": "python3-attr", - "version": "19.3.0-2", - "release": "", - "newVersion": "19.3.0-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-automat": { - "name": "python3-automat", - "version": "0.8.0-1ubuntu1", - "release": "", - "newVersion": "0.8.0-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-blinker": { - "name": "python3-blinker", - "version": "1.4+dfsg1-0.3ubuntu1", - "release": "", - "newVersion": "1.4+dfsg1-0.3ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-certifi": { - "name": "python3-certifi", - "version": "2019.11.28-1", - "release": "", - "newVersion": "2019.11.28-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-cffi-backend": { - "name": "python3-cffi-backend", - "version": "1.14.0-1build1", - "release": "", - "newVersion": "1.14.0-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-chardet": { - "name": "python3-chardet", - "version": "3.0.4-4build1", - "release": "", - "newVersion": "3.0.4-4build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-click": { - "name": "python3-click", - "version": "7.0-3", - "release": "", - "newVersion": "7.0-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-colorama": { - "name": "python3-colorama", - "version": "0.4.3-1build1", - "release": "", - "newVersion": "0.4.3-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-commandnotfound": { - "name": "python3-commandnotfound", - "version": "20.04.4", - "release": "", - "newVersion": "20.04.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-configobj": { - "name": "python3-configobj", - "version": "5.0.6-4", - "release": "", - "newVersion": "5.0.6-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-constantly": { - "name": "python3-constantly", - "version": "15.1.0-1build1", - "release": "", - "newVersion": "15.1.0-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-cryptography": { - "name": "python3-cryptography", - "version": "2.8-3ubuntu0.1", - "release": "", - "newVersion": "2.8-3ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-dbus": { - "name": "python3-dbus", - "version": "1.2.16-1build1", - "release": "", - "newVersion": "1.2.16-1build1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "626", - "name": "unattended-upgr" - } - ] - }, - "python3-debconf": { - "name": "python3-debconf", - "version": "1.5.73", - "release": "", - "newVersion": "1.5.73", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-debian": { - "name": "python3-debian", - "version": "0.1.36ubuntu1", - "release": "", - "newVersion": "0.1.36ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-distro": { - "name": "python3-distro", - "version": "1.4.0-1", - "release": "", - "newVersion": "1.4.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-distro-info": { - "name": "python3-distro-info", - "version": "0.23ubuntu1", - "release": "", - "newVersion": "0.23ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-distupgrade": { - "name": "python3-distupgrade", - "version": "1:20.04.30", - "release": "", - "newVersion": "1:20.04.30", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-distutils": { - "name": "python3-distutils", - "version": "3.8.5-1~20.04.1", - "release": "", - "newVersion": "3.8.5-1~20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-entrypoints": { - "name": "python3-entrypoints", - "version": "0.3-2ubuntu1", - "release": "", - "newVersion": "0.3-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-gdbm": { - "name": "python3-gdbm", - "version": "3.8.5-1~20.04.1", - "release": "", - "newVersion": "3.8.5-1~20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-gi": { - "name": "python3-gi", - "version": "3.36.0-1", - "release": "", - "newVersion": "3.36.0-1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "626", - "name": "unattended-upgr" - } - ] - }, - "python3-hamcrest": { - "name": "python3-hamcrest", - "version": "1.9.0-3", - "release": "", - "newVersion": "1.9.0-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-httplib2": { - "name": "python3-httplib2", - "version": "0.14.0-1ubuntu1", - "release": "", - "newVersion": "0.14.0-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-hyperlink": { - "name": "python3-hyperlink", - "version": "19.0.0-1", - "release": "", - "newVersion": "19.0.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-idna": { - "name": "python3-idna", - "version": "2.8-1", - "release": "", - "newVersion": "2.8-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-importlib-metadata": { - "name": "python3-importlib-metadata", - "version": "1.5.0-1", - "release": "", - "newVersion": "1.5.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-incremental": { - "name": "python3-incremental", - "version": "16.10.1-3.2", - "release": "", - "newVersion": "16.10.1-3.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jinja2": { - "name": "python3-jinja2", - "version": "2.10.1-2", - "release": "", - "newVersion": "2.10.1-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-json-pointer": { - "name": "python3-json-pointer", - "version": "2.0-0ubuntu1", - "release": "", - "newVersion": "2.0-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jsonpatch": { - "name": "python3-jsonpatch", - "version": "1.23-3", - "release": "", - "newVersion": "1.23-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jsonschema": { - "name": "python3-jsonschema", - "version": "3.2.0-0ubuntu2", - "release": "", - "newVersion": "3.2.0-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-jwt": { - "name": "python3-jwt", - "version": "1.7.1-2ubuntu2", - "release": "", - "newVersion": "1.7.1-2ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-keyring": { - "name": "python3-keyring", - "version": "18.0.1-2ubuntu1", - "release": "", - "newVersion": "18.0.1-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-launchpadlib": { - "name": "python3-launchpadlib", - "version": "1.10.13-1", - "release": "", - "newVersion": "1.10.13-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-lazr.restfulclient": { - "name": "python3-lazr.restfulclient", - "version": "0.14.2-2build1", - "release": "", - "newVersion": "0.14.2-2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-lazr.uri": { - "name": "python3-lazr.uri", - "version": "1.0.3-4build1", - "release": "", - "newVersion": "1.0.3-4build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-lib2to3": { - "name": "python3-lib2to3", - "version": "3.8.5-1~20.04.1", - "release": "", - "newVersion": "3.8.5-1~20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-markupsafe": { - "name": "python3-markupsafe", - "version": "1.1.0-1build2", - "release": "", - "newVersion": "1.1.0-1build2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-minimal": { - "name": "python3-minimal", - "version": "3.8.2-0ubuntu2", - "release": "", - "newVersion": "3.8.2-0ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-more-itertools": { - "name": "python3-more-itertools", - "version": "4.2.0-1build1", - "release": "", - "newVersion": "4.2.0-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-nacl": { - "name": "python3-nacl", - "version": "1.3.0-5", - "release": "", - "newVersion": "1.3.0-5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-netifaces": { - "name": "python3-netifaces", - "version": "0.10.4-1ubuntu4", - "release": "", - "newVersion": "0.10.4-1ubuntu4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-newt": { - "name": "python3-newt", - "version": "0.52.21-4ubuntu2", - "release": "", - "newVersion": "0.52.21-4ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-oauthlib": { - "name": "python3-oauthlib", - "version": "3.1.0-1ubuntu2", - "release": "", - "newVersion": "3.1.0-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-openssl": { - "name": "python3-openssl", - "version": "19.0.0-1build1", - "release": "", - "newVersion": "19.0.0-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pexpect": { - "name": "python3-pexpect", - "version": "4.6.0-1build1", - "release": "", - "newVersion": "4.6.0-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pkg-resources": { - "name": "python3-pkg-resources", - "version": "45.2.0-1", - "release": "", - "newVersion": "45.2.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-problem-report": { - "name": "python3-problem-report", - "version": "2.20.11-0ubuntu27.16", - "release": "", - "newVersion": "2.20.11-0ubuntu27.16", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-ptyprocess": { - "name": "python3-ptyprocess", - "version": "0.6.0-1ubuntu1", - "release": "", - "newVersion": "0.6.0-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pyasn1": { - "name": "python3-pyasn1", - "version": "0.4.2-3build1", - "release": "", - "newVersion": "0.4.2-3build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pyasn1-modules": { - "name": "python3-pyasn1-modules", - "version": "0.2.1-0.2build1", - "release": "", - "newVersion": "0.2.1-0.2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pymacaroons": { - "name": "python3-pymacaroons", - "version": "0.13.0-3", - "release": "", - "newVersion": "0.13.0-3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-pyrsistent": { - "name": "python3-pyrsistent", - "version": "0.15.5-1build1", - "release": "", - "newVersion": "0.15.5-1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-requests": { - "name": "python3-requests", - "version": "2.22.0-2ubuntu1", - "release": "", - "newVersion": "2.22.0-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-requests-unixsocket": { - "name": "python3-requests-unixsocket", - "version": "0.2.0-2", - "release": "", - "newVersion": "0.2.0-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-secretstorage": { - "name": "python3-secretstorage", - "version": "2.3.1-2ubuntu1", - "release": "", - "newVersion": "2.3.1-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-serial": { - "name": "python3-serial", - "version": "3.4-5.1", - "release": "", - "newVersion": "3.4-5.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-service-identity": { - "name": "python3-service-identity", - "version": "18.1.0-5build1", - "release": "", - "newVersion": "18.1.0-5build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-setuptools": { - "name": "python3-setuptools", - "version": "45.2.0-1", - "release": "", - "newVersion": "45.2.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-simplejson": { - "name": "python3-simplejson", - "version": "3.16.0-2ubuntu2", - "release": "", - "newVersion": "3.16.0-2ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-six": { - "name": "python3-six", - "version": "1.14.0-2", - "release": "", - "newVersion": "1.14.0-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-software-properties": { - "name": "python3-software-properties", - "version": "0.98.9.4", - "release": "", - "newVersion": "0.98.9.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-systemd": { - "name": "python3-systemd", - "version": "234-3build2", - "release": "", - "newVersion": "234-3build2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-twisted": { - "name": "python3-twisted", - "version": "18.9.0-11", - "release": "", - "newVersion": "18.9.0-11ubuntu0.20.04.1", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "python3-twisted-bin": { - "name": "python3-twisted-bin", - "version": "18.9.0-11", - "release": "", - "newVersion": "18.9.0-11ubuntu0.20.04.1", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "python3-update-manager": { - "name": "python3-update-manager", - "version": "1:20.04.10.5", - "release": "", - "newVersion": "1:20.04.10.6", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "python3-urllib3": { - "name": "python3-urllib3", - "version": "1.25.8-2ubuntu0.1", - "release": "", - "newVersion": "1.25.8-2ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-wadllib": { - "name": "python3-wadllib", - "version": "1.3.3-3build1", - "release": "", - "newVersion": "1.3.3-3build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-yaml": { - "name": "python3-yaml", - "version": "5.3.1-1", - "release": "", - "newVersion": "5.3.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-zipp": { - "name": "python3-zipp", - "version": "1.0.0-1", - "release": "", - "newVersion": "1.0.0-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3-zope.interface": { - "name": "python3-zope.interface", - "version": "4.7.1-1", - "release": "", - "newVersion": "4.7.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "python3.8": { - "name": "python3.8", - "version": "3.8.5-1~20.04", - "release": "", - "newVersion": "3.8.5-1~20.04.2", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "python3.8-minimal": { - "name": "python3.8-minimal", - "version": "3.8.5-1~20.04", - "release": "", - "newVersion": "3.8.5-1~20.04.2", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main", - "AffectedProcs": [ - { - "pid": "462", - "name": "networkd-dispat" - }, - { - "pid": "626", - "name": "unattended-upgr" - } - ] - }, - "readline-common": { - "name": "readline-common", - "version": "8.0-4", - "release": "", - "newVersion": "8.0-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "rsync": { - "name": "rsync", - "version": "3.1.3-8", - "release": "", - "newVersion": "3.1.3-8", - "newRelease": "", - "arch": "", - "repository": "" - }, - "rsyslog": { - "name": "rsyslog", - "version": "8.2001.0-1ubuntu1.1", - "release": "", - "newVersion": "8.2001.0-1ubuntu1.1", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "464", - "name": "rsyslogd" - } - ] - }, - "run-one": { - "name": "run-one", - "version": "1.17-0ubuntu1", - "release": "", - "newVersion": "1.17-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sbsigntool": { - "name": "sbsigntool", - "version": "0.9.2-2ubuntu1", - "release": "", - "newVersion": "0.9.2-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "screen": { - "name": "screen", - "version": "4.8.0-1", - "release": "", - "newVersion": "4.8.0-1ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "secureboot-db": { - "name": "secureboot-db", - "version": "1.5", - "release": "", - "newVersion": "1.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sed": { - "name": "sed", - "version": "4.7-1", - "release": "", - "newVersion": "4.7-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sensible-utils": { - "name": "sensible-utils", - "version": "0.0.12+nmu1", - "release": "", - "newVersion": "0.0.12+nmu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sg3-utils": { - "name": "sg3-utils", - "version": "1.44-1ubuntu2", - "release": "", - "newVersion": "1.44-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sg3-utils-udev": { - "name": "sg3-utils-udev", - "version": "1.44-1ubuntu2", - "release": "", - "newVersion": "1.44-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "shared-mime-info": { - "name": "shared-mime-info", - "version": "1.15-1", - "release": "", - "newVersion": "1.15-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "snapd": { - "name": "snapd", - "version": "2.48.3+20.04", - "release": "", - "newVersion": "2.48.3+20.04", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "466", - "name": "snapd" - } - ] - }, - "software-properties-common": { - "name": "software-properties-common", - "version": "0.98.9.4", - "release": "", - "newVersion": "0.98.9.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sosreport": { - "name": "sosreport", - "version": "4.0-1~ubuntu0.20.04.3", - "release": "", - "newVersion": "4.0-1~ubuntu0.20.04.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sound-theme-freedesktop": { - "name": "sound-theme-freedesktop", - "version": "0.8-2ubuntu1", - "release": "", - "newVersion": "0.8-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "squashfs-tools": { - "name": "squashfs-tools", - "version": "1:4.4-1", - "release": "", - "newVersion": "1:4.4-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ssh-import-id": { - "name": "ssh-import-id", - "version": "5.10-0ubuntu1", - "release": "", - "newVersion": "5.10-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "strace": { - "name": "strace", - "version": "5.5-3ubuntu1", - "release": "", - "newVersion": "5.5-3ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "sudo": { - "name": "sudo", - "version": "1.8.31-1ubuntu1.2", - "release": "", - "newVersion": "1.8.31-1ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "", - "AffectedProcs": [ - { - "pid": "2285", - "name": "sudo" - } - ] - }, - "systemd": { - "name": "systemd", - "version": "245.4-4ubuntu3.4", - "release": "", - "newVersion": "245.4-4ubuntu3.5", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "systemd-sysv": { - "name": "systemd-sysv", - "version": "245.4-4ubuntu3.4", - "release": "", - "newVersion": "245.4-4ubuntu3.5", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "systemd-timesyncd": { - "name": "systemd-timesyncd", - "version": "245.4-4ubuntu3.4", - "release": "", - "newVersion": "245.4-4ubuntu3.5", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "sysvinit-utils": { - "name": "sysvinit-utils", - "version": "2.96-2.1ubuntu1", - "release": "", - "newVersion": "2.96-2.1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tar": { - "name": "tar", - "version": "1.30+dfsg-7ubuntu0.20.04.1", - "release": "", - "newVersion": "1.30+dfsg-7ubuntu0.20.04.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tcpdump": { - "name": "tcpdump", - "version": "4.9.3-4", - "release": "", - "newVersion": "4.9.3-4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "telnet": { - "name": "telnet", - "version": "0.17-41.2build1", - "release": "", - "newVersion": "0.17-41.2build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "thin-provisioning-tools": { - "name": "thin-provisioning-tools", - "version": "0.8.5-4build1", - "release": "", - "newVersion": "0.8.5-4build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "time": { - "name": "time", - "version": "1.7-25.1build1", - "release": "", - "newVersion": "1.7-25.1build1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tmux": { - "name": "tmux", - "version": "3.0a-2ubuntu0.2", - "release": "", - "newVersion": "3.0a-2ubuntu0.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tpm-udev": { - "name": "tpm-udev", - "version": "0.4", - "release": "", - "newVersion": "0.4", - "newRelease": "", - "arch": "", - "repository": "" - }, - "tzdata": { - "name": "tzdata", - "version": "2021a-0ubuntu0.20.04", - "release": "", - "newVersion": "2021a-0ubuntu0.20.04", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-advantage-tools": { - "name": "ubuntu-advantage-tools", - "version": "20.3", - "release": "", - "newVersion": "20.3", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-keyring": { - "name": "ubuntu-keyring", - "version": "2020.02.11.2", - "release": "", - "newVersion": "2020.02.11.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-minimal": { - "name": "ubuntu-minimal", - "version": "1.450.2", - "release": "", - "newVersion": "1.450.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-release-upgrader-core": { - "name": "ubuntu-release-upgrader-core", - "version": "1:20.04.30", - "release": "", - "newVersion": "1:20.04.30", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-server": { - "name": "ubuntu-server", - "version": "1.450.2", - "release": "", - "newVersion": "1.450.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ubuntu-standard": { - "name": "ubuntu-standard", - "version": "1.450.2", - "release": "", - "newVersion": "1.450.2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "ucf": { - "name": "ucf", - "version": "3.0038+nmu1", - "release": "", - "newVersion": "3.0038+nmu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "udev": { - "name": "udev", - "version": "245.4-4ubuntu3.4", - "release": "", - "newVersion": "245.4-4ubuntu3.5", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "ufw": { - "name": "ufw", - "version": "0.36-6", - "release": "", - "newVersion": "0.36-6", - "newRelease": "", - "arch": "", - "repository": "" - }, - "unattended-upgrades": { - "name": "unattended-upgrades", - "version": "2.3ubuntu0.1", - "release": "", - "newVersion": "2.3ubuntu0.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "update-manager-core": { - "name": "update-manager-core", - "version": "1:20.04.10.5", - "release": "", - "newVersion": "1:20.04.10.6", - "newRelease": "", - "arch": "", - "repository": "focal-updates/main" - }, - "update-notifier-common": { - "name": "update-notifier-common", - "version": "3.192.30.5", - "release": "", - "newVersion": "3.192.30.5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "usb.ids": { - "name": "usb.ids", - "version": "2020.03.19-1", - "release": "", - "newVersion": "2020.03.19-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "usbutils": { - "name": "usbutils", - "version": "1:012-2", - "release": "", - "newVersion": "1:012-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "util-linux": { - "name": "util-linux", - "version": "2.34-0.1ubuntu9.1", - "release": "", - "newVersion": "2.34-0.1ubuntu9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "uuid-runtime": { - "name": "uuid-runtime", - "version": "2.34-0.1ubuntu9.1", - "release": "", - "newVersion": "2.34-0.1ubuntu9.1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim": { - "name": "vim", - "version": "2:8.1.2269-1ubuntu5", - "release": "", - "newVersion": "2:8.1.2269-1ubuntu5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim-common": { - "name": "vim-common", - "version": "2:8.1.2269-1ubuntu5", - "release": "", - "newVersion": "2:8.1.2269-1ubuntu5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim-runtime": { - "name": "vim-runtime", - "version": "2:8.1.2269-1ubuntu5", - "release": "", - "newVersion": "2:8.1.2269-1ubuntu5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "vim-tiny": { - "name": "vim-tiny", - "version": "2:8.1.2269-1ubuntu5", - "release": "", - "newVersion": "2:8.1.2269-1ubuntu5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "wget": { - "name": "wget", - "version": "1.20.3-1ubuntu1", - "release": "", - "newVersion": "1.20.3-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "whiptail": { - "name": "whiptail", - "version": "0.52.21-4ubuntu2", - "release": "", - "newVersion": "0.52.21-4ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xauth": { - "name": "xauth", - "version": "1:1.1-0ubuntu1", - "release": "", - "newVersion": "1:1.1-0ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xdg-user-dirs": { - "name": "xdg-user-dirs", - "version": "0.17-2ubuntu1", - "release": "", - "newVersion": "0.17-2ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xfsprogs": { - "name": "xfsprogs", - "version": "5.3.0-1ubuntu2", - "release": "", - "newVersion": "5.3.0-1ubuntu2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xkb-data": { - "name": "xkb-data", - "version": "2.29-2", - "release": "", - "newVersion": "2.29-2", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xxd": { - "name": "xxd", - "version": "2:8.1.2269-1ubuntu5", - "release": "", - "newVersion": "2:8.1.2269-1ubuntu5", - "newRelease": "", - "arch": "", - "repository": "" - }, - "xz-utils": { - "name": "xz-utils", - "version": "5.2.4-1ubuntu1", - "release": "", - "newVersion": "5.2.4-1ubuntu1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "zerofree": { - "name": "zerofree", - "version": "1.1.1-1", - "release": "", - "newVersion": "1.1.1-1", - "newRelease": "", - "arch": "", - "repository": "" - }, - "zlib1g": { - "name": "zlib1g", - "version": "1:1.2.11.dfsg-2ubuntu1.2", - "release": "", - "newVersion": "1:1.2.11.dfsg-2ubuntu1.2", - "newRelease": "", - "arch": "", - "repository": "" - } - }, - "SrcPackages": { - "acl": { - "name": "acl", - "version": "2.2.53-6", - "arch": "", - "binaryNames": [ - "libacl1" - ] - }, - "alsa-lib": { - "name": "alsa-lib", - "version": "1.2.2-2.1ubuntu2.3", - "arch": "", - "binaryNames": [ - "libasound2", - "libasound2-data" - ] - }, - "appstream": { - "name": "appstream", - "version": "0.12.10-2", - "arch": "", - "binaryNames": [ - "libappstream4" - ] - }, - "argon2": { - "name": "argon2", - "version": "0~20171227-0.2", - "arch": "", - "binaryNames": [ - "libargon2-1" - ] - }, - "attr": { - "name": "attr", - "version": "1:2.4.48-5", - "arch": "", - "binaryNames": [ - "libattr1" - ] - }, - "audit": { - "name": "audit", - "version": "1:2.8.5-2ubuntu6", - "arch": "", - "binaryNames": [ - "libaudit-common", - "libaudit1" - ] - }, - "automat": { - "name": "automat", - "version": "0.8.0-1ubuntu1", - "arch": "", - "binaryNames": [ - "python3-automat" - ] - }, - "bind9": { - "name": "bind9", - "version": "1:9.16.1-0ubuntu2.6", - "arch": "", - "binaryNames": [ - "bind9-dnsutils", - "bind9-host", - "bind9-libs" - ] - }, - "blinker": { - "name": "blinker", - "version": "1.4+dfsg1-0.3ubuntu1", - "arch": "", - "binaryNames": [ - "python3-blinker" - ] - }, - "brotli": { - "name": "brotli", - "version": "1.0.7-6ubuntu0.1", - "arch": "", - "binaryNames": [ - "libbrotli1" - ] - }, - "busybox": { - "name": "busybox", - "version": "1:1.30.1-4ubuntu6.3", - "arch": "", - "binaryNames": [ - "busybox-initramfs", - "busybox-static" - ] - }, - "cdebconf": { - "name": "cdebconf", - "version": "0.251ubuntu1", - "arch": "", - "binaryNames": [ - "libdebconfclient0" - ] - }, - "chardet": { - "name": "chardet", - "version": "3.0.4-4build1", - "arch": "", - "binaryNames": [ - "python3-chardet" - ] - }, - "cloud-initramfs-tools": { - "name": "cloud-initramfs-tools", - "version": "0.45ubuntu1", - "arch": "", - "binaryNames": [ - "cloud-initramfs-copymods", - "cloud-initramfs-dyn-netconf", - "overlayroot" - ] - }, - "cloud-utils": { - "name": "cloud-utils", - "version": "0.31-7-gd99b2d76-0ubuntu1", - "arch": "", - "binaryNames": [ - "cloud-guest-utils" - ] - }, - "configobj": { - "name": "configobj", - "version": "5.0.6-4", - "arch": "", - "binaryNames": [ - "python3-configobj" - ] - }, - "constantly": { - "name": "constantly", - "version": "15.1.0-1build1", - "arch": "", - "binaryNames": [ - "python3-constantly" - ] - }, - "cyrus-sasl2": { - "name": "cyrus-sasl2", - "version": "2.1.27+dfsg-2", - "arch": "", - "binaryNames": [ - "libsasl2-2", - "libsasl2-modules", - "libsasl2-modules-db" - ] - }, - "db5.3": { - "name": "db5.3", - "version": "5.3.28+dfsg1-0.6ubuntu2", - "arch": "", - "binaryNames": [ - "libdb5.3" - ] - }, - "dbus-python": { - "name": "dbus-python", - "version": "1.2.16-1build1", - "arch": "", - "binaryNames": [ - "python3-dbus" - ] - }, - "dconf": { - "name": "dconf", - "version": "0.36.0-1", - "arch": "", - "binaryNames": [ - "dconf-gsettings-backend", - "dconf-service", - "libdconf1" - ] - }, - "distro-info": { - "name": "distro-info", - "version": "0.23ubuntu1", - "arch": "", - "binaryNames": [ - "python3-distro-info" - ] - }, - "efivar": { - "name": "efivar", - "version": "37-2ubuntu2.2", - "arch": "", - "binaryNames": [ - "libefiboot1", - "libefivar1" - ] - }, - "entrypoints": { - "name": "entrypoints", - "version": "0.3-2ubuntu1", - "arch": "", - "binaryNames": [ - "python3-entrypoints" - ] - }, - "expat": { - "name": "expat", - "version": "2.2.9-1build1", - "arch": "", - "binaryNames": [ - "libexpat1" - ] - }, - "flex": { - "name": "flex", - "version": "2.6.4-6.2", - "arch": "", - "binaryNames": [ - "libfl2" - ] - }, - "fonts-ubuntu": { - "name": "fonts-ubuntu", - "version": "0.83-4ubuntu1", - "arch": "", - "binaryNames": [ - "fonts-ubuntu-console" - ] - }, - "freetype": { - "name": "freetype", - "version": "2.10.1-2ubuntu0.1", - "arch": "", - "binaryNames": [ - "libfreetype6" - ] - }, - "fribidi": { - "name": "fribidi", - "version": "1.0.8-2", - "arch": "", - "binaryNames": [ - "libfribidi0" - ] - }, - "gcab": { - "name": "gcab", - "version": "1.4-1", - "arch": "", - "binaryNames": [ - "libgcab-1.0-0" - ] - }, - "gcc-10": { - "name": "gcc-10", - "version": "10.2.0-5ubuntu1~20.04", - "arch": "", - "binaryNames": [ - "gcc-10-base", - "libgcc-s1", - "libstdc++6" - ] - }, - "gdbm": { - "name": "gdbm", - "version": "1.18.1-5", - "arch": "", - "binaryNames": [ - "libgdbm-compat4", - "libgdbm6" - ] - }, - "gettext": { - "name": "gettext", - "version": "0.19.8.1-10build1", - "arch": "", - "binaryNames": [ - "gettext-base" - ] - }, - "glib2.0": { - "name": "glib2.0", - "version": "2.64.6-1~ubuntu20.04.1", - "arch": "", - "binaryNames": [ - "libglib2.0-0", - "libglib2.0-bin", - "libglib2.0-data" - ] - }, - "glibc": { - "name": "glibc", - "version": "2.31-0ubuntu9.2", - "arch": "", - "binaryNames": [ - "libc-bin", - "libc6", - "locales" - ] - }, - "gmp": { - "name": "gmp", - "version": "2:6.2.0+dfsg-4", - "arch": "", - "binaryNames": [ - "libgmp10" - ] - }, - "gnupg2": { - "name": "gnupg2", - "version": "2.2.19-3ubuntu2.1", - "arch": "", - "binaryNames": [ - "dirmngr", - "gnupg", - "gnupg-l10n", - "gnupg-utils", - "gpg", - "gpg-agent", - "gpg-wks-client", - "gpg-wks-server", - "gpgconf", - "gpgsm", - "gpgv" - ] - }, - "gnutls28": { - "name": "gnutls28", - "version": "3.6.13-2ubuntu1.3", - "arch": "", - "binaryNames": [ - "libgnutls30" - ] - }, - "gobject-introspection": { - "name": "gobject-introspection", - "version": "1.64.1-1~ubuntu20.04.1", - "arch": "", - "binaryNames": [ - "gir1.2-glib-2.0", - "libgirepository-1.0-1" - ] - }, - "gpgme1.0": { - "name": "gpgme1.0", - "version": "1.13.1-7ubuntu2", - "arch": "", - "binaryNames": [ - "libgpgme11" - ] - }, - "gpm": { - "name": "gpm", - "version": "1.20.7-5", - "arch": "", - "binaryNames": [ - "libgpm2" - ] - }, - "groff": { - "name": "groff", - "version": "1.22.4-4build1", - "arch": "", - "binaryNames": [ - "groff-base" - ] - }, - "grub2": { - "name": "grub2", - "version": "2.04-1ubuntu26.9", - "arch": "", - "binaryNames": [ - "grub-common", - "grub-pc", - "grub-pc-bin", - "grub2-common" - ] - }, - "gstreamer1.0": { - "name": "gstreamer1.0", - "version": "1.16.2-2", - "arch": "", - "binaryNames": [ - "libgstreamer1.0-0" - ] - }, - "heimdal": { - "name": "heimdal", - "version": "7.7.0+dfsg-1ubuntu1", - "arch": "", - "binaryNames": [ - "libasn1-8-heimdal", - "libgssapi3-heimdal", - "libhcrypto4-heimdal", - "libheimbase1-heimdal", - "libheimntlm0-heimdal", - "libhx509-5-heimdal", - "libkrb5-26-heimdal", - "libroken18-heimdal", - "libwind0-heimdal" - ] - }, - "hyperlink": { - "name": "hyperlink", - "version": "19.0.0-1", - "arch": "", - "binaryNames": [ - "python3-hyperlink" - ] - }, - "icu": { - "name": "icu", - "version": "66.1-2ubuntu2", - "arch": "", - "binaryNames": [ - "libicu66" - ] - }, - "incremental": { - "name": "incremental", - "version": "16.10.1-3.2", - "arch": "", - "binaryNames": [ - "python3-incremental" - ] - }, - "iputils": { - "name": "iputils", - "version": "3:20190709-3", - "arch": "", - "binaryNames": [ - "iputils-ping", - "iputils-tracepath" - ] - }, - "isc-dhcp": { - "name": "isc-dhcp", - "version": "4.4.1-2.1ubuntu5", - "arch": "", - "binaryNames": [ - "isc-dhcp-client", - "isc-dhcp-common" - ] - }, - "jinja2": { - "name": "jinja2", - "version": "2.10.1-2", - "arch": "", - "binaryNames": [ - "python3-jinja2" - ] - }, - "json-c": { - "name": "json-c", - "version": "0.13.1+dfsg-7ubuntu0.3", - "arch": "", - "binaryNames": [ - "libjson-c4" - ] - }, - "json-glib": { - "name": "json-glib", - "version": "1.4.4-2ubuntu2", - "arch": "", - "binaryNames": [ - "libjson-glib-1.0-0", - "libjson-glib-1.0-common" - ] - }, - "keyutils": { - "name": "keyutils", - "version": "1.6-6ubuntu1", - "arch": "", - "binaryNames": [ - "libkeyutils1" - ] - }, - "klibc": { - "name": "klibc", - "version": "2.0.7-1ubuntu5", - "arch": "", - "binaryNames": [ - "klibc-utils", - "libklibc" - ] - }, - "krb5": { - "name": "krb5", - "version": "1.17-6ubuntu4.1", - "arch": "", - "binaryNames": [ - "krb5-locales", - "libgssapi-krb5-2", - "libk5crypto3", - "libkrb5-3", - "libkrb5support0" - ] - }, - "landscape-client": { - "name": "landscape-client", - "version": "19.12-0ubuntu4.1", - "arch": "", - "binaryNames": [ - "landscape-common" - ] - }, - "language-selector": { - "name": "language-selector", - "version": "0.204.2", - "arch": "", - "binaryNames": [ - "language-selector-common" - ] - }, - "lazr.restfulclient": { - "name": "lazr.restfulclient", - "version": "0.14.2-2build1", - "arch": "", - "binaryNames": [ - "python3-lazr.restfulclient" - ] - }, - "lazr.uri": { - "name": "lazr.uri", - "version": "1.0.3-4build1", - "arch": "", - "binaryNames": [ - "python3-lazr.uri" - ] - }, - "libaio": { - "name": "libaio", - "version": "0.3.112-5", - "arch": "", - "binaryNames": [ - "libaio1" - ] - }, - "libarchive": { - "name": "libarchive", - "version": "3.4.0-2ubuntu1", - "arch": "", - "binaryNames": [ - "libarchive13" - ] - }, - "libassuan": { - "name": "libassuan", - "version": "2.5.3-7ubuntu2", - "arch": "", - "binaryNames": [ - "libassuan0" - ] - }, - "libbsd": { - "name": "libbsd", - "version": "0.10.0-1", - "arch": "", - "binaryNames": [ - "libbsd0" - ] - }, - "libcanberra": { - "name": "libcanberra", - "version": "0.30-7ubuntu1", - "arch": "", - "binaryNames": [ - "libcanberra0" - ] - }, - "libcap-ng": { - "name": "libcap-ng", - "version": "0.7.9-2.1build1", - "arch": "", - "binaryNames": [ - "libcap-ng0" - ] - }, - "libcbor": { - "name": "libcbor", - "version": "0.6.0-0ubuntu1", - "arch": "", - "binaryNames": [ - "libcbor0.6" - ] - }, - "libdrm": { - "name": "libdrm", - "version": "2.4.102-1ubuntu1~20.04.1", - "arch": "", - "binaryNames": [ - "libdrm-common", - "libdrm2" - ] - }, - "libeatmydata": { - "name": "libeatmydata", - "version": "105-7", - "arch": "", - "binaryNames": [ - "eatmydata", - "libeatmydata1" - ] - }, - "libedit": { - "name": "libedit", - "version": "3.1-20191231-1", - "arch": "", - "binaryNames": [ - "libedit2" - ] - }, - "libestr": { - "name": "libestr", - "version": "0.1.10-2.1", - "arch": "", - "binaryNames": [ - "libestr0" - ] - }, - "libevent": { - "name": "libevent", - "version": "2.1.11-stable-1", - "arch": "", - "binaryNames": [ - "libevent-2.1-7" - ] - }, - "libfastjson": { - "name": "libfastjson", - "version": "0.99.8-2", - "arch": "", - "binaryNames": [ - "libfastjson4" - ] - }, - "libffi": { - "name": "libffi", - "version": "3.3-4", - "arch": "", - "binaryNames": [ - "libffi7" - ] - }, - "libfido2": { - "name": "libfido2", - "version": "1.3.1-1ubuntu2", - "arch": "", - "binaryNames": [ - "libfido2-1" - ] - }, - "libgpg-error": { - "name": "libgpg-error", - "version": "1.37-1", - "arch": "", - "binaryNames": [ - "libgpg-error0" - ] - }, - "libgudev": { - "name": "libgudev", - "version": "233-1", - "arch": "", - "binaryNames": [ - "libgudev-1.0-0" - ] - }, - "libgusb": { - "name": "libgusb", - "version": "0.3.4-0.1", - "arch": "", - "binaryNames": [ - "libgusb2" - ] - }, - "libidn2": { - "name": "libidn2", - "version": "2.2.0-2", - "arch": "", - "binaryNames": [ - "libidn2-0" - ] - }, - "libksba": { - "name": "libksba", - "version": "1.3.5-2", - "arch": "", - "binaryNames": [ - "libksba8" - ] - }, - "libmaxminddb": { - "name": "libmaxminddb", - "version": "1.4.2-0ubuntu1.20.04.1", - "arch": "", - "binaryNames": [ - "libmaxminddb0" - ] - }, - "libmnl": { - "name": "libmnl", - "version": "1.0.4-2", - "arch": "", - "binaryNames": [ - "libmnl0" - ] - }, - "libmspack": { - "name": "libmspack", - "version": "0.10.1-2", - "arch": "", - "binaryNames": [ - "libmspack0" - ] - }, - "libnetfilter-conntrack": { - "name": "libnetfilter-conntrack", - "version": "1.0.7-2", - "arch": "", - "binaryNames": [ - "libnetfilter-conntrack3" - ] - }, - "libnfnetlink": { - "name": "libnfnetlink", - "version": "1.0.1-3build1", - "arch": "", - "binaryNames": [ - "libnfnetlink0" - ] - }, - "libnftnl": { - "name": "libnftnl", - "version": "1.1.5-1", - "arch": "", - "binaryNames": [ - "libnftnl11" - ] - }, - "libogg": { - "name": "libogg", - "version": "1.3.4-0ubuntu1", - "arch": "", - "binaryNames": [ - "libogg0" - ] - }, - "libpcap": { - "name": "libpcap", - "version": "1.9.1-3", - "arch": "", - "binaryNames": [ - "libpcap0.8" - ] - }, - "libpipeline": { - "name": "libpipeline", - "version": "1.5.2-2build1", - "arch": "", - "binaryNames": [ - "libpipeline1" - ] - }, - "libpng1.6": { - "name": "libpng1.6", - "version": "1.6.37-2", - "arch": "", - "binaryNames": [ - "libpng16-16" - ] - }, - "libproxy": { - "name": "libproxy", - "version": "0.4.15-10ubuntu1.2", - "arch": "", - "binaryNames": [ - "libproxy1v5" - ] - }, - "libpsl": { - "name": "libpsl", - "version": "0.21.0-1ubuntu1", - "arch": "", - "binaryNames": [ - "libpsl5" - ] - }, - "libseccomp": { - "name": "libseccomp", - "version": "2.4.3-1ubuntu3.20.04.3", - "arch": "", - "binaryNames": [ - "libseccomp2" - ] - }, - "libselinux": { - "name": "libselinux", - "version": "3.0-1build2", - "arch": "", - "binaryNames": [ - "libselinux1" - ] - }, - "libsemanage": { - "name": "libsemanage", - "version": "3.0-1build2", - "arch": "", - "binaryNames": [ - "libsemanage-common", - "libsemanage1" - ] - }, - "libsepol": { - "name": "libsepol", - "version": "3.0-1", - "arch": "", - "binaryNames": [ - "libsepol1" - ] - }, - "libsigsegv": { - "name": "libsigsegv", - "version": "2.12-2", - "arch": "", - "binaryNames": [ - "libsigsegv2" - ] - }, - "libsmbios": { - "name": "libsmbios", - "version": "2.4.3-1", - "arch": "", - "binaryNames": [ - "libsmbios-c2" - ] - }, - "libsodium": { - "name": "libsodium", - "version": "1.0.18-1", - "arch": "", - "binaryNames": [ - "libsodium23" - ] - }, - "libsoup2.4": { - "name": "libsoup2.4", - "version": "2.70.0-1", - "arch": "", - "binaryNames": [ - "libsoup2.4-1" - ] - }, - "libssh": { - "name": "libssh", - "version": "0.9.3-2ubuntu2.1", - "arch": "", - "binaryNames": [ - "libssh-4" - ] - }, - "libtool": { - "name": "libtool", - "version": "2.4.6-14", - "arch": "", - "binaryNames": [ - "libltdl7" - ] - }, - "libunistring": { - "name": "libunistring", - "version": "0.9.10-2", - "arch": "", - "binaryNames": [ - "libunistring2" - ] - }, - "libunwind": { - "name": "libunwind", - "version": "1.2.1-9build1", - "arch": "", - "binaryNames": [ - "libunwind8" - ] - }, - "liburcu": { - "name": "liburcu", - "version": "0.11.1-2", - "arch": "", - "binaryNames": [ - "liburcu6" - ] - }, - "libusb-1.0": { - "name": "libusb-1.0", - "version": "2:1.0.23-2build1", - "arch": "", - "binaryNames": [ - "libusb-1.0-0" - ] - }, - "libutempter": { - "name": "libutempter", - "version": "1.1.6-4", - "arch": "", - "binaryNames": [ - "libutempter0" - ] - }, - "libvorbis": { - "name": "libvorbis", - "version": "1.3.6-2ubuntu1", - "arch": "", - "binaryNames": [ - "libvorbis0a", - "libvorbisfile3" - ] - }, - "libx11": { - "name": "libx11", - "version": "2:1.6.9-2ubuntu1.1", - "arch": "", - "binaryNames": [ - "libx11-6", - "libx11-data" - ] - }, - "libxau": { - "name": "libxau", - "version": "1:1.0.9-0ubuntu1", - "arch": "", - "binaryNames": [ - "libxau6" - ] - }, - "libxcb": { - "name": "libxcb", - "version": "1.14-2", - "arch": "", - "binaryNames": [ - "libxcb1" - ] - }, - "libxcrypt": { - "name": "libxcrypt", - "version": "1:4.4.10-10ubuntu4", - "arch": "", - "binaryNames": [ - "libcrypt1" - ] - }, - "libxdmcp": { - "name": "libxdmcp", - "version": "1:1.1.3-0ubuntu1", - "arch": "", - "binaryNames": [ - "libxdmcp6" - ] - }, - "libxext": { - "name": "libxext", - "version": "2:1.3.4-0ubuntu1", - "arch": "", - "binaryNames": [ - "libxext6" - ] - }, - "libxmlb": { - "name": "libxmlb", - "version": "0.1.15-2", - "arch": "", - "binaryNames": [ - "libxmlb1" - ] - }, - "libxmu": { - "name": "libxmu", - "version": "2:1.1.3-0ubuntu1", - "arch": "", - "binaryNames": [ - "libxmuu1" - ] - }, - "libxslt": { - "name": "libxslt", - "version": "1.1.34-4", - "arch": "", - "binaryNames": [ - "libxslt1.1" - ] - }, - "libyaml": { - "name": "libyaml", - "version": "0.2.2-1", - "arch": "", - "binaryNames": [ - "libyaml-0-2" - ] - }, - "libzstd": { - "name": "libzstd", - "version": "1.4.4+dfsg-3", - "arch": "", - "binaryNames": [ - "libzstd1" - ] - }, - "linux-atm": { - "name": "linux-atm", - "version": "1:2.5.1-4", - "arch": "", - "binaryNames": [ - "libatm1" - ] - }, - "linux-meta-aws": { - "name": "linux-meta-aws", - "version": "5.4.0.1038.39", - "arch": "", - "binaryNames": [ - "linux-aws", - "linux-headers-aws", - "linux-image-aws" - ] - }, - "lmdb": { - "name": "lmdb", - "version": "0.9.24-1", - "arch": "", - "binaryNames": [ - "liblmdb0" - ] - }, - "lsb": { - "name": "lsb", - "version": "11.1.0ubuntu2", - "arch": "", - "binaryNames": [ - "lsb-base", - "lsb-release" - ] - }, - "lzo2": { - "name": "lzo2", - "version": "2.10-2", - "arch": "", - "binaryNames": [ - "liblzo2-2" - ] - }, - "markupsafe": { - "name": "markupsafe", - "version": "1.1.0-1build2", - "arch": "", - "binaryNames": [ - "python3-markupsafe" - ] - }, - "more-itertools": { - "name": "more-itertools", - "version": "4.2.0-1build1", - "arch": "", - "binaryNames": [ - "python3-more-itertools" - ] - }, - "mpdecimal": { - "name": "mpdecimal", - "version": "2.4.2-3", - "arch": "", - "binaryNames": [ - "libmpdec2" - ] - }, - "mpfr4": { - "name": "mpfr4", - "version": "4.0.2-1", - "arch": "", - "binaryNames": [ - "libmpfr6" - ] - }, - "mtr": { - "name": "mtr", - "version": "0.93-1", - "arch": "", - "binaryNames": [ - "mtr-tiny" - ] - }, - "ncurses": { - "name": "ncurses", - "version": "6.2-0ubuntu2", - "arch": "", - "binaryNames": [ - "libncurses6", - "libncursesw6", - "libtinfo6", - "ncurses-base", - "ncurses-bin", - "ncurses-term" - ] - }, - "netifaces": { - "name": "netifaces", - "version": "0.10.4-1ubuntu4", - "arch": "", - "binaryNames": [ - "python3-netifaces" - ] - }, - "netkit-ftp": { - "name": "netkit-ftp", - "version": "0.17-34.1", - "arch": "", - "binaryNames": [ - "ftp" - ] - }, - "netkit-telnet": { - "name": "netkit-telnet", - "version": "0.17-41.2build1", - "arch": "", - "binaryNames": [ - "telnet" - ] - }, - "nettle": { - "name": "nettle", - "version": "3.5.1+really3.5.1-2", - "arch": "", - "binaryNames": [ - "libhogweed5", - "libnettle7" - ] - }, - "newt": { - "name": "newt", - "version": "0.52.21-4ubuntu2", - "arch": "", - "binaryNames": [ - "libnewt0.52", - "python3-newt", - "whiptail" - ] - }, - "nghttp2": { - "name": "nghttp2", - "version": "1.40.0-1build1", - "arch": "", - "binaryNames": [ - "libnghttp2-14" - ] - }, - "npth": { - "name": "npth", - "version": "1.6-1", - "arch": "", - "binaryNames": [ - "libnpth0" - ] - }, - "numactl": { - "name": "numactl", - "version": "2.0.12-1", - "arch": "", - "binaryNames": [ - "libnuma1" - ] - }, - "open-isns": { - "name": "open-isns", - "version": "0.97-3", - "arch": "", - "binaryNames": [ - "libisns0" - ] - }, - "openldap": { - "name": "openldap", - "version": "2.4.49+dfsg-2ubuntu1.7", - "arch": "", - "binaryNames": [ - "libldap-2.4-2", - "libldap-common" - ] - }, - "openssh": { - "name": "openssh", - "version": "1:8.2p1-4ubuntu0.1", - "arch": "", - "binaryNames": [ - "openssh-client", - "openssh-server", - "openssh-sftp-server" - ] - }, - "p11-kit": { - "name": "p11-kit", - "version": "0.23.20-1ubuntu0.1", - "arch": "", - "binaryNames": [ - "libp11-kit0" - ] - }, - "pam": { - "name": "pam", - "version": "1.3.1-5ubuntu4.1", - "arch": "", - "binaryNames": [ - "libpam-modules", - "libpam-modules-bin", - "libpam-runtime", - "libpam0g" - ] - }, - "pcre2": { - "name": "pcre2", - "version": "10.34-7", - "arch": "", - "binaryNames": [ - "libpcre2-8-0" - ] - }, - "pcre3": { - "name": "pcre3", - "version": "2:8.39-12build1", - "arch": "", - "binaryNames": [ - "libpcre3" - ] - }, - "pexpect": { - "name": "pexpect", - "version": "4.6.0-1build1", - "arch": "", - "binaryNames": [ - "python3-pexpect" - ] - }, - "pinentry": { - "name": "pinentry", - "version": "1.1.0-3build1", - "arch": "", - "binaryNames": [ - "pinentry-curses" - ] - }, - "popt": { - "name": "popt", - "version": "1.16-14", - "arch": "", - "binaryNames": [ - "libpopt0" - ] - }, - "ptyprocess": { - "name": "ptyprocess", - "version": "0.6.0-1ubuntu1", - "arch": "", - "binaryNames": [ - "python3-ptyprocess" - ] - }, - "pyasn1": { - "name": "pyasn1", - "version": "0.4.2-3build1", - "arch": "", - "binaryNames": [ - "python3-pyasn1" - ] - }, - "pygobject": { - "name": "pygobject", - "version": "3.36.0-1", - "arch": "", - "binaryNames": [ - "python3-gi" - ] - }, - "pyhamcrest": { - "name": "pyhamcrest", - "version": "1.9.0-3", - "arch": "", - "binaryNames": [ - "python3-hamcrest" - ] - }, - "pyjwt": { - "name": "pyjwt", - "version": "1.7.1-2ubuntu2", - "arch": "", - "binaryNames": [ - "python3-jwt" - ] - }, - "pymacaroons": { - "name": "pymacaroons", - "version": "0.13.0-3", - "arch": "", - "binaryNames": [ - "python3-pymacaroons" - ] - }, - "pyopenssl": { - "name": "pyopenssl", - "version": "19.0.0-1build1", - "arch": "", - "binaryNames": [ - "python3-openssl" - ] - }, - "pyrsistent": { - "name": "pyrsistent", - "version": "0.15.5-1build1", - "arch": "", - "binaryNames": [ - "python3-pyrsistent" - ] - }, - "pyserial": { - "name": "pyserial", - "version": "3.4-5.1", - "arch": "", - "binaryNames": [ - "python3-serial" - ] - }, - "python-apt": { - "name": "python-apt", - "version": "2.0.0ubuntu0.20.04.4", - "arch": "", - "binaryNames": [ - "python-apt-common", - "python3-apt" - ] - }, - "python-attrs": { - "name": "python-attrs", - "version": "19.3.0-2", - "arch": "", - "binaryNames": [ - "python3-attr" - ] - }, - "python-certifi": { - "name": "python-certifi", - "version": "2019.11.28-1", - "arch": "", - "binaryNames": [ - "python3-certifi" - ] - }, - "python-cffi": { - "name": "python-cffi", - "version": "1.14.0-1build1", - "arch": "", - "binaryNames": [ - "python3-cffi-backend" - ] - }, - "python-click": { - "name": "python-click", - "version": "7.0-3", - "arch": "", - "binaryNames": [ - "python3-click" - ] - }, - "python-colorama": { - "name": "python-colorama", - "version": "0.4.3-1build1", - "arch": "", - "binaryNames": [ - "python3-colorama" - ] - }, - "python-cryptography": { - "name": "python-cryptography", - "version": "2.8-3ubuntu0.1", - "arch": "", - "binaryNames": [ - "python3-cryptography" - ] - }, - "python-debian": { - "name": "python-debian", - "version": "0.1.36ubuntu1", - "arch": "", - "binaryNames": [ - "python3-debian" - ] - }, - "python-distro": { - "name": "python-distro", - "version": "1.4.0-1", - "arch": "", - "binaryNames": [ - "python3-distro" - ] - }, - "python-httplib2": { - "name": "python-httplib2", - "version": "0.14.0-1ubuntu1", - "arch": "", - "binaryNames": [ - "python3-httplib2" - ] - }, - "python-idna": { - "name": "python-idna", - "version": "2.8-1", - "arch": "", - "binaryNames": [ - "python3-idna" - ] - }, - "python-importlib-metadata": { - "name": "python-importlib-metadata", - "version": "1.5.0-1", - "arch": "", - "binaryNames": [ - "python3-importlib-metadata" - ] - }, - "python-json-patch": { - "name": "python-json-patch", - "version": "1.23-3", - "arch": "", - "binaryNames": [ - "python3-jsonpatch" - ] - }, - "python-json-pointer": { - "name": "python-json-pointer", - "version": "2.0-0ubuntu1", - "arch": "", - "binaryNames": [ - "python3-json-pointer" - ] - }, - "python-jsonschema": { - "name": "python-jsonschema", - "version": "3.2.0-0ubuntu2", - "arch": "", - "binaryNames": [ - "python3-jsonschema" - ] - }, - "python-keyring": { - "name": "python-keyring", - "version": "18.0.1-2ubuntu1", - "arch": "", - "binaryNames": [ - "python3-keyring" - ] - }, - "python-launchpadlib": { - "name": "python-launchpadlib", - "version": "1.10.13-1", - "arch": "", - "binaryNames": [ - "python3-launchpadlib" - ] - }, - "python-nacl": { - "name": "python-nacl", - "version": "1.3.0-5", - "arch": "", - "binaryNames": [ - "python3-nacl" - ] - }, - "python-oauthlib": { - "name": "python-oauthlib", - "version": "3.1.0-1ubuntu2", - "arch": "", - "binaryNames": [ - "python3-oauthlib" - ] - }, - "python-pyasn1-modules": { - "name": "python-pyasn1-modules", - "version": "0.2.1-0.2build1", - "arch": "", - "binaryNames": [ - "python3-pyasn1-modules" - ] - }, - "python-requests-unixsocket": { - "name": "python-requests-unixsocket", - "version": "0.2.0-2", - "arch": "", - "binaryNames": [ - "python3-requests-unixsocket" - ] - }, - "python-secretstorage": { - "name": "python-secretstorage", - "version": "2.3.1-2ubuntu1", - "arch": "", - "binaryNames": [ - "python3-secretstorage" - ] - }, - "python-service-identity": { - "name": "python-service-identity", - "version": "18.1.0-5build1", - "arch": "", - "binaryNames": [ - "python3-service-identity" - ] - }, - "python-systemd": { - "name": "python-systemd", - "version": "234-3build2", - "arch": "", - "binaryNames": [ - "python3-systemd" - ] - }, - "python-urllib3": { - "name": "python-urllib3", - "version": "1.25.8-2ubuntu0.1", - "arch": "", - "binaryNames": [ - "python3-urllib3" - ] - }, - "python-wadllib": { - "name": "python-wadllib", - "version": "1.3.3-3build1", - "arch": "", - "binaryNames": [ - "python3-wadllib" - ] - }, - "python-zipp": { - "name": "python-zipp", - "version": "1.0.0-1", - "arch": "", - "binaryNames": [ - "python3-zipp" - ] - }, - "python3-defaults": { - "name": "python3-defaults", - "version": "3.8.2-0ubuntu2", - "arch": "", - "binaryNames": [ - "libpython3-stdlib", - "python3", - "python3-minimal" - ] - }, - "python3-stdlib-extensions": { - "name": "python3-stdlib-extensions", - "version": "3.8.5-1~20.04.1", - "arch": "", - "binaryNames": [ - "python3-distutils", - "python3-gdbm", - "python3-lib2to3" - ] - }, - "pyyaml": { - "name": "pyyaml", - "version": "5.3.1-1", - "arch": "", - "binaryNames": [ - "python3-yaml" - ] - }, - "readline": { - "name": "readline", - "version": "8.0-4", - "arch": "", - "binaryNames": [ - "libreadline8", - "readline-common" - ] - }, - "readline5": { - "name": "readline5", - "version": "5.2+dfsg-3build3", - "arch": "", - "binaryNames": [ - "libreadline5" - ] - }, - "requests": { - "name": "requests", - "version": "2.22.0-2ubuntu1", - "arch": "", - "binaryNames": [ - "python3-requests" - ] - }, - "rtmpdump": { - "name": "rtmpdump", - "version": "2.4+20151223.gitfa8646d.1-2build1", - "arch": "", - "binaryNames": [ - "librtmp1" - ] - }, - "setuptools": { - "name": "setuptools", - "version": "45.2.0-1", - "arch": "", - "binaryNames": [ - "python3-pkg-resources", - "python3-setuptools" - ] - }, - "shadow": { - "name": "shadow", - "version": "1:4.8.1-1ubuntu5.20.04", - "arch": "", - "binaryNames": [ - "login", - "passwd" - ] - }, - "simplejson": { - "name": "simplejson", - "version": "3.16.0-2ubuntu2", - "arch": "", - "binaryNames": [ - "python3-simplejson" - ] - }, - "six": { - "name": "six", - "version": "1.14.0-2", - "arch": "", - "binaryNames": [ - "python3-six" - ] - }, - "slang2": { - "name": "slang2", - "version": "2.3.2-4", - "arch": "", - "binaryNames": [ - "libslang2" - ] - }, - "snowball": { - "name": "snowball", - "version": "0+svn585-2", - "arch": "", - "binaryNames": [ - "libstemmer0d" - ] - }, - "software-properties": { - "name": "software-properties", - "version": "0.98.9.4", - "arch": "", - "binaryNames": [ - "python3-software-properties", - "software-properties-common" - ] - }, - "sqlite3": { - "name": "sqlite3", - "version": "3.31.1-4ubuntu0.2", - "arch": "", - "binaryNames": [ - "libsqlite3-0" - ] - }, - "sysvinit": { - "name": "sysvinit", - "version": "2.96-2.1ubuntu1", - "arch": "", - "binaryNames": [ - "sysvinit-utils" - ] - }, - "tcp-wrappers": { - "name": "tcp-wrappers", - "version": "7.6.q-30", - "arch": "", - "binaryNames": [ - "libwrap0" - ] - }, - "tdb": { - "name": "tdb", - "version": "1.4.2-3build1", - "arch": "", - "binaryNames": [ - "libtdb1" - ] - }, - "texinfo": { - "name": "texinfo", - "version": "6.7.0.dfsg.2-5", - "arch": "", - "binaryNames": [ - "info", - "install-info" - ] - }, - "tpm2-tss": { - "name": "tpm2-tss", - "version": "2.3.2-1", - "arch": "", - "binaryNames": [ - "libtss2-esys0" - ] - }, - "twisted": { - "name": "twisted", - "version": "18.9.0-11", - "arch": "", - "binaryNames": [ - "python3-twisted", - "python3-twisted-bin" - ] - }, - "ubuntu-meta": { - "name": "ubuntu-meta", - "version": "1.450.2", - "arch": "", - "binaryNames": [ - "ubuntu-minimal", - "ubuntu-server", - "ubuntu-standard" - ] - }, - "ubuntu-release-upgrader": { - "name": "ubuntu-release-upgrader", - "version": "1:20.04.30", - "arch": "", - "binaryNames": [ - "python3-distupgrade", - "ubuntu-release-upgrader-core" - ] - }, - "uchardet": { - "name": "uchardet", - "version": "0.0.6-3build1", - "arch": "", - "binaryNames": [ - "libuchardet0" - ] - }, - "update-manager": { - "name": "update-manager", - "version": "1:20.04.10.5", - "arch": "", - "binaryNames": [ - "python3-update-manager", - "update-manager-core" - ] - }, - "update-notifier": { - "name": "update-notifier", - "version": "3.192.30.5", - "arch": "", - "binaryNames": [ - "update-notifier-common" - ] - }, - "xkeyboard-config": { - "name": "xkeyboard-config", - "version": "2.29-2", - "arch": "", - "binaryNames": [ - "xkb-data" - ] - }, - "xmlsec1": { - "name": "xmlsec1", - "version": "1.2.28-2", - "arch": "", - "binaryNames": [ - "libxmlsec1", - "libxmlsec1-openssl" - ] - }, - "zlib": { - "name": "zlib", - "version": "1:1.2.11.dfsg-2ubuntu1.2", - "arch": "", - "binaryNames": [ - "zlib1g" - ] - }, - "zope.interface": { - "name": "zope.interface", - "version": "4.7.1-1", - "arch": "", - "binaryNames": [ - "python3-zope.interface" - ] - } - }, - "constant": { - "scan": { - "logDir": "/var/log/vuls", - "resultsDir": "/home/ubuntu/go/src/github.com/future-architect/vuls/results", - "default": { - "port": "22", - "scanMode": [ - "fast" - ] - }, - "servers": { - "ubuntu_20": { - "serverName": "ubuntu_20", - "user": "ubuntu", - "host": "18.179.206.143", - "port": "22", - "keyPath": "/home/ubuntu/.ssh/stg.pem", - "scanMode": [ - "fast-root" - ], - "wordpress": {} - } - }, - "cveDict": { - "Name": "cveDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/go-cve-dictionary/cve.sqlite3", - "DebugSQL": false - }, - "ovalDict": { - "Name": "ovalDict", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/kotakanbe/goval-dictionary/oval.sqlite3", - "DebugSQL": false - }, - "gost": { - "Name": "gost", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/future-architect/vuls/gost.sqlite3", - "DebugSQL": false - }, - "exploit": { - "Name": "exploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/vulsio/go-exploitdb/go-exploitdb.sqlite3", - "DebugSQL": false - }, - "metasploit": { - "Name": "metasploit", - "Type": "sqlite3", - "SQLite3Path": "/home/ubuntu/go/src/github.com/takuzoo3868/go-msfdb/go-msfdb.sqlite3", - "DebugSQL": false - } - }, - "report": { - "default": {}, - "cveDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "ovalDict": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "gost": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "exploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - }, - "metasploit": { - "Name": "", - "Type": "", - "SQLite3Path": "", - "DebugSQL": false - } - } - } -} diff --git a/integration/int-config.toml b/integration/int-config.toml index 71c7c6c3..8c59b8c2 100755 --- a/integration/int-config.toml +++ b/integration/int-config.toml @@ -24,4 +24,32 @@ [servers.rails] type = "pseudo" -cpeNames = [ "cpe:/a:rubyonrails:ruby_on_rails:3.0.1" ] +cpeNames = [ "cpe:/a:rubyonrails:ruby_on_rails:3.0.1" ] + +[servers.gemfile] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/Gemfile.lock"] + +[servers.pipfile] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/Pipfile.lock"] + +[servers.poetry] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/poetry.lock"] + +[servers.composer] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/composer.lock"] + +[servers.packagelock] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/package-lock.json"] + +[servers.yarn] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/yarn.lock"] + +[servers.cargo] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/Cargo.lock"] diff --git a/integration/int-redis-config.toml b/integration/int-redis-config.toml index ae64d10a..3013cd38 100755 --- a/integration/int-redis-config.toml +++ b/integration/int-redis-config.toml @@ -25,3 +25,31 @@ Url = "redis://127.0.0.1/3" [servers.rails] type = "pseudo" cpeNames = [ "cpe:/a:rubyonrails:ruby_on_rails:3.0.1" ] + +[servers.gemfile] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/Gemfile.lock"] + +[servers.pipfile] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/Pipfile.lock"] + +[servers.poetry] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/poetry.lock"] + +[servers.composer] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/composer.lock"] + +[servers.packagelock] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/package-lock.json"] + +[servers.yarn] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/yarn.lock"] + +[servers.cargo] +type = "pseudo" +lockfiles = ["./integration/data/lockfile/Cargo.lock"] diff --git a/models/library.go b/models/library.go index b7c61d09..6bcbb3f6 100644 --- a/models/library.go +++ b/models/library.go @@ -40,13 +40,14 @@ func (lss LibraryScanners) Total() (total int) { // LibraryScanner has libraries information type LibraryScanner struct { + Type string Path string Libs []types.Library } // Scan : scan target library func (s LibraryScanner) Scan() ([]VulnInfo, error) { - scanner, err := library.DriverFactory{}.NewDriver(filepath.Base(string(s.Path))) + scanner, err := library.NewDriver(s.Type) if err != nil { return nil, xerrors.Errorf("Failed to new a library driver: %w", err) } diff --git a/models/scanresults.go b/models/scanresults.go index cf92c7ea..da698703 100644 --- a/models/scanresults.go +++ b/models/scanresults.go @@ -386,6 +386,12 @@ func (r *ScanResult) SortForJSONOutput() { }) r.Packages[k] = v } + for i, v := range r.LibraryScanners { + sort.SliceStable(v.Libs, func(i, j int) bool { + return v.Libs[i].Name < v.Libs[j].Name + }) + r.LibraryScanners[i] = v + } for k, v := range r.ScannedCves { sort.SliceStable(v.AffectedPackages, func(i, j int) bool { @@ -425,7 +431,6 @@ func (r *ScanResult) SortForJSONOutput() { sort.SliceStable(v.AlertDict.Ja, func(i, j int) bool { return v.AlertDict.Ja[i].Title < v.AlertDict.Ja[j].Title }) - r.ScannedCves[k] = v } } diff --git a/scanner/base.go b/scanner/base.go index 95d0e3c6..c2722b3c 100644 --- a/scanner/base.go +++ b/scanner/base.go @@ -2,13 +2,16 @@ package scanner import ( "bufio" + "context" "encoding/json" "fmt" "io/ioutil" "net" "os" + "path/filepath" "regexp" "strings" + "sync" "time" "github.com/aquasecurity/fanal/analyzer" @@ -18,6 +21,7 @@ import ( "github.com/future-architect/vuls/logging" "github.com/future-architect/vuls/models" "github.com/future-architect/vuls/util" + "golang.org/x/sync/semaphore" "golang.org/x/xerrors" // Import library scanner @@ -579,6 +583,11 @@ func (l *base) scanLibraries() (err error) { if path == "" { continue } + + if path, err = filepath.Abs(path); err != nil { + return xerrors.Errorf("Failed to abs the lockfile. err: %w, filepath: %s", err, path) + } + // skip already exist if _, ok := libFilemap[path]; ok { continue @@ -589,7 +598,7 @@ func (l *base) scanLibraries() (err error) { case constant.ServerTypePseudo: bytes, err = ioutil.ReadFile(path) if err != nil { - return xerrors.Errorf("Failed to get target file: %s, filepath: %s", err, path) + return xerrors.Errorf("Failed to get target file. err: %w, filepath: %s", err, path) } default: cmd := fmt.Sprintf("cat %s", path) @@ -602,16 +611,47 @@ func (l *base) scanLibraries() (err error) { libFilemap[path] = bytes } + disabledAnalyzers := []analyzer.Type{ + analyzer.TypeAlpine, + analyzer.TypeAmazon, + analyzer.TypeDebian, + analyzer.TypePhoton, + analyzer.TypeCentOS, + analyzer.TypeFedora, + analyzer.TypeOracle, + analyzer.TypeRedHatBase, + analyzer.TypeSUSE, + analyzer.TypeUbuntu, + analyzer.TypeApk, + analyzer.TypeDpkg, + analyzer.TypeRpm, + analyzer.TypeApkCommand, + analyzer.TypeYaml, + analyzer.TypeTOML, + analyzer.TypeJSON, + analyzer.TypeDockerfile, + analyzer.TypeHCL, + } + anal := analyzer.NewAnalyzer(disabledAnalyzers) + for path, b := range libFilemap { - res, err := analyzer.AnalyzeFile(path, &DummyFileInfo{}, func() ([]byte, error) { - return b, nil - }) - if err != nil { - return xerrors.Errorf("Failed to get libs: %w", err) + var wg sync.WaitGroup + result := new(analyzer.AnalysisResult) + if err := anal.AnalyzeFile( + context.Background(), + &wg, + semaphore.NewWeighted(1), + result, + path, + &DummyFileInfo{}, + func() ([]byte, error) { return b, nil }); err != nil { + return xerrors.Errorf("Failed to get libs. err: %w", err) } - libscan, err := convertLibWithScanner(res.Applications) + wg.Wait() + + libscan, err := convertLibWithScanner(result.Applications) if err != nil { - return xerrors.Errorf("Failed to scan libraries: %w", err) + return xerrors.Errorf("Failed to convert libs. err: %w", err) } l.LibraryScanners = append(l.LibraryScanners, libscan...) } diff --git a/scanner/library.go b/scanner/library.go index ce17d0de..f68cbdb9 100644 --- a/scanner/library.go +++ b/scanner/library.go @@ -18,6 +18,7 @@ func convertLibWithScanner(apps []types.Application) ([]models.LibraryScanner, e }) } scanners = append(scanners, models.LibraryScanner{ + Type: app.Type, Path: app.FilePath, Libs: libs, }) diff --git a/server/server.go b/server/server.go index 5b23da23..bf40861e 100644 --- a/server/server.go +++ b/server/server.go @@ -84,14 +84,14 @@ func (h VulsHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { logging.Log.Errorf("Failed to fill with exploit: %+v", err) http.Error(w, err.Error(), http.StatusServiceUnavailable) } - logging.Log.Infof("%s: %d exploits are detected", r.FormatServerName(), nExploitCve) + logging.Log.Infof("%s: %d PoC detected", r.FormatServerName(), nExploitCve) nMetasploitCve, err := detector.FillWithMetasploit(&r, config.Conf.Metasploit) if err != nil { logging.Log.Errorf("Failed to fill with metasploit: %+v", err) http.Error(w, err.Error(), http.StatusServiceUnavailable) } - logging.Log.Infof("%s: %d modules are detected", r.FormatServerName(), nMetasploitCve) + logging.Log.Infof("%s: %d exploits are detected", r.FormatServerName(), nMetasploitCve) detector.FillCweDict(&r)