pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

consul: Update to 1.9.0



Module Name:	pkgsrc-wip
Committed By:	Iku Iwasa <iku.iwasa%gmail.com@localhost>
Pushed By:	iquiw
Date:		Sat Nov 28 10:29:35 2020 +0900
Changeset:	8c6851d76f7780bcb2afa55c8bd29be73d13df7e

Modified Files:
	consul/Makefile
	consul/distinfo
	consul/go-modules.mk

Log Message:
consul: Update to 1.9.0

BREAKING CHANGES:

* agent: The enable_central_service_config option now defaults to
  true. [GH-8746]
* connect: Switch the default gateway port from 443 to 8443 to avoid
  assumption of Envoy running as root. [GH-9113]
* connect: Update Envoy metrics names and labels for proxy listeners so
  that attributes like datacenter and namespace can be extracted. [GH-9207]
* connect: intention destinations can no longer be reassigned [GH-8834]
* raft: Raft protocol v2 is no longer supported. If currently using
  protocol v2 then an intermediate upgrade to a version supporting both v2
  and v3 protocols will be necessary (1.0.0 - 1.8.x). Note that the Raft
  protocol configured with the raft_protocol setting and the Consul RPC
  protocol configured with the protocol setting and output by the consul
  version command are distinct and supported Consul RPC protocol versions are
  not altered. [GH-9103]
* sentinel: (Consul Enterprise only) update to v0.16.0, which replaces
  whitelist and blacklist with allowlist and denylist
* server: (Enterprise only) Pre-existing intentions defined with
  non-existent destination namespaces were non-functional and are erased
  during the upgrade process. This should not matter as these intentions had
  nothing to enforce. [GH-9186]
* server: (OSS only) Pre-existing intentions defined with either a source
  or destination namespace value that is not "default" are rewritten or
  deleted during the upgrade process. Wildcards first attempt to downgrade to
  "default" unless an intention already exists, otherwise these
  non-functional intentions are deleted. [GH-9186]
* xds: Drop support for Envoy versions 1.12.0, 1.12.1, 1.12.2, and 1.13.0,
  due to a lack of support for url_path in RBAC. [GH-8839]

SECURITY:

* Fix Consul Enterprise Namespace Config Entry Replication DoS. Previously
  an operator with service:write ACL permissions in a Consul Enterprise
  cluster could write a malicious config entry that caused infinite raft
  writes due to issues with the namespace replication logic. [CVE-2020-25201]
  [GH-9024]
* Increase the permissions to read from the /connect/ca/configuration
  endpoint to operator:write. Previously Connect CA configuration, including
  the private key, set via this endpoint could be read back by an operator
  with operator:read privileges. CVE-2020-28053 [GH-9240]

FEATURES:

* agent: Add a new RPC endpoint for streaming cluster state change events
  to clients.
* agent: Allow client agents to be configured with an advertised reconnect
  timeout to control how long until the nodes are reaped by others in the
  cluster. [GH-8781]
* agent: moved ui config options to a new ui_config stanza in agent
  configuration and added new options to display service metrics in the
  UI. [GH-8694]
* agent: return the default ACL policy to callers as a header [GH-9101]
* autopilot: A new /v1/operator/autopilot/state HTTP API was created to
  give greater visibility into what autopilot is doing and how it has
  classified all the servers it is tracking. [GH-9103]
* autopilot: Added a new consul operator autopilot state command to
  retrieve and view the Autopilot state from consul. [GH-9142]
* cli: update snapshot inspect command to provide more detailed snapshot
  data [GH-8787]
* connect: support defining intentions using layer 7 criteria [GH-8839]
* telemetry: add initialization and definition for non-expiring key metrics
  in Prometheus [GH-9088]
* telemetry: track node and service counts and emit them as metrics
  [GH-8603]
* ui: If Prometheus is being used for monitoring the sidecars, the topology
  view can be configured to display overview metrics for the
  services. [GH-8858]
* ui: Services using Connect with Envoy sidecars have a topology tab in the
  UI showing their upstream and downstream services. [GH-8788]
* xds: use envoy's rbac filter to handle intentions entirely within envoy
  [GH-8569]

IMPROVEMENTS:

* agent: Return HTTP 429 when connections per clients
  limit (limits.http_max_conns_per_client) has been reached. [GH-8221]
* agent: add path_allowlist config option to restrict metrics proxy queries
  [GH-9059]
* agent: allow the /v1/connect/intentions/match endpoint to use the agent
  cache [GH-8875]
* agent: protect the metrics proxy behind ACLs [GH-9099]
* api: The v1/connect/ca/roots endpoint now accepts a pem=true query
  parameter and will return a PEM encoded certificate chain of all the
  certificates that would normally be in the JSON version of the
  response. [GH-8774]
* api: support GetMeta() and GetNamespace() on all config entry kinds
  [GH-8764]
* autopilot: (Enterprise Only) Autopilot now supports using both Redundancy
  Zones and Automated Upgrades together. [GH-9103]
* checks: add health status to the failure message when gRPC healthchecks
  fail. [GH-8726]
* chore: Update to Go 1.15 with mitigation for golang/go#42138 [GH-9036]
* command: remove conditional envoy bootstrap generation for versions
  <=1.10.0 since those are not supported [GH-8855]
* connect: The Vault provider will now automatically renew the lease of the
  token used, if supported. [GH-8560]
* connect: add support for specifying load balancing policy in
  service-resolver [GH-8585]
* connect: intentions are now managed as a new config entry kind
  "service-intentions" [GH-8834]
* raft: Update raft to v1.2.0 to prevent non-voters from becoming eligible
  for leader elections and adding peer id as metric label to reduce
  cardinality in metric names [GH-8822]
* server: (Consul Enterprise only) ensure that we also shutdown network
  segment serf instances on server shutdown [GH-8786]
* server: break up Intention.Apply monolithic method [GH-9007]
* server: create new memdb table for storing system metadata [GH-8703]
* server: make sure that the various replication loggers use consistent
  logging [GH-8745]
* server: remove config entry CAS in legacy intention API bridge code
  [GH-9151]
* snapshot agent: Deregister critical snapshotting TTL check if leadership
  is transferred.
* telemetry: All metrics should be present and available to prometheus
  scrapers when Consul starts. If any non-deprecated metrics are missing
  please submit an issue with its name. [GH-9198]
* telemetry: add config flag telemetry { disable_compat_1.9 = (true|false)
  } to disable deprecated metrics in 1.9 [GH-8877]
* telemetry: add counter consul.api.http with labels for each HTTP path and
  method. This is intended to replace consul.http... [GH-8877]
* ui: Add the Upstreams and Exposed Paths tabs for services in mesh
  [GH-9141]
* ui: Moves the Proxy health checks to be displayed with the Service health
  check under the Health Checks tab [GH-9141]
* ui: Upstream and downstream services in the topology tab will show a
  visual indication if a deny intention or intention with L7 policies is
  configured. [GH-8846]
* ui: add dashboard_url_template config option for external dashboard links
  [GH-9002]

DEPRECATIONS:

* Go 1.15 has dropped support for 32-bit binaries for Darwin, so darwin_386
  builds will not be available for any 1.9.x+ releases. [GH-9036]
* agent: ui, ui_dir and ui_content_path are now deprecated for use in agent
  configuration files. Use ui_config.{enable, dir, content_path} instead. The
  command arguments -ui, -ui-dir, and -ui-content-path remain
  supported. [GH-8694]
* telemetry: The measurements in all of the consul.http... prefixed metrics
  have been migrated to consul.api.http. consul.http... prefixed metrics will
  be removed in a future version of Consul. [GH-8877]
* telemetry: the disable_compat_1.9 config will cover more metrics
  deprecations in future 1.9 point releases. These metrics will be emitted
  twice for backwards compatibility - if the flag is true, only the new
  metric name will be written. [GH-9181]

BUG FIXES:

* agent: make the json/hcl decoding of ConnectProxyConfig fully work with
  CamelCase and snake_case [GH-8741]
* agent: when enable_central_service_config is enabled ensure agent reload
  doesn't revert check state to critical [GH-8747]
* api: Fixed a bug where the Check.GRPCUseTLS field could not be set using
  snake case. [GH-8771]
* autopilot: (Enterprise Only) Previously servers in other zones would not
  be promoted when all servers in a second zone had failed. Now the actual
  behavior matches the docs and autopilot will promote a healthy non-voter
  from any zone to replace failure of an entire zone. [GH-9103]
* autopilot: Prevent panic when requesting the autopilot health immediately
  after a leader is elected. [GH-9204]
* command: when generating envoy bootstrap configs use the datacenter
  returned from the agent services endpoint [GH-9229]
* connect: Fixed an issue where the Vault intermediate was not renewed in
  the primary datacenter. [GH-8784]
* connect: fix Vault provider not respecting IntermediateCertTTL [GH-8646]
* connect: fix connect sidecars registered via the API not being
  automatically deregistered with their parent service after an agent restart
  by persisting the LocallyRegisteredAsSidecar property. [GH-8924]
* connect: use stronger validation that ingress gateways have compatible
protocols defined for their upstreams [GH-8470]
* license: (Enterprise only) Fixed an issue where the UI would see
  Namespaces and SSO as licensed when they were not.
* license: (Enterprise only) Fixed an issue where warnings about Namespaces
  being unlicensed would be emitted erroneously.
* namespace: (Enterprise Only) Fixed a bug that could case snapshot
  restoration to fail when it contained a namespace marked for deletion while
  still containing other resources in that namespace. [GH-9156]
* namespace: (Enterprise Only) Fixed an issue where namespaced services and
  checks were not being deleted when the containing namespace was deleted.
* raft: (Enterprise only) properly update consul server meta non_voter for
  non-voting Enterprise Consul servers [GH-8731]
* server: skip deleted and deleting namespaces when migrating intentions to
  config entries [GH-9186]
* telemetry: fixed a bug that caused logs to be flooded with [WARN]
  agent.router: Non-server in server-only area [GH-8685]
* ui: show correct datacenter for gateways [GH-8704]

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=8c6851d76f7780bcb2afa55c8bd29be73d13df7e

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 consul/Makefile      |   2 +-
 consul/distinfo      | 408 ++++++++++++++++++++++++++++-----------------------
 consul/go-modules.mk | 100 +++++++------
 3 files changed, 280 insertions(+), 230 deletions(-)

diffs:
diff --git a/consul/Makefile b/consul/Makefile
index 2bd0e77137..1051842c2d 100644
--- a/consul/Makefile
+++ b/consul/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-DISTNAME=	consul-1.8.6
+DISTNAME=	consul-1.9.0
 CATEGORIES=	sysutils
 MASTER_SITES=	${MASTER_SITE_GITHUB:=hashicorp/}
 
diff --git a/consul/distinfo b/consul/distinfo
index 9b574b226a..58a68bf436 100644
--- a/consul/distinfo
+++ b/consul/distinfo
@@ -16,10 +16,10 @@ SHA1 (cloud.google.com_go_@v_v0.38.0.zip) = e8fc42c24b508308c1eeec0734355753957b
 RMD160 (cloud.google.com_go_@v_v0.38.0.zip) = d60966b058fbdaa89c0e915bf979655c09a0af14
 SHA512 (cloud.google.com_go_@v_v0.38.0.zip) = 8981a08b1ba0226854567b0977d8a349abe2b58420421ab1dccdaf9c98e7657cb2140ad1a38767d25cb54249b61f162ecd51d401374a29f7368a550b19196595
 Size (cloud.google.com_go_@v_v0.38.0.zip) = 2721920 bytes
-SHA1 (consul-1.8.6.tar.gz) = 2cf2872f66914f1c10f870ea7df79030646d70e1
-RMD160 (consul-1.8.6.tar.gz) = 14c6ce04b39fc854eda32ab5c0217c3901fb3338
-SHA512 (consul-1.8.6.tar.gz) = 10cb3780362de488337efa3398ec1a2370595112f4438c428124e3f5e9e28b5ab64d3a0c3e3fb7d4492d440bc7377ee9e0f96d1aaaa8ef1478beb0fcbadc3ae4
-Size (consul-1.8.6.tar.gz) = 28510827 bytes
+SHA1 (consul-1.9.0.tar.gz) = 653565755423edb1dcb29b3504450504b314b906
+RMD160 (consul-1.9.0.tar.gz) = f3312bcd43af424a514087214c918b4e5d4506a5
+SHA512 (consul-1.9.0.tar.gz) = 8d1d04573d8a4c5e71d2b1721ac7c9d203e4ccacf7122df15337130ee1ae473540c2b442cbf24f912a3f949efa4febafce0f1972f758569e617067d84d62f524
+Size (consul-1.9.0.tar.gz) = 31222935 bytes
 SHA1 (github.com__azure_azure-sdk-for-go_@v_v40.3.0+incompatible.mod) = f9109627fbe12f64f8eb8833bd5b229a66ce0b23
 RMD160 (github.com__azure_azure-sdk-for-go_@v_v40.3.0+incompatible.mod) = 23f84f3bda5e834ca479cd36203a4490457181a8
 SHA512 (github.com__azure_azure-sdk-for-go_@v_v40.3.0+incompatible.mod) = be976846ed78cec5b19618c7364c47e66c3475519bed166ad1e6b666399ea08028fa621869ab4980981fc70256acc9a7dd1c1e52c8d3d44cb0ac75f9907b6d3e
@@ -204,14 +204,14 @@ SHA1 (github.com__puerkito_bio_urlesc_@v_v0.0.0-20160726150825-5bd2802263f2.zip)
 RMD160 (github.com__puerkito_bio_urlesc_@v_v0.0.0-20160726150825-5bd2802263f2.zip) = ad13d2262aa562c0bcc6cecd401b169c76788f2d
 SHA512 (github.com__puerkito_bio_urlesc_@v_v0.0.0-20160726150825-5bd2802263f2.zip) = 9864ec47afba73858d0d8c8a73b479cf7fbe82d49b4bb6e6a9ece6405688282a3bb0128220e3c33e0795dbd737ce9b6e4662b7e9b54626b9422c6bfd4390d9f1
 Size (github.com__puerkito_bio_urlesc_@v_v0.0.0-20160726150825-5bd2802263f2.zip) = 8156 bytes
-SHA1 (github.com__stack_exchange_wmi_@v_v0.0.0-20180116203802-5d049714c4a6.mod) = 8283dee0175d4c0cdff671ff3169e17a9c2026df
-RMD160 (github.com__stack_exchange_wmi_@v_v0.0.0-20180116203802-5d049714c4a6.mod) = 41b809c002cf3e7d36803927ad38976b1d2cd21a
-SHA512 (github.com__stack_exchange_wmi_@v_v0.0.0-20180116203802-5d049714c4a6.mod) = 83f296ee872570bab84dc3e3f7984f155f5a9a4f95ca7b23a5f39dd47b54eb87ceb2eaa4db00a3966def5b41fb0250de18bcde32610c350206b6d0e744353fd7
-Size (github.com__stack_exchange_wmi_@v_v0.0.0-20180116203802-5d049714c4a6.mod) = 36 bytes
-SHA1 (github.com__stack_exchange_wmi_@v_v0.0.0-20180116203802-5d049714c4a6.zip) = 9a42830ed4992f31ebb095f8ec87993028837f0d
-RMD160 (github.com__stack_exchange_wmi_@v_v0.0.0-20180116203802-5d049714c4a6.zip) = 256b809125e50decb460fc383032a5c462b17d77
-SHA512 (github.com__stack_exchange_wmi_@v_v0.0.0-20180116203802-5d049714c4a6.zip) = 55765137bbfcb45b4c9962044502458f1e7944487946604fbc7604d48b9b576c522b9316a99cb14dacc3c613c99ddb9c51f1a9cd92f4a729bdf76b834d7d2fba
-Size (github.com__stack_exchange_wmi_@v_v0.0.0-20180116203802-5d049714c4a6.zip) = 14852 bytes
+SHA1 (github.com__stack_exchange_wmi_@v_v0.0.0-20190523213315-cbe66965904d.mod) = 8283dee0175d4c0cdff671ff3169e17a9c2026df
+RMD160 (github.com__stack_exchange_wmi_@v_v0.0.0-20190523213315-cbe66965904d.mod) = 41b809c002cf3e7d36803927ad38976b1d2cd21a
+SHA512 (github.com__stack_exchange_wmi_@v_v0.0.0-20190523213315-cbe66965904d.mod) = 83f296ee872570bab84dc3e3f7984f155f5a9a4f95ca7b23a5f39dd47b54eb87ceb2eaa4db00a3966def5b41fb0250de18bcde32610c350206b6d0e744353fd7
+Size (github.com__stack_exchange_wmi_@v_v0.0.0-20190523213315-cbe66965904d.mod) = 36 bytes
+SHA1 (github.com__stack_exchange_wmi_@v_v0.0.0-20190523213315-cbe66965904d.zip) = d45e4262e6d4086f4078cf82a0353b3200c4c21d
+RMD160 (github.com__stack_exchange_wmi_@v_v0.0.0-20190523213315-cbe66965904d.zip) = 729a0b75d352d0fba6c052e83ad90bffc6dbe408
+SHA512 (github.com__stack_exchange_wmi_@v_v0.0.0-20190523213315-cbe66965904d.zip) = 82818b2eb7e8f7265b814f202c420e5a187fd5e9a43536a062715e1a3d1d5717acc8d2daeb1f678dd13bf5703545309ad9d4b4e78fbb6e9befd9bb7370ddaa3b
+Size (github.com__stack_exchange_wmi_@v_v0.0.0-20190523213315-cbe66965904d.zip) = 14905 bytes
 SHA1 (github.com_abdullin_seq_@v_v0.0.0-20160510034733-d5467c17e7af.mod) = ae7244e33e20e1a66eb0beeecfca2e0ed56a3abf
 RMD160 (github.com_abdullin_seq_@v_v0.0.0-20160510034733-d5467c17e7af.mod) = f995cff7ebedc2acba6a7b0556bf4d620301db3d
 SHA512 (github.com_abdullin_seq_@v_v0.0.0-20160510034733-d5467c17e7af.mod) = 975a6684c6f7eebaec8a757656fb51a4bd9e7ebedce12bca267fd69ae505bd81fd6296fcec6a3b45973f841982defb9311e405aa349b2c7e664384ca05a920f0
@@ -272,14 +272,14 @@ SHA1 (github.com_armon_go-metrics_@v_v0.3.0.mod) = 9a03cd860b6901d4620b894749086
 RMD160 (github.com_armon_go-metrics_@v_v0.3.0.mod) = ece2b9a773cfd97663ea3102b466a0c77f4499ea
 SHA512 (github.com_armon_go-metrics_@v_v0.3.0.mod) = 8a04b0f60d9393afdc4b106413a1022e213509cadc222d592b8a98cc06188eda9ab8b7fdc346e8e70e15f40294ed41fe5510205d64ff40c427a6fbbcbd16f530
 Size (github.com_armon_go-metrics_@v_v0.3.0.mod) = 753 bytes
-SHA1 (github.com_armon_go-metrics_@v_v0.3.4.mod) = 250690e4078fe16028a4f18d74f79f3708c03e0f
-RMD160 (github.com_armon_go-metrics_@v_v0.3.4.mod) = 67010e345bbfd56547e306825e13afdb57d056e2
-SHA512 (github.com_armon_go-metrics_@v_v0.3.4.mod) = 7a835e1c62454a3577e71bb91a1a2ba8e135b94140e1394505678a5d628bf452de2fe8c7a9ad30c17ee462fd0d2f04967d0cc7b96010cfcd3d0fcf7dcaf4748f
-Size (github.com_armon_go-metrics_@v_v0.3.4.mod) = 607 bytes
-SHA1 (github.com_armon_go-metrics_@v_v0.3.4.zip) = 0c82cd0ea456878047ac03ea6c0e6e1e156bdbd6
-RMD160 (github.com_armon_go-metrics_@v_v0.3.4.zip) = f49baa449ca4263a6180901afaeb38c8e1436897
-SHA512 (github.com_armon_go-metrics_@v_v0.3.4.zip) = 6a71cedd6356d9e17ffa7af4e005a7d17f1c004b6b68f487ac75b13668d22f18c06ea0c0e4c9b62d5d60b27054a3afa0e73d4adbab6ad46ede4b4387500c27d4
-Size (github.com_armon_go-metrics_@v_v0.3.4.zip) = 44812 bytes
+SHA1 (github.com_armon_go-metrics_@v_v0.3.5-0.20201104215618-6fd5a4ddf425.mod) = 250690e4078fe16028a4f18d74f79f3708c03e0f
+RMD160 (github.com_armon_go-metrics_@v_v0.3.5-0.20201104215618-6fd5a4ddf425.mod) = 67010e345bbfd56547e306825e13afdb57d056e2
+SHA512 (github.com_armon_go-metrics_@v_v0.3.5-0.20201104215618-6fd5a4ddf425.mod) = 7a835e1c62454a3577e71bb91a1a2ba8e135b94140e1394505678a5d628bf452de2fe8c7a9ad30c17ee462fd0d2f04967d0cc7b96010cfcd3d0fcf7dcaf4748f
+Size (github.com_armon_go-metrics_@v_v0.3.5-0.20201104215618-6fd5a4ddf425.mod) = 607 bytes
+SHA1 (github.com_armon_go-metrics_@v_v0.3.5-0.20201104215618-6fd5a4ddf425.zip) = 0ce164d7b8fbe4a8fe8f8fa2f694bd501411808b
+RMD160 (github.com_armon_go-metrics_@v_v0.3.5-0.20201104215618-6fd5a4ddf425.zip) = 2db67a53de020cf9a6c077d744dc386c99fe7047
+SHA512 (github.com_armon_go-metrics_@v_v0.3.5-0.20201104215618-6fd5a4ddf425.zip) = fb565518e3c593f9453f1fef49924144084793ff215dbe18c06ffe372785444e3d916a23aef30b508e750ac5df7108206749d773813b0fdac9d77d3831c99386
+Size (github.com_armon_go-metrics_@v_v0.3.5-0.20201104215618-6fd5a4ddf425.zip) = 48822 bytes
 SHA1 (github.com_armon_go-radix_@v_v0.0.0-20180808171621-7fddfc383310.mod) = c6f48e9bff0a559594e769e7c3e31e0010e6f2a4
 RMD160 (github.com_armon_go-radix_@v_v0.0.0-20180808171621-7fddfc383310.mod) = 518878ce4366802ad724887a87a14d187da5b31d
 SHA512 (github.com_armon_go-radix_@v_v0.0.0-20180808171621-7fddfc383310.mod) = 98f0f51365ecedecd1abe944a765160f99ccde69abe92a44d4f0e30f72a664b828cddb085886d8460ea7faabd0cbe7abdbde905ac758be0a3752c9a8f3600b6f
@@ -636,14 +636,14 @@ SHA1 (github.com_fatih_structs_@v_v1.1.0.zip) = 733f93d3a9fd7fc1570ae39e481da20d
 RMD160 (github.com_fatih_structs_@v_v1.1.0.zip) = 73c8822320b8b46dfd0d62ba8c0f1fc3852dd29f
 SHA512 (github.com_fatih_structs_@v_v1.1.0.zip) = e42c37f71719ed662a4b3efc9c03725a3569ce04849d6bc845bb7967228b0e648d6b2cdf73ea18430e54df85486b2a3819aca6170538eca4401ac3ea4a512d3c
 Size (github.com_fatih_structs_@v_v1.1.0.zip) = 17890 bytes
-SHA1 (github.com_frankban_quicktest_@v_v1.11.1.mod) = 7ae6e902ec265b21834d5e02ceb5e3b51a1d611e
-RMD160 (github.com_frankban_quicktest_@v_v1.11.1.mod) = 6441be678f5f67ffbf631e02c1c04f8488baf2b6
-SHA512 (github.com_frankban_quicktest_@v_v1.11.1.mod) = 1a666d5599c4bbdfc3c174047e187af75d1a3e66e344ae76d714b387c39dda9632bb6c7ea1ead5a830a2aea1c5a5e2d051d552535cc7e0bc3dbf71383a1c4e5b
-Size (github.com_frankban_quicktest_@v_v1.11.1.mod) = 121 bytes
-SHA1 (github.com_frankban_quicktest_@v_v1.11.1.zip) = 52436bbfb885161a6ea142f3fdfe37c50e79d625
-RMD160 (github.com_frankban_quicktest_@v_v1.11.1.zip) = bb2ade0bf549479a5b85310b5bb2284809af4873
-SHA512 (github.com_frankban_quicktest_@v_v1.11.1.zip) = c4331256ead0f5ef5684e155cdcd053cacd01123bb049edcf2c1a6692ad3c2c3653da6420d0e625b96ffaad0e429980590778370075d4857fee5c7b60e33d2d3
-Size (github.com_frankban_quicktest_@v_v1.11.1.zip) = 49890 bytes
+SHA1 (github.com_frankban_quicktest_@v_v1.11.0.mod) = 7ae6e902ec265b21834d5e02ceb5e3b51a1d611e
+RMD160 (github.com_frankban_quicktest_@v_v1.11.0.mod) = 6441be678f5f67ffbf631e02c1c04f8488baf2b6
+SHA512 (github.com_frankban_quicktest_@v_v1.11.0.mod) = 1a666d5599c4bbdfc3c174047e187af75d1a3e66e344ae76d714b387c39dda9632bb6c7ea1ead5a830a2aea1c5a5e2d051d552535cc7e0bc3dbf71383a1c4e5b
+Size (github.com_frankban_quicktest_@v_v1.11.0.mod) = 121 bytes
+SHA1 (github.com_frankban_quicktest_@v_v1.11.0.zip) = c9b34f163326fb146004009bd96a5b5b9351bac3
+RMD160 (github.com_frankban_quicktest_@v_v1.11.0.zip) = 750e685a847366a0683a2aace776fe32e51be7d5
+SHA512 (github.com_frankban_quicktest_@v_v1.11.0.zip) = 04ab61faa2934ec2ff4dccc43e74a20457874cf091ed182d28c13db97072b953a4040a0109daa8d2ed740069e89e4e0076f1c0246d7c93ba3119ebda1d659f0e
+Size (github.com_frankban_quicktest_@v_v1.11.0.zip) = 49672 bytes
 SHA1 (github.com_fsnotify_fsnotify_@v_v1.4.7.mod) = b13067edfc1b7a3b0d6703ffdbf22b45a6ec187e
 RMD160 (github.com_fsnotify_fsnotify_@v_v1.4.7.mod) = a8de45ebc75d2b29e65beeab53064b578ce45252
 SHA512 (github.com_fsnotify_fsnotify_@v_v1.4.7.mod) = 5749d33fb085d63b7c12f43df824c96f168323cf6d88cfea3e2536eeb7b56689dab9dddb8cde1ec8bc9c2848e7148b8a37abf8523a99c55ce10f896245c5f341
@@ -720,14 +720,14 @@ SHA1 (github.com_go-logr_logr_@v_v0.1.0.zip) = 2131e219a284c28f7007bf3580ff35925
 RMD160 (github.com_go-logr_logr_@v_v0.1.0.zip) = f8af934c6359a292f892ce3c3223595a38488052
 SHA512 (github.com_go-logr_logr_@v_v0.1.0.zip) = c3238e80e90ecb548273e0b489391d2282949d7b598301a7235a6229bd8abd62220f1e6b6400aad95eed80e21b005220a1ed0e826c44ac6f97ebb9739822257a
 Size (github.com_go-logr_logr_@v_v0.1.0.zip) = 11594 bytes
-SHA1 (github.com_go-ole_go-ole_@v_v1.2.1.mod) = 2c9ef96fc85de12c2bf7110a66722f1a62bc6c31
-RMD160 (github.com_go-ole_go-ole_@v_v1.2.1.mod) = 2ecf683f458592bc8350a6b402aa28447ae970e2
-SHA512 (github.com_go-ole_go-ole_@v_v1.2.1.mod) = 14e60a75a483ff4a1f6313a7a8a1dbfbc6ed4c223c7a9d18c0b355e84261084204a22ef1125a40e30acb1b43abfc97e60c045dd91a16d2b4068a78a54d854d28
-Size (github.com_go-ole_go-ole_@v_v1.2.1.mod) = 32 bytes
-SHA1 (github.com_go-ole_go-ole_@v_v1.2.1.zip) = 3a7a48c01228a4e468f51ee3dd945b472747a53b
-RMD160 (github.com_go-ole_go-ole_@v_v1.2.1.zip) = 6b7edbe88777bc58506b925948b4ab2ba935eb19
-SHA512 (github.com_go-ole_go-ole_@v_v1.2.1.zip) = 69395f0457365d57b43086d52ca9c77ead9d74c52bb66c9687fb4c26164eedbf4322c129d55408ba96c9985b081ea8335be1587a63f29d53183f542130a409ec
-Size (github.com_go-ole_go-ole_@v_v1.2.1.zip) = 78166 bytes
+SHA1 (github.com_go-ole_go-ole_@v_v1.2.4.mod) = ef2f08351b58063e15ea0a9acc331b0c3f7852cd
+RMD160 (github.com_go-ole_go-ole_@v_v1.2.4.mod) = 43771210c137f5dde24aab22ab9b0d2093c0c767
+SHA512 (github.com_go-ole_go-ole_@v_v1.2.4.mod) = 1e8d650a965637bd0974b8f42e207155dd1bac307e9ecf4d294cb4ee0f1c694276062d46318d113326b9c1bfdc379a7d8b8fa2c18e4a08ed9baefcae67db88d2
+Size (github.com_go-ole_go-ole_@v_v1.2.4.mod) = 41 bytes
+SHA1 (github.com_go-ole_go-ole_@v_v1.2.4.zip) = 3125655a356cc8b07b3b5bc64e1ba9d87554b554
+RMD160 (github.com_go-ole_go-ole_@v_v1.2.4.zip) = 98ed47e6c72f913dcdb44205d6bc943e0598048c
+SHA512 (github.com_go-ole_go-ole_@v_v1.2.4.zip) = 9a67b0101fc1afba75179246e1498c41254d8379f78ef65877166bf9a5b7f7ac9e29f270e9186f13a26891389ab4e9ef309c4e90b2e79bffc3ade49e39fe2af1
+Size (github.com_go-ole_go-ole_@v_v1.2.4.zip) = 79799 bytes
 SHA1 (github.com_go-openapi_jsonpointer_@v_v0.0.0-20160704185906-46af16f9f7b1.mod) = f4ea8bd469f4e9542fa119defbe2dc59cab02da7
 RMD160 (github.com_go-openapi_jsonpointer_@v_v0.0.0-20160704185906-46af16f9f7b1.mod) = 29c83834579c62234fd25e24ae5477589079acb6
 SHA512 (github.com_go-openapi_jsonpointer_@v_v0.0.0-20160704185906-46af16f9f7b1.mod) = 56fe1d995f8f51197d68494fb2edc2d5c5cc863c881ed640a74ba80e292a54a0600f10c727b3dc8a209fc33c750d92ad658374d0dc3d083fa9750bb7174f5613
@@ -844,10 +844,14 @@ SHA1 (github.com_golang_protobuf_@v_v1.3.2.mod) = 66d591fd2c373afed7c4d2f9867d1f
 RMD160 (github.com_golang_protobuf_@v_v1.3.2.mod) = c83a455a5d250c17ea57ac9f63c284c2209ecc64
 SHA512 (github.com_golang_protobuf_@v_v1.3.2.mod) = e059a34363bb826bbcb8981adbfc10da90e04b86dc5376ab20bdfe1fab135953cff41ef1daa116aff10e9f3e6503168f6baf902f09aa0e8cd9a0da96b932f4b6
 Size (github.com_golang_protobuf_@v_v1.3.2.mod) = 34 bytes
-SHA1 (github.com_golang_protobuf_@v_v1.3.2.zip) = 31fda25d0ba31dce40ce238bf1e5417e6177d791
-RMD160 (github.com_golang_protobuf_@v_v1.3.2.zip) = 86d21dc6a4f2e93ba6a924d967f58656d17a8c16
-SHA512 (github.com_golang_protobuf_@v_v1.3.2.zip) = 7fe69c066b2407e6000ae21888f6cc696e51df2342a71e196aba1a9a9ecce630bd9a4d41c58b3105002508a4d0efb9c5ae2b8a87f848b8e2c6293558b8c4b4ad
-Size (github.com_golang_protobuf_@v_v1.3.2.zip) = 465217 bytes
+SHA1 (github.com_golang_protobuf_@v_v1.3.5.mod) = eae6f3599b36a14a6efda299a3f2f5449ceb4bbd
+RMD160 (github.com_golang_protobuf_@v_v1.3.5.mod) = fce67eaed805688db54a7ad6d346d533a00f8a79
+SHA512 (github.com_golang_protobuf_@v_v1.3.5.mod) = 603005008f167e32ed8984657a85676cc140d57adf0177895f6f4282a301c7f1fa2d826abddc0c59c725c810cf2356c820ac7fd64c6ccb2be132bead79603090
+Size (github.com_golang_protobuf_@v_v1.3.5.mod) = 42 bytes
+SHA1 (github.com_golang_protobuf_@v_v1.3.5.zip) = 162512c716ca4d2eb5476a64630651bfb85dfbbf
+RMD160 (github.com_golang_protobuf_@v_v1.3.5.zip) = 40754c61a8505ac5edea76b9c2db29676fb1ee8a
+SHA512 (github.com_golang_protobuf_@v_v1.3.5.zip) = bc1c7eeac13afd27ba62c1343b697480a61812ab15231efae740c716f0a6abe2b53c8a40787601624af9017cd36463cc7cb5e895f4fed0de6e52a3c248bd0a9e
+Size (github.com_golang_protobuf_@v_v1.3.5.zip) = 458317 bytes
 SHA1 (github.com_golang_snappy_@v_v0.0.1.mod) = e893075486276694068e99bf7fa87129601ef281
 RMD160 (github.com_golang_snappy_@v_v0.0.1.mod) = eb318dd6cc21c26c9e1856b49c9b597019849509
 SHA512 (github.com_golang_snappy_@v_v0.0.1.mod) = c9faa5760addf2869df9a3ec5ed9da02944823afc5be93b8b6193c43261d167cff2aeb65bb844d959d368ada83932c86056aefbff799be326e889d3de4c2b8f5
@@ -912,10 +916,14 @@ SHA1 (github.com_google_gofuzz_@v_v1.0.0.mod) = ec6243bcb7d1917a23387f355961ce9d
 RMD160 (github.com_google_gofuzz_@v_v1.0.0.mod) = b896b50ed3aa8f487e50c40641cac70b2ce69ae4
 SHA512 (github.com_google_gofuzz_@v_v1.0.0.mod) = 3dcfdb76a938cf370310213720ca952c6aa99c8b1b96afe41eb05f1bff15df7d98d279509d921893c0c749337c83d4bf40613813e117c01205859a041716b2ee
 Size (github.com_google_gofuzz_@v_v1.0.0.mod) = 41 bytes
-SHA1 (github.com_google_gofuzz_@v_v1.0.0.zip) = bea79cf97c546565432f8f12bbef4718ba1b4aab
-RMD160 (github.com_google_gofuzz_@v_v1.0.0.zip) = 126b03a3b147c93aa0121c7cb8d5aa8d24a92517
-SHA512 (github.com_google_gofuzz_@v_v1.0.0.zip) = 6e265617828739486750cb8c5a8337f3e17f83664821208778528d93e608bd142902aaefcd64d4e6fb8542e5b0938b12191ea070fb5deefbff946daa146e9278
-Size (github.com_google_gofuzz_@v_v1.0.0.zip) = 16584 bytes
+SHA1 (github.com_google_gofuzz_@v_v1.2.0.mod) = ec6243bcb7d1917a23387f355961ce9def4d58b7
+RMD160 (github.com_google_gofuzz_@v_v1.2.0.mod) = b896b50ed3aa8f487e50c40641cac70b2ce69ae4
+SHA512 (github.com_google_gofuzz_@v_v1.2.0.mod) = 3dcfdb76a938cf370310213720ca952c6aa99c8b1b96afe41eb05f1bff15df7d98d279509d921893c0c749337c83d4bf40613813e117c01205859a041716b2ee
+Size (github.com_google_gofuzz_@v_v1.2.0.mod) = 41 bytes
+SHA1 (github.com_google_gofuzz_@v_v1.2.0.zip) = 5c2865d40bd8711271b7052b8c051fbbe4ba8c07
+RMD160 (github.com_google_gofuzz_@v_v1.2.0.zip) = 80c7ab91cbb22d15b27c4d6792f0e4c93eb14680
+SHA512 (github.com_google_gofuzz_@v_v1.2.0.zip) = 883f2d065ef1834580284954c9df239f3db3b40de7fc925baf563be9d4da4f0d873e156814b3eb99b6a1fad7cd3257a574f271679f783301595a12bec5b62175
+Size (github.com_google_gofuzz_@v_v1.2.0.zip) = 22166 bytes
 SHA1 (github.com_google_martian_@v_v2.1.0+incompatible.mod) = 941140a8963a5cf4164199711b03bcb934de08ec
 RMD160 (github.com_google_martian_@v_v2.1.0+incompatible.mod) = 4f6f249b6a3b8224d653a7ac0c2ac285fbe87246
 SHA512 (github.com_google_martian_@v_v2.1.0+incompatible.mod) = cffb5dc1c6531ae9d5998b3a57ba14de5dd8631a36dd48975da07ce5ec052d97b6f632c5d30ab9ab695f178758837aae8a6344c67d57c7a39ca8e9243f8211df
@@ -1036,14 +1044,14 @@ SHA1 (github.com_hashicorp_go-bexpr_@v_v0.1.2.zip) = ea102c14530b8236fc34aa9856b
 RMD160 (github.com_hashicorp_go-bexpr_@v_v0.1.2.zip) = cb415ee3d203bf0243653aafaa0b5474f217bf89
 SHA512 (github.com_hashicorp_go-bexpr_@v_v0.1.2.zip) = ce3431175bcfa657e79846e64bcdbe1fe82115f336d2d2cbf3af514997ae8b6dd1acb263d9ec83068554b4303f8b3c235107dfd8661c208b708cc17c1fc7502f
 Size (github.com_hashicorp_go-bexpr_@v_v0.1.2.zip) = 53549 bytes
-SHA1 (github.com_hashicorp_go-checkpoint_@v_v0.0.0-20171009173528-1545e56e46de.mod) = 52ac5f382f9ca884adfe03bd6b0ae3c024187999
-RMD160 (github.com_hashicorp_go-checkpoint_@v_v0.0.0-20171009173528-1545e56e46de.mod) = 81dabc7dc8ef930f252f0d2d0e711925f646b68c
-SHA512 (github.com_hashicorp_go-checkpoint_@v_v0.0.0-20171009173528-1545e56e46de.mod) = aaafa6983405f30bc9318ec18f78aabea8c2d51935b7611ac3b4927e9648a4cd7225acab9868944170885caae02d84cd7be2e68e1d6068175514095683c43ebf
-Size (github.com_hashicorp_go-checkpoint_@v_v0.0.0-20171009173528-1545e56e46de.mod) = 42 bytes
-SHA1 (github.com_hashicorp_go-checkpoint_@v_v0.0.0-20171009173528-1545e56e46de.zip) = 3c35cd0456e74f4e6f082d977a361db4cacb2cc0
-RMD160 (github.com_hashicorp_go-checkpoint_@v_v0.0.0-20171009173528-1545e56e46de.zip) = d9f638d15045509932984880bf8c90c077ee1c66
-SHA512 (github.com_hashicorp_go-checkpoint_@v_v0.0.0-20171009173528-1545e56e46de.zip) = 516ecadd02b88d33b421912956ae1fb7d83b9fe476659c87223a2dbfda32b391483f498d7c42a7b9c9b55109b9cb8c7ede158ef77f0bb046bc604a014b4311b9
-Size (github.com_hashicorp_go-checkpoint_@v_v0.0.0-20171009173528-1545e56e46de.zip) = 12168 bytes
+SHA1 (github.com_hashicorp_go-checkpoint_@v_v0.5.0.mod) = a0905b68be6b4f8311784b1e084e9434691c05f8
+RMD160 (github.com_hashicorp_go-checkpoint_@v_v0.5.0.mod) = 3e8365633424d741ff8719b3d25e0193231b646f
+SHA512 (github.com_hashicorp_go-checkpoint_@v_v0.5.0.mod) = 32745c37e703a050b2d475ba122956a1278450a852f1b101e5900f62f0d0fc2e499f2e156b3640e76b2c4c368e3eacb8bf215b4ece5c55b7f8db3fa941309bda
+Size (github.com_hashicorp_go-checkpoint_@v_v0.5.0.mod) = 134 bytes
+SHA1 (github.com_hashicorp_go-checkpoint_@v_v0.5.0.zip) = e4c3f574c7db58c8715c852b416bc84fcd38169c
+RMD160 (github.com_hashicorp_go-checkpoint_@v_v0.5.0.zip) = 642d90d8f18a65f2faabebcc44e85fb3021f4d74
+SHA512 (github.com_hashicorp_go-checkpoint_@v_v0.5.0.zip) = 25e6d14319a8b26bba1fae08123aea772246aabe9c7bc0bd401226bfbfff6662c28c694231d8ed9b7c0a1d41b7b6d50a889f09dfd58f09121bbc8715b2838f9d
+Size (github.com_hashicorp_go-checkpoint_@v_v0.5.0.zip) = 15916 bytes
 SHA1 (github.com_hashicorp_go-cleanhttp_@v_v0.5.0.mod) = 67faa23cd3050130d0a0ea11b3482185e63af180
 RMD160 (github.com_hashicorp_go-cleanhttp_@v_v0.5.0.mod) = fc0aef4e55bd3c8f23d047145ca726c5bfec6e14
 SHA512 (github.com_hashicorp_go-cleanhttp_@v_v0.5.0.mod) = 302b6f472b54597aaeb4b43528098b5a5264acc97abf2228d8cb62bf32e6a29a7171ec6fb8898b494ffe837ee044e58f5596bff425214985aacd2b8b69934341
@@ -1056,14 +1064,14 @@ SHA1 (github.com_hashicorp_go-cleanhttp_@v_v0.5.1.zip) = 76d23ccc693ac60a78d0398
 RMD160 (github.com_hashicorp_go-cleanhttp_@v_v0.5.1.zip) = f5d958a23888a9e3846006dd068524788bcff795
 SHA512 (github.com_hashicorp_go-cleanhttp_@v_v0.5.1.zip) = d439e95bfd858cf71659e8ce905748749e9e15cf577b98b66d7d8dd6adbff8262219d0c26bbbe9a24021ed5d683d7b81dc560eec4a97f09a1b44fb8983a4177b
 Size (github.com_hashicorp_go-cleanhttp_@v_v0.5.1.zip) = 9560 bytes
-SHA1 (github.com_hashicorp_go-connlimit_@v_v0.2.0.mod) = 38c09ed162ec8cbbe4e9ef32cea03613653f16ca
-RMD160 (github.com_hashicorp_go-connlimit_@v_v0.2.0.mod) = 57d00358e834f2e54e0ccdbdde47bc013b39edb8
-SHA512 (github.com_hashicorp_go-connlimit_@v_v0.2.0.mod) = 379b39171f176146f7020b2a871e9e66d77e26c417e6e81a92edb1ec609fb55e4d6417a6e12b17fe9a4e3be6551c4f28381232b20f9a9f0807f25cfbea1863e1
-Size (github.com_hashicorp_go-connlimit_@v_v0.2.0.mod) = 146 bytes
-SHA1 (github.com_hashicorp_go-connlimit_@v_v0.2.0.zip) = a0f88a2e53b8ca9a9d277b3f6bf2d356bf1006ea
-RMD160 (github.com_hashicorp_go-connlimit_@v_v0.2.0.zip) = 5583c6c799a1d9148ea0ed673a6e758752242268
-SHA512 (github.com_hashicorp_go-connlimit_@v_v0.2.0.zip) = 49f21614fd2d2bf704828d93003e8fbdd687dd18db7e4377b3571d7bf867e0bb94d67df08867fcb64857a9b2a7e570d5e2a74da981448856ce61c78b771e5339
-Size (github.com_hashicorp_go-connlimit_@v_v0.2.0.zip) = 9823 bytes
+SHA1 (github.com_hashicorp_go-connlimit_@v_v0.3.0.mod) = 38c09ed162ec8cbbe4e9ef32cea03613653f16ca
+RMD160 (github.com_hashicorp_go-connlimit_@v_v0.3.0.mod) = 57d00358e834f2e54e0ccdbdde47bc013b39edb8
+SHA512 (github.com_hashicorp_go-connlimit_@v_v0.3.0.mod) = 379b39171f176146f7020b2a871e9e66d77e26c417e6e81a92edb1ec609fb55e4d6417a6e12b17fe9a4e3be6551c4f28381232b20f9a9f0807f25cfbea1863e1
+Size (github.com_hashicorp_go-connlimit_@v_v0.3.0.mod) = 146 bytes
+SHA1 (github.com_hashicorp_go-connlimit_@v_v0.3.0.zip) = e896d877b5fc6429883a2691daae7d0a15204376
+RMD160 (github.com_hashicorp_go-connlimit_@v_v0.3.0.zip) = 93324f3322a5940384be3e1a172583dbf5fb6050
+SHA512 (github.com_hashicorp_go-connlimit_@v_v0.3.0.zip) = b85d89cd3ff65d27933b81dde7c0c7ddfaca19a68dc7aa0835b709c9c0ba3059d15adaf9ad27ea06e078ed5e4f203bbbdd52f3f24ec3b23c93e08e5dcfa7e01a
+Size (github.com_hashicorp_go-connlimit_@v_v0.3.0.zip) = 16296 bytes
 SHA1 (github.com_hashicorp_go-discover_@v_v0.0.0-20200501174627-ad1e96bde088.mod) = f470eb82e837b41ec95d94e2997ab11b8bf8a025
 RMD160 (github.com_hashicorp_go-discover_@v_v0.0.0-20200501174627-ad1e96bde088.mod) = 0f1fdfbef0d77ce3258c9699046983c8a803b0c4
 SHA512 (github.com_hashicorp_go-discover_@v_v0.0.0-20200501174627-ad1e96bde088.mod) = fa31fb1ac7931846abfc67ce547135b6d76050054c26a67f8c81ffc829ca43585278e5a9906c1e9a95c440bb3701ff3b416cb1ad06f376eec2083c22a8cd7220
@@ -1080,10 +1088,14 @@ SHA1 (github.com_hashicorp_go-hclog_@v_v0.12.0.mod) = c45387e75db0304e96e3686509
 RMD160 (github.com_hashicorp_go-hclog_@v_v0.12.0.mod) = 539bb8c1346ce847b08e022f5a52bf59fe9eb338
 SHA512 (github.com_hashicorp_go-hclog_@v_v0.12.0.mod) = 4e25954cd212cf102dcffc751cd2489db9bcd6f1f0fe975de3f5ba2588ecae5d0622c35a86fb61970872b4e27d3349fb7f76bc3dd9b7b6db76152da07cda1427
 Size (github.com_hashicorp_go-hclog_@v_v0.12.0.mod) = 297 bytes
-SHA1 (github.com_hashicorp_go-hclog_@v_v0.12.0.zip) = 57b81dce18767de9da97274e5d2a22b42a48a763
-RMD160 (github.com_hashicorp_go-hclog_@v_v0.12.0.zip) = 6ba4dadebf6ceb5f7eb3f4474f231cfa8e617f85
-SHA512 (github.com_hashicorp_go-hclog_@v_v0.12.0.zip) = 7305cb1a2a729c091267b1d4f1d59634c8cdafc39ae3355230e205e9aac960f321f6b07fdc3f3cd67f7f64daeaf287e214115df480bb7a318dcf51241260f642
-Size (github.com_hashicorp_go-hclog_@v_v0.12.0.zip) = 42172 bytes
+SHA1 (github.com_hashicorp_go-hclog_@v_v0.14.1.mod) = c45387e75db0304e96e3686509d6b60d67b0effb
+RMD160 (github.com_hashicorp_go-hclog_@v_v0.14.1.mod) = 539bb8c1346ce847b08e022f5a52bf59fe9eb338
+SHA512 (github.com_hashicorp_go-hclog_@v_v0.14.1.mod) = 4e25954cd212cf102dcffc751cd2489db9bcd6f1f0fe975de3f5ba2588ecae5d0622c35a86fb61970872b4e27d3349fb7f76bc3dd9b7b6db76152da07cda1427
+Size (github.com_hashicorp_go-hclog_@v_v0.14.1.mod) = 297 bytes
+SHA1 (github.com_hashicorp_go-hclog_@v_v0.14.1.zip) = 93de2931c9b2baf0d62a8222a64774b2bbfd11e4
+RMD160 (github.com_hashicorp_go-hclog_@v_v0.14.1.zip) = 628ffa6257058dab3344ea7a96882f79f631b0b6
+SHA512 (github.com_hashicorp_go-hclog_@v_v0.14.1.zip) = 1bcd649feb0ee9b1210b17b249eccad8ca175b16c9af8f8fa16dc034761f62bad27c6bbdbffeca83c2992ce6d49124a29cc302b9b3c94324d6fec9340d722a83
+Size (github.com_hashicorp_go-hclog_@v_v0.14.1.zip) = 30671 bytes
 SHA1 (github.com_hashicorp_go-hclog_@v_v0.9.1.mod) = 0c5b1e4b8e77fb615b74a8626d99c67510726741
 RMD160 (github.com_hashicorp_go-hclog_@v_v0.9.1.mod) = ac8c5db7560cd123cb162888634412d921de6ba6
 SHA512 (github.com_hashicorp_go-hclog_@v_v0.9.1.mod) = 84dafac5d0770fdf20eae443ab6262dd3a32737c62908830a941b2593f683f35b0c33c009cfd2b24d3cf86a3701b9c3ffba84b77e66840201348591277ea6f8c
@@ -1096,18 +1108,14 @@ SHA1 (github.com_hashicorp_go-immutable-radix_@v_v1.0.0.mod) = e52aa5e4c631a11d2
 RMD160 (github.com_hashicorp_go-immutable-radix_@v_v1.0.0.mod) = 8b902becc9dcb26a075767ea0b65430918147776
 SHA512 (github.com_hashicorp_go-immutable-radix_@v_v1.0.0.mod) = aadecf34782d4b40af684ef29e5e45f560d3593b52d5b6ac6b95664c02c04565fd29dc2d48bf1519091129b86856aec732fde408a8acdba41ff9a7ca12bab140
 Size (github.com_hashicorp_go-immutable-radix_@v_v1.0.0.mod) = 137 bytes
-SHA1 (github.com_hashicorp_go-immutable-radix_@v_v1.1.0.mod) = e52aa5e4c631a11d25a554e283ad1976a423bb1e
-RMD160 (github.com_hashicorp_go-immutable-radix_@v_v1.1.0.mod) = 8b902becc9dcb26a075767ea0b65430918147776
-SHA512 (github.com_hashicorp_go-immutable-radix_@v_v1.1.0.mod) = aadecf34782d4b40af684ef29e5e45f560d3593b52d5b6ac6b95664c02c04565fd29dc2d48bf1519091129b86856aec732fde408a8acdba41ff9a7ca12bab140
-Size (github.com_hashicorp_go-immutable-radix_@v_v1.1.0.mod) = 137 bytes
-SHA1 (github.com_hashicorp_go-immutable-radix_@v_v1.2.0.mod) = e52aa5e4c631a11d25a554e283ad1976a423bb1e
-RMD160 (github.com_hashicorp_go-immutable-radix_@v_v1.2.0.mod) = 8b902becc9dcb26a075767ea0b65430918147776
-SHA512 (github.com_hashicorp_go-immutable-radix_@v_v1.2.0.mod) = aadecf34782d4b40af684ef29e5e45f560d3593b52d5b6ac6b95664c02c04565fd29dc2d48bf1519091129b86856aec732fde408a8acdba41ff9a7ca12bab140
-Size (github.com_hashicorp_go-immutable-radix_@v_v1.2.0.mod) = 137 bytes
-SHA1 (github.com_hashicorp_go-immutable-radix_@v_v1.2.0.zip) = 820ed0b8ab08009248bb31b53300a0ab9c8cdb39
-RMD160 (github.com_hashicorp_go-immutable-radix_@v_v1.2.0.zip) = 8b12603a2952a1b9b1ac409a6c8792c846d8093d
-SHA512 (github.com_hashicorp_go-immutable-radix_@v_v1.2.0.zip) = d5b1da656921ab950265b0789a70232e287b263c61e46122cf0ff2fc7fb294d018909bbdc6988577be990870381c65999f8c9df0d05ed48efe4fc313a28e8f90
-Size (github.com_hashicorp_go-immutable-radix_@v_v1.2.0.zip) = 27085 bytes
+SHA1 (github.com_hashicorp_go-immutable-radix_@v_v1.3.0.mod) = e52aa5e4c631a11d25a554e283ad1976a423bb1e
+RMD160 (github.com_hashicorp_go-immutable-radix_@v_v1.3.0.mod) = 8b902becc9dcb26a075767ea0b65430918147776
+SHA512 (github.com_hashicorp_go-immutable-radix_@v_v1.3.0.mod) = aadecf34782d4b40af684ef29e5e45f560d3593b52d5b6ac6b95664c02c04565fd29dc2d48bf1519091129b86856aec732fde408a8acdba41ff9a7ca12bab140
+Size (github.com_hashicorp_go-immutable-radix_@v_v1.3.0.mod) = 137 bytes
+SHA1 (github.com_hashicorp_go-immutable-radix_@v_v1.3.0.zip) = c4b69de1b11e576868f480f207cb7348aecbcb40
+RMD160 (github.com_hashicorp_go-immutable-radix_@v_v1.3.0.zip) = f3fd93cbfb35af3d980a1cc2fd085d2a3b62afda
+SHA512 (github.com_hashicorp_go-immutable-radix_@v_v1.3.0.zip) = b7a8bde64b16c032ab4ed47c7ec11da6661293d231d7e100b4fdf9db88a1ed2fb9f48b95f7a6c44fd14e033a5a02244c894496cac57fcefe8bcddc73f4755508
+Size (github.com_hashicorp_go-immutable-radix_@v_v1.3.0.zip) = 31729 bytes
 SHA1 (github.com_hashicorp_go-kms-wrapping_entropy_@v_v0.1.0.mod) = fefa1eafcfa94a85631c0c731bb0434733d5bef5
 RMD160 (github.com_hashicorp_go-kms-wrapping_entropy_@v_v0.1.0.mod) = a1d50013145544eaa025abb8437c9e1dd263bcca
 SHA512 (github.com_hashicorp_go-kms-wrapping_entropy_@v_v0.1.0.mod) = 9d86ce1de4bd2d4b32f76f69d0ce1f01c7db8b1a2555ae8b789c24fa5391e9e477bdd1d82719003f37205b102a845bce0b65611fd10cf52df4d49b6471f7e39e
@@ -1116,14 +1124,14 @@ SHA1 (github.com_hashicorp_go-kms-wrapping_entropy_@v_v0.1.0.zip) = 701fd6890649
 RMD160 (github.com_hashicorp_go-kms-wrapping_entropy_@v_v0.1.0.zip) = f3ce64554083bcf73dfdf86ade1ce6b3f09a51b2
 SHA512 (github.com_hashicorp_go-kms-wrapping_entropy_@v_v0.1.0.zip) = d90328e546ccc43766a304f4971e6036337caed53204bd687c736ec3a5c82c538b929921ddc9745eab6315ddba741817d70b41dae2177a6a88e5991cf8c43d14
 Size (github.com_hashicorp_go-kms-wrapping_entropy_@v_v0.1.0.zip) = 8113 bytes
-SHA1 (github.com_hashicorp_go-memdb_@v_v1.0.3.mod) = 71f8379d25818a0ce3615352c12e7cd77087ca78
-RMD160 (github.com_hashicorp_go-memdb_@v_v1.0.3.mod) = a30850eee404b6949299a0a18da69b286df157ef
-SHA512 (github.com_hashicorp_go-memdb_@v_v1.0.3.mod) = 8d73ddc435d2a93ce4daecda7fb2eec3a8cb0ab4a1b5c83f14a514046ccdb52358762c70e72da91a15ad1b970bfae8cc9fa775ce4f87b9e4afbe54075961306d
-Size (github.com_hashicorp_go-memdb_@v_v1.0.3.mod) = 102 bytes
-SHA1 (github.com_hashicorp_go-memdb_@v_v1.0.3.zip) = ba65e7491758b157f8c3705eca932f1f57f2ba48
-RMD160 (github.com_hashicorp_go-memdb_@v_v1.0.3.zip) = 6e392ff6bd301f10af0dc6f88f52456ba2661625
-SHA512 (github.com_hashicorp_go-memdb_@v_v1.0.3.zip) = b22f0255a075b7666f10b542fa810d99ab2cd15bd49697330e83199c63d2fe21c317247ae03f3814d5ceb4194a9afac96f4b39422f12d669a9086f96d7e2d28e
-Size (github.com_hashicorp_go-memdb_@v_v1.0.3.zip) = 39600 bytes
+SHA1 (github.com_hashicorp_go-memdb_@v_v1.3.0.mod) = 225d30fb74c266f0ba3416b7cf6452ca6ef19a3e
+RMD160 (github.com_hashicorp_go-memdb_@v_v1.3.0.mod) = 91ac5c12b8fec0084fe3a6481b3ac895e7a669f0
+SHA512 (github.com_hashicorp_go-memdb_@v_v1.3.0.mod) = caa11c7fcae8cf29369b1276911a7ce1f18c86af25ff4bd5e0949fff63dbcb99f57322ea335dff159f00653d1eeaaeb9f130efa8967ca440dc1e8417520aca81
+Size (github.com_hashicorp_go-memdb_@v_v1.3.0.mod) = 159 bytes
+SHA1 (github.com_hashicorp_go-memdb_@v_v1.3.0.zip) = e7a40f670d889d53449ab80e128ff719ba9e126e
+RMD160 (github.com_hashicorp_go-memdb_@v_v1.3.0.zip) = cecf1eaa1fb4cea52239ec938cceae97c85dc949
+SHA512 (github.com_hashicorp_go-memdb_@v_v1.3.0.zip) = 9c6541984800816462813a6fec63e19aa01ccc7888c8551d357ad08a85f9d7debfb513384e28363932cbd9a2865f4b69831b76a47a6289db7b33169a97152e33
+Size (github.com_hashicorp_go-memdb_@v_v1.3.0.zip) = 45061 bytes
 SHA1 (github.com_hashicorp_go-msgpack_@v_v0.5.3.mod) = dacb633791ff05784c12a1a4a4d3fb5f58868b27
 RMD160 (github.com_hashicorp_go-msgpack_@v_v0.5.3.mod) = d3f299c7b0d7213bb1e01a4b3f979dae632e7bea
 SHA512 (github.com_hashicorp_go-msgpack_@v_v0.5.3.mod) = 45b4424a023ea15d95167322e022269e32f7a718dbeaf192d0cee9f6bd136f5b4a26827d6d041a8103a95f622a0dc92123b32e6463254199893f360ad8680de0
@@ -1228,14 +1236,14 @@ SHA1 (github.com_hashicorp_go-version_@v_v1.1.0.mod) = 49fffc7d122a4cb45c6941ceb
 RMD160 (github.com_hashicorp_go-version_@v_v1.1.0.mod) = 0c2cc2a7ee1dc457e7c662d052d2f0a3bb2364c0
 SHA512 (github.com_hashicorp_go-version_@v_v1.1.0.mod) = 40ee5ae5f6991a06b8ef61f04349a5012e36932b53c678dee58d25fc1bae386d6d431de4167641721c28f686071439fb8c9c250bf9607e9743a7280244618d87
 Size (github.com_hashicorp_go-version_@v_v1.1.0.mod) = 39 bytes
-SHA1 (github.com_hashicorp_go-version_@v_v1.2.0.mod) = 49fffc7d122a4cb45c6941cebd15979941c9e1b7
-RMD160 (github.com_hashicorp_go-version_@v_v1.2.0.mod) = 0c2cc2a7ee1dc457e7c662d052d2f0a3bb2364c0
-SHA512 (github.com_hashicorp_go-version_@v_v1.2.0.mod) = 40ee5ae5f6991a06b8ef61f04349a5012e36932b53c678dee58d25fc1bae386d6d431de4167641721c28f686071439fb8c9c250bf9607e9743a7280244618d87
-Size (github.com_hashicorp_go-version_@v_v1.2.0.mod) = 39 bytes
-SHA1 (github.com_hashicorp_go-version_@v_v1.2.0.zip) = ec2303d0f4448f1c587e058bcf8c0616727ed4a4
-RMD160 (github.com_hashicorp_go-version_@v_v1.2.0.zip) = 428256af3bd051f7e1f6bab31a3d59138ac766e6
-SHA512 (github.com_hashicorp_go-version_@v_v1.2.0.zip) = b1267266cdb9895cfc0707dcfbb3dbcc8e3a53adb297811ee70d20f6a77d080f5cb0c4b8438e68d933a7ebf701c0c3e3f9a1b881916fbdf5b4832d5ae790ebe8
-Size (github.com_hashicorp_go-version_@v_v1.2.0.zip) = 15917 bytes
+SHA1 (github.com_hashicorp_go-version_@v_v1.2.1.mod) = 49fffc7d122a4cb45c6941cebd15979941c9e1b7
+RMD160 (github.com_hashicorp_go-version_@v_v1.2.1.mod) = 0c2cc2a7ee1dc457e7c662d052d2f0a3bb2364c0
+SHA512 (github.com_hashicorp_go-version_@v_v1.2.1.mod) = 40ee5ae5f6991a06b8ef61f04349a5012e36932b53c678dee58d25fc1bae386d6d431de4167641721c28f686071439fb8c9c250bf9607e9743a7280244618d87
+Size (github.com_hashicorp_go-version_@v_v1.2.1.mod) = 39 bytes
+SHA1 (github.com_hashicorp_go-version_@v_v1.2.1.zip) = 47738e2c9bf6f9c868fa6d033070bc49b6bff67a
+RMD160 (github.com_hashicorp_go-version_@v_v1.2.1.zip) = ed2b852c8f90038bf2c6bac862e7f257d0109862
+SHA512 (github.com_hashicorp_go-version_@v_v1.2.1.zip) = c44bca4c63fc38ebd97c2abb7b5bfa2af635548723697d9533590242b936f1b55b119d0f4a327f1b02c546d571cd0d085f727c00057634d8c2316d1c7249fecd
+Size (github.com_hashicorp_go-version_@v_v1.2.1.zip) = 16706 bytes
 SHA1 (github.com_hashicorp_golang-lru_@v_v0.5.0.mod) = 0435c1e972966fc6046726380251805837fe28c9
 RMD160 (github.com_hashicorp_golang-lru_@v_v0.5.0.mod) = 232fc24ee50dd4cb0aa6e49cac28fb048c2c0365
 SHA512 (github.com_hashicorp_golang-lru_@v_v0.5.0.mod) = bc3e0c3b16454e0f079bef539857c22f09ebf11e78ac1744a22f5af87d7297979b7ccdd48e4f59605cac562c268c3cacdbf2745f65be5c934f73f216707120e1
@@ -1260,14 +1268,14 @@ SHA1 (github.com_hashicorp_hcl_@v_v1.0.0.zip) = 6d30d890b7299b52bfc768ccb7fb1fea
 RMD160 (github.com_hashicorp_hcl_@v_v1.0.0.zip) = 636310f19e82ff04c2d8df93d1aa119b73d2d9b4
 SHA512 (github.com_hashicorp_hcl_@v_v1.0.0.zip) = 19403c36137b6ec9247fab3a9255dc98ad9dc46ba03ad3788e11298f8a310756b24dbfd3a0d9893ad93dc111dd228c421f96daae09e2058438c3c7c58386a71b
 Size (github.com_hashicorp_hcl_@v_v1.0.0.zip) = 121655 bytes
-SHA1 (github.com_hashicorp_hil_@v_v0.0.0-20160711231837-1e86c6b523c5.mod) = 8cb4e36389d27e1d644ed9c7c09d5b48bd1ed4f3
-RMD160 (github.com_hashicorp_hil_@v_v0.0.0-20160711231837-1e86c6b523c5.mod) = ea6b08b75ed1bfefaa7e75650b7c5a3d869edf3c
-SHA512 (github.com_hashicorp_hil_@v_v0.0.0-20160711231837-1e86c6b523c5.mod) = b584d1f966117184e44883b0c057f3a51323e9a6f5a4223655ee1c4e7b5928631d3121abce2505e2a58219cf531d75ad63d3e7e05c12982d73095d4cce21736f
-Size (github.com_hashicorp_hil_@v_v0.0.0-20160711231837-1e86c6b523c5.mod) = 32 bytes
-SHA1 (github.com_hashicorp_hil_@v_v0.0.0-20160711231837-1e86c6b523c5.zip) = 80721930900dd04e548d7347291900e4e70e5dbb
-RMD160 (github.com_hashicorp_hil_@v_v0.0.0-20160711231837-1e86c6b523c5.zip) = a210885630d0beb4c893e385928bf210be2b9e21
-SHA512 (github.com_hashicorp_hil_@v_v0.0.0-20160711231837-1e86c6b523c5.zip) = 4975a066f8b65dda7f51516347889b666aa930d016270100d0ffb9dd46aa7656dabe8a4ff84751d77ee807e9ebc51fdd882bb6e873bf00b1fcfe88289b04aa46
-Size (github.com_hashicorp_hil_@v_v0.0.0-20160711231837-1e86c6b523c5.zip) = 58035 bytes
+SHA1 (github.com_hashicorp_hil_@v_v0.0.0-20200423225030-a18a1cd20038.mod) = 0698d7a8da23e9a8325375d91840a1289a4de207
+RMD160 (github.com_hashicorp_hil_@v_v0.0.0-20200423225030-a18a1cd20038.mod) = 2f4d47d3cf5b23d1881a274497946a6accf46a5d
+SHA512 (github.com_hashicorp_hil_@v_v0.0.0-20200423225030-a18a1cd20038.mod) = 107d9cdeca3151466c4b6833d8b39808ac5f3e05308ce9d78bb8afa18623bb91248ebd156f78343c4af95ddb91bbeab33515d7e414f5244753970b8b9948b498
+Size (github.com_hashicorp_hil_@v_v0.0.0-20200423225030-a18a1cd20038.mod) = 128 bytes
+SHA1 (github.com_hashicorp_hil_@v_v0.0.0-20200423225030-a18a1cd20038.zip) = f706c8c47fd35eca891d542570d30a18731ca4b4
+RMD160 (github.com_hashicorp_hil_@v_v0.0.0-20200423225030-a18a1cd20038.zip) = 16fd91a9231c34d290cc6ab024d2a4ea45188f2d
+SHA512 (github.com_hashicorp_hil_@v_v0.0.0-20200423225030-a18a1cd20038.zip) = b68047c19a41e5293a7591d40f66421f1fd9755a2e58d53cddc055cdd377ea6cf313da8b3e53628ff6bed401e0d7c7deb865ca15ceec6abf828b6f71bc7cff59
+Size (github.com_hashicorp_hil_@v_v0.0.0-20200423225030-a18a1cd20038.zip) = 76818 bytes
 SHA1 (github.com_hashicorp_logutils_@v_v1.0.0.mod) = 3db514d4f4e1c4a50d0a5d1d5bf3184ef1a1e0c3
 RMD160 (github.com_hashicorp_logutils_@v_v1.0.0.mod) = a70d8a5d0b7a1adb1b25dd20281aec9d0e91ad1b
 SHA512 (github.com_hashicorp_logutils_@v_v1.0.0.mod) = 82c9a364ab098ebb6f830753e089529036cb405aed375df5b55459b203a1d2d02299103925bcf4dff94bf4868e7005f114367e90fd2d24d5f1db3e0287628f66
@@ -1280,10 +1288,14 @@ SHA1 (github.com_hashicorp_mdns_@v_v1.0.1.mod) = f34d8a06da3cd64bb146b959e4ba217
 RMD160 (github.com_hashicorp_mdns_@v_v1.0.1.mod) = c5d1dfb137f00808985cc332a0e5650bb5cc9340
 SHA512 (github.com_hashicorp_mdns_@v_v1.0.1.mod) = ed46a1036f3f7a7c2c5d55440ac93f468b5b4282fb5bee31a0c1a746b00426922544acd55ca6ca539d9d6927a23888e81aa360d2140036e84dc895b5a97c9b43
 Size (github.com_hashicorp_mdns_@v_v1.0.1.mod) = 328 bytes
-SHA1 (github.com_hashicorp_mdns_@v_v1.0.1.zip) = 35cab2b4858ed437dc65cbf23286febabf37b31c
-RMD160 (github.com_hashicorp_mdns_@v_v1.0.1.zip) = 8b8b04971c0f978b6214964ec8cf086f7de45f16
-SHA512 (github.com_hashicorp_mdns_@v_v1.0.1.zip) = 96125081b3fe8233d3c2885c52cbd46c7091f4dbe7ff3e542f934c21c75f498b6bbb89200f9ed27dcc572b16dcb31bd400bb4d74b4e75e171c565ce7c1ecb3cd
-Size (github.com_hashicorp_mdns_@v_v1.0.1.zip) = 14557 bytes
+SHA1 (github.com_hashicorp_mdns_@v_v1.0.3.mod) = 5f41f5bfa2a4179be7000b1a3eaa5b043d9c61b7
+RMD160 (github.com_hashicorp_mdns_@v_v1.0.3.mod) = b9be4fb01d907a73eb536c96bf81aff51fb9ac03
+SHA512 (github.com_hashicorp_mdns_@v_v1.0.3.mod) = eed5b88b29d831010236dde8569d3eb79d0c21cddc92ba6db576eac4100eff994f65df9e0a55cd4c71b30150e88db90a8b4be4d243aef67b0fdf0abc84557336
+Size (github.com_hashicorp_mdns_@v_v1.0.3.mod) = 138 bytes
+SHA1 (github.com_hashicorp_mdns_@v_v1.0.3.zip) = 88d41888f113ca676d3006b9860f9947fd56ef8b
+RMD160 (github.com_hashicorp_mdns_@v_v1.0.3.zip) = b3901fb05339a1f5a11e2ccc1a4cf09968e65338
+SHA512 (github.com_hashicorp_mdns_@v_v1.0.3.zip) = 537bc4fb3b398efed9878a4155d988a896c298cd08b74e6c9bc6418d01abb8163b98b6868feb2adb2d481b86e2dacbdd7c23ca0e6a08dd8a76ca62f7c8586f39
+Size (github.com_hashicorp_mdns_@v_v1.0.3.zip) = 14927 bytes
 SHA1 (github.com_hashicorp_memberlist_@v_v0.2.2.mod) = 48349234484a26e6d314f03df8c54f5f9bd5fe36
 RMD160 (github.com_hashicorp_memberlist_@v_v0.2.2.mod) = 4b49e62b9c87a74c20d97cb92c1131052d79b63b
 SHA512 (github.com_hashicorp_memberlist_@v_v0.2.2.mod) = 8b5cf65d942a763e666773ce3d9f1bfc88ed6ca051ccaa036d0236f52d383cea94bfe280ed62cf0e2dbc2af586dbd5008e1a62b958d434045933513fade28e88
@@ -1300,6 +1312,14 @@ SHA1 (github.com_hashicorp_net-rpc-msgpackrpc_@v_v0.0.0-20151116020338-a14192a58
 RMD160 (github.com_hashicorp_net-rpc-msgpackrpc_@v_v0.0.0-20151116020338-a14192a58a69.zip) = 5efab6fadcb9b49a66708ab0dfecb3a05d4283de
 SHA512 (github.com_hashicorp_net-rpc-msgpackrpc_@v_v0.0.0-20151116020338-a14192a58a69.zip) = de6607396bc85d72d44c291a4d4eec7c98f0b54c27a92fbe0b89bc8916ca59294c419e4591da7d12ebe0541867bfb9c57f46ca4be19562129646ec2a764c0604
 Size (github.com_hashicorp_net-rpc-msgpackrpc_@v_v0.0.0-20151116020338-a14192a58a69.zip) = 4515 bytes
+SHA1 (github.com_hashicorp_raft-autopilot_@v_v0.1.1.mod) = 1fda0315581587d8e11a2dd6827dd7fd92483048
+RMD160 (github.com_hashicorp_raft-autopilot_@v_v0.1.1.mod) = 26ec79d139c49996d1b6ff32bd6ae9b5cbab594b
+SHA512 (github.com_hashicorp_raft-autopilot_@v_v0.1.1.mod) = 438c4d83a271735fcab4b4dc92eefb8690be9f4695aecd6f3c65f8eb6040603172acf89c888df73f47cf03b2a206b8fb9ba6fcfd9ce39ad7601c5194f7b926e9
+Size (github.com_hashicorp_raft-autopilot_@v_v0.1.1.mod) = 202 bytes
+SHA1 (github.com_hashicorp_raft-autopilot_@v_v0.1.1.zip) = 33b25212334e2282e88060a46ab415d03d14dda0
+RMD160 (github.com_hashicorp_raft-autopilot_@v_v0.1.1.zip) = e07b9f6293c673e51a3e0749ac9c818454af820f
+SHA512 (github.com_hashicorp_raft-autopilot_@v_v0.1.1.zip) = 464d65d2521316a766d5659570aa81a5cd25a1a03939bfbe856608d6a952fd1eb63391852f92b28b35d3283bd659efa7906f940eeca7fbe25e11f20b005baa9e
+Size (github.com_hashicorp_raft-autopilot_@v_v0.1.1.zip) = 53103 bytes
 SHA1 (github.com_hashicorp_raft-boltdb_@v_v0.0.0-20171010151810-6e5ba93211ea.mod) = bbcc2065f6c0ae3de04c000bcd286a09e0bb0697
 RMD160 (github.com_hashicorp_raft-boltdb_@v_v0.0.0-20171010151810-6e5ba93211ea.mod) = a436771ba439ad1610419c30640948673eff5db7
 SHA512 (github.com_hashicorp_raft-boltdb_@v_v0.0.0-20171010151810-6e5ba93211ea.mod) = 76ce93f04caa8045ed49fccbbbfe76fc278bb7d94c973e408d0695e8c9c5e569b3dc9d4af8722f13c4718753aa72fea76a238dc8243aff34bbfd10d4b684e38a
@@ -1312,26 +1332,22 @@ SHA1 (github.com_hashicorp_raft_@v_v1.1.1.mod) = 0e1ae876d4925eade97c90f5019495a
 RMD160 (github.com_hashicorp_raft_@v_v1.1.1.mod) = 1a22c5157fe46f5f9e18bfa3e059e8e998e40af0
 SHA512 (github.com_hashicorp_raft_@v_v1.1.1.mod) = e44c233e6bf407eac6a4eb6f7a72dc0118575b6dfe48a9d0afb95d99a847ad30f75b11e6d008238b7761965182df56e52ec183bb0905e054a638c76898368e6d
 Size (github.com_hashicorp_raft_@v_v1.1.1.mod) = 410 bytes
-SHA1 (github.com_hashicorp_raft_@v_v1.1.2.mod) = 0e1ae876d4925eade97c90f5019495a93700d037
-RMD160 (github.com_hashicorp_raft_@v_v1.1.2.mod) = 1a22c5157fe46f5f9e18bfa3e059e8e998e40af0
-SHA512 (github.com_hashicorp_raft_@v_v1.1.2.mod) = e44c233e6bf407eac6a4eb6f7a72dc0118575b6dfe48a9d0afb95d99a847ad30f75b11e6d008238b7761965182df56e52ec183bb0905e054a638c76898368e6d
-Size (github.com_hashicorp_raft_@v_v1.1.2.mod) = 410 bytes
-SHA1 (github.com_hashicorp_raft_@v_v1.1.2.zip) = 3c93b270fb2704494bcd7fc3a6de897030100351
-RMD160 (github.com_hashicorp_raft_@v_v1.1.2.zip) = 2aa33080d8e2bc6c40c551c730abf473b1254f56
-SHA512 (github.com_hashicorp_raft_@v_v1.1.2.zip) = dc554594229ea4caebdc7dfe34ddd5fc054ee59f8717a6afe2d32197ccf9b357a7f66c30d019c6d7b89685869e0e04c0dbcecbdaaf79e47c766c7573dad54d4d
-Size (github.com_hashicorp_raft_@v_v1.1.2.zip) = 156422 bytes
-SHA1 (github.com_hashicorp_serf_@v_v0.9.3.mod) = f417843cd70f571c2e1d4d93a69a462b54602d39
-RMD160 (github.com_hashicorp_serf_@v_v0.9.3.mod) = 8a925f6d25718b1facd0d3d334cdaacc37f5b8ab
-SHA512 (github.com_hashicorp_serf_@v_v0.9.3.mod) = 175744788ef938ee696ef7f706261fe1200ab134e27f7957641f74dd9606424f68c479c0ed9a9f3c1e9fb1bcd23dbf7edde7d02c4a45160cb8dc2c251734905e
-Size (github.com_hashicorp_serf_@v_v0.9.3.mod) = 831 bytes
-SHA1 (github.com_hashicorp_serf_@v_v0.9.4.mod) = f417843cd70f571c2e1d4d93a69a462b54602d39
-RMD160 (github.com_hashicorp_serf_@v_v0.9.4.mod) = 8a925f6d25718b1facd0d3d334cdaacc37f5b8ab
-SHA512 (github.com_hashicorp_serf_@v_v0.9.4.mod) = 175744788ef938ee696ef7f706261fe1200ab134e27f7957641f74dd9606424f68c479c0ed9a9f3c1e9fb1bcd23dbf7edde7d02c4a45160cb8dc2c251734905e
-Size (github.com_hashicorp_serf_@v_v0.9.4.mod) = 831 bytes
-SHA1 (github.com_hashicorp_serf_@v_v0.9.4.zip) = 48079c1ae2a669c6bd8242dae7771b99ca296e31
-RMD160 (github.com_hashicorp_serf_@v_v0.9.4.zip) = 90e69719476a97944231c8f508f4b350c2e56285
-SHA512 (github.com_hashicorp_serf_@v_v0.9.4.zip) = 487de808f4ee33a22ffe1b6c3c57e102e54c2162ad1016fdb243a16f2dd1555dc8d978d636b03d2ec5eff30fa436771ade7719c4a650472533b36c0868c418c6
-Size (github.com_hashicorp_serf_@v_v0.9.4.zip) = 550550 bytes
+SHA1 (github.com_hashicorp_raft_@v_v1.2.0.mod) = 0e1ae876d4925eade97c90f5019495a93700d037
+RMD160 (github.com_hashicorp_raft_@v_v1.2.0.mod) = 1a22c5157fe46f5f9e18bfa3e059e8e998e40af0
+SHA512 (github.com_hashicorp_raft_@v_v1.2.0.mod) = e44c233e6bf407eac6a4eb6f7a72dc0118575b6dfe48a9d0afb95d99a847ad30f75b11e6d008238b7761965182df56e52ec183bb0905e054a638c76898368e6d
+Size (github.com_hashicorp_raft_@v_v1.2.0.mod) = 410 bytes
+SHA1 (github.com_hashicorp_raft_@v_v1.2.0.zip) = 9c36ee2d19057b534769de7a64e11e08c78d4323
+RMD160 (github.com_hashicorp_raft_@v_v1.2.0.zip) = 923802bee44cf0bc571f21cda59715fd22611a23
+SHA512 (github.com_hashicorp_raft_@v_v1.2.0.zip) = c689267a27346d83ac054c5202746c69bf79e5accc69a07c833ab00fe4f2a780ccbf41ed62d50e411322e62ba6603031134662c9e0dca18cd1ec3a52179a062b
+Size (github.com_hashicorp_raft_@v_v1.2.0.zip) = 157790 bytes
+SHA1 (github.com_hashicorp_serf_@v_v0.9.5.mod) = f417843cd70f571c2e1d4d93a69a462b54602d39
+RMD160 (github.com_hashicorp_serf_@v_v0.9.5.mod) = 8a925f6d25718b1facd0d3d334cdaacc37f5b8ab
+SHA512 (github.com_hashicorp_serf_@v_v0.9.5.mod) = 175744788ef938ee696ef7f706261fe1200ab134e27f7957641f74dd9606424f68c479c0ed9a9f3c1e9fb1bcd23dbf7edde7d02c4a45160cb8dc2c251734905e
+Size (github.com_hashicorp_serf_@v_v0.9.5.mod) = 831 bytes
+SHA1 (github.com_hashicorp_serf_@v_v0.9.5.zip) = 38d5b81720c84ec31fc6f63d1ab3266aa0eef3e8
+RMD160 (github.com_hashicorp_serf_@v_v0.9.5.zip) = e1bf02997589e3d8897ff27f2d117fc08a5dfc34
+SHA512 (github.com_hashicorp_serf_@v_v0.9.5.zip) = 0daaf5d99ee54e7ff0ea882e77a38ab344cb427a8833a5c7fa30936d401d4c9edd6ea603b48821c072b6dabb2d9f31d74ea38180e23cc0949756b8e828ea0070
+Size (github.com_hashicorp_serf_@v_v0.9.5.zip) = 553094 bytes
 SHA1 (github.com_hashicorp_vault_api_@v_v1.0.5-0.20200717191844-f687267c8086.mod) = 9628da74cfb8d65d05811abe517a94b50fa82b79
 RMD160 (github.com_hashicorp_vault_api_@v_v1.0.5-0.20200717191844-f687267c8086.mod) = 2291d51584174f8ae052369045b82d99221f7659
 SHA512 (github.com_hashicorp_vault_api_@v_v1.0.5-0.20200717191844-f687267c8086.mod) = 44a1ac2d2408a9cf14670e9fe4f32fd0df797d60d0de05030f41a7887503f03c79fe06cd49755c9083a914c126d76c716d8c2bee70d1edd44d3a9bd38d3d1406
@@ -1360,14 +1376,14 @@ SHA1 (github.com_hashicorp_yamux_@v_v0.0.0-20180604194846-3520598351bb.mod) = d5
 RMD160 (github.com_hashicorp_yamux_@v_v0.0.0-20180604194846-3520598351bb.mod) = 59409dc61e16a73de38bdd5dc192c74fe3884e4c
 SHA512 (github.com_hashicorp_yamux_@v_v0.0.0-20180604194846-3520598351bb.mod) = 9336813b2b20fc7f8f9fd9275f534f30dbe1f232df91aa58817c8a1b8aa46face6073e06721688058b223dcfaf73ea920b84f102542a050ebc51fa5da152fe37
 Size (github.com_hashicorp_yamux_@v_v0.0.0-20180604194846-3520598351bb.mod) = 34 bytes
-SHA1 (github.com_hashicorp_yamux_@v_v0.0.0-20181012175058-2f1d1f20f75d.mod) = d5df4b2f56fe996857412282c5b35ffd6654d497
-RMD160 (github.com_hashicorp_yamux_@v_v0.0.0-20181012175058-2f1d1f20f75d.mod) = 59409dc61e16a73de38bdd5dc192c74fe3884e4c
-SHA512 (github.com_hashicorp_yamux_@v_v0.0.0-20181012175058-2f1d1f20f75d.mod) = 9336813b2b20fc7f8f9fd9275f534f30dbe1f232df91aa58817c8a1b8aa46face6073e06721688058b223dcfaf73ea920b84f102542a050ebc51fa5da152fe37
-Size (github.com_hashicorp_yamux_@v_v0.0.0-20181012175058-2f1d1f20f75d.mod) = 34 bytes
-SHA1 (github.com_hashicorp_yamux_@v_v0.0.0-20181012175058-2f1d1f20f75d.zip) = d66fc7a9c5ae7b7791a3cd1665c03305fb73e4a2
-RMD160 (github.com_hashicorp_yamux_@v_v0.0.0-20181012175058-2f1d1f20f75d.zip) = 4b36b346a61624c1ef877265cc6669fd259f34b7
-SHA512 (github.com_hashicorp_yamux_@v_v0.0.0-20181012175058-2f1d1f20f75d.zip) = 1949e95d8f3d259b27e0152824e25aea2ada28f33b56282a62bed9a6076a25dbcf664a945c5fc3015247c6d3f470192fd22273d60bbeb155288574bdac6e2e8a
-Size (github.com_hashicorp_yamux_@v_v0.0.0-20181012175058-2f1d1f20f75d.zip) = 28730 bytes
+SHA1 (github.com_hashicorp_yamux_@v_v0.0.0-20200609203250-aecfd211c9ce.mod) = d5df4b2f56fe996857412282c5b35ffd6654d497
+RMD160 (github.com_hashicorp_yamux_@v_v0.0.0-20200609203250-aecfd211c9ce.mod) = 59409dc61e16a73de38bdd5dc192c74fe3884e4c
+SHA512 (github.com_hashicorp_yamux_@v_v0.0.0-20200609203250-aecfd211c9ce.mod) = 9336813b2b20fc7f8f9fd9275f534f30dbe1f232df91aa58817c8a1b8aa46face6073e06721688058b223dcfaf73ea920b84f102542a050ebc51fa5da152fe37
+Size (github.com_hashicorp_yamux_@v_v0.0.0-20200609203250-aecfd211c9ce.mod) = 34 bytes
+SHA1 (github.com_hashicorp_yamux_@v_v0.0.0-20200609203250-aecfd211c9ce.zip) = 07a7db42fc87df0a55045ecadff85741e7b947db
+RMD160 (github.com_hashicorp_yamux_@v_v0.0.0-20200609203250-aecfd211c9ce.zip) = 8f5b108f47e682a9152f3e20c01a57aef7d99775
+SHA512 (github.com_hashicorp_yamux_@v_v0.0.0-20200609203250-aecfd211c9ce.zip) = 8004b328f3162fa52314dbfcaf6eb880e1ecd205960176ba54812e0b8632cfd1b1977abbb559086f4bba867b027357fd4776d7bb58b10138bc09f27af294e072
+Size (github.com_hashicorp_yamux_@v_v0.0.0-20200609203250-aecfd211c9ce.zip) = 28949 bytes
 SHA1 (github.com_hpcloud_tail_@v_v1.0.0.mod) = 5f992dab1dad509cacbde273503ee4204f15ec77
 RMD160 (github.com_hpcloud_tail_@v_v1.0.0.mod) = 91c1734d690473a5c43e5c6e1335275ff9c8a692
 SHA512 (github.com_hpcloud_tail_@v_v1.0.0.mod) = 54a5bbc02b82693a977a4f690314b16d94cf071decddee3a4af2a90398e626ff188bc34ab3517278e7aac4e657f3f3070a020c85274be3750371dfdeee139b23
@@ -1652,10 +1668,18 @@ SHA1 (github.com_miekg_dns_@v_v1.1.26.mod) = 92d28445a7d501d73bcb87cabd17004b963
 RMD160 (github.com_miekg_dns_@v_v1.1.26.mod) = a0026962f48d8345a5d0c74ec0527433013c7b9c
 SHA512 (github.com_miekg_dns_@v_v1.1.26.mod) = 5a25ee9f24cf52fccb76de4ca0d1ee7bf309044e6700d48273bc1ceba948831320a51a7013584f60496df642284a4a282b2ed44e7d6290e96927927a220619d6
 Size (github.com_miekg_dns_@v_v1.1.26.mod) = 371 bytes
-SHA1 (github.com_miekg_dns_@v_v1.1.26.zip) = bccc9633cb47b068bc1887e43c683f493d2c1365
-RMD160 (github.com_miekg_dns_@v_v1.1.26.zip) = 890e13619ace3ae9944a4802bc3ebb69f831a527
-SHA512 (github.com_miekg_dns_@v_v1.1.26.zip) = 2ac387028c1ffe54d5223a0325e2c36c827ad93e24c628ac353da6b4b97df9ccbb3f8d0440449d3b190f30ffcfd7fb865e3e030b882dcbdea116f20e3184fcf5
-Size (github.com_miekg_dns_@v_v1.1.26.zip) = 214127 bytes
+SHA1 (github.com_miekg_dns_@v_v1.1.27.mod) = c75896dea89dc322daf36ed99dbe80dbf3c7cffa
+RMD160 (github.com_miekg_dns_@v_v1.1.27.mod) = 3778aeeff1311f50a0881dea751cb436dd965ae5
+SHA512 (github.com_miekg_dns_@v_v1.1.27.mod) = 838358c8d40bce54c7010bf6c141e2022f2036ba91129166dbf27e2fbf355b8c32392fe8fd6edece94934c460c1b9bc73c496627b4b7efd63341d7086fd0b114
+Size (github.com_miekg_dns_@v_v1.1.27.mod) = 333 bytes
+SHA1 (github.com_miekg_dns_@v_v1.1.31.mod) = c75896dea89dc322daf36ed99dbe80dbf3c7cffa
+RMD160 (github.com_miekg_dns_@v_v1.1.31.mod) = 3778aeeff1311f50a0881dea751cb436dd965ae5
+SHA512 (github.com_miekg_dns_@v_v1.1.31.mod) = 838358c8d40bce54c7010bf6c141e2022f2036ba91129166dbf27e2fbf355b8c32392fe8fd6edece94934c460c1b9bc73c496627b4b7efd63341d7086fd0b114
+Size (github.com_miekg_dns_@v_v1.1.31.mod) = 333 bytes
+SHA1 (github.com_miekg_dns_@v_v1.1.31.zip) = f92cc23ec6171e15296a02b1f08974bae89b6cbd
+RMD160 (github.com_miekg_dns_@v_v1.1.31.zip) = 2a5af9f1ce96e935aaa01523bedafc2e4d43b64f
+SHA512 (github.com_miekg_dns_@v_v1.1.31.zip) = d60802ce85252ea35f932efa2c04e10ab19bb94d56e6e7c84b1c41b9a43124b9b9e082f0eaa1ac7c903f31d70da9b8bb1f537edc71c0dfb19626226860d52a4f
+Size (github.com_miekg_dns_@v_v1.1.31.zip) = 224434 bytes
 SHA1 (github.com_mitchellh_cli_@v_v1.0.0.mod) = d6d7a0db0df856ea9841de8744d92edb412296a3
 RMD160 (github.com_mitchellh_cli_@v_v1.0.0.mod) = 6c7fbb33343a305e63b13c5ed4a07dc78aebc53f
 SHA512 (github.com_mitchellh_cli_@v_v1.0.0.mod) = 7cbcae5e1749c55a0c3fa25b007035c0c44c8f982a37635735afb95c63a20ba019a51e74244c568a170b5a379ccb10cc8c9df716b6261d324755ea92c7f462f4
@@ -2160,14 +2184,14 @@ SHA1 (github.com_sean-_seed_@v_v0.0.0-20170313163322-e2103e2c3529.zip) = e951a55
 RMD160 (github.com_sean-_seed_@v_v0.0.0-20170313163322-e2103e2c3529.zip) = 7a9d93b88fc52fd417716be5ed3e8c42f23bb939
 SHA512 (github.com_sean-_seed_@v_v0.0.0-20170313163322-e2103e2c3529.zip) = acd19ece301ac146ae50dd784e3dc1c2cbc0c00a562fc5d2759b7b8a4acf0b5bf83d5bcd54122130877a1568a13709c28ab7e1cc7ba269ec91aa1b1a86c2065a
 Size (github.com_sean-_seed_@v_v0.0.0-20170313163322-e2103e2c3529.zip) = 4415 bytes
-SHA1 (github.com_shirou_gopsutil_@v_v2.20.9+incompatible.mod) = 6d2285ca0c291cd9ac01dae4c9b1d14415d15a46
-RMD160 (github.com_shirou_gopsutil_@v_v2.20.9+incompatible.mod) = eb41d0f40e5b5f2cd54b14de360cc3679a4ce95d
-SHA512 (github.com_shirou_gopsutil_@v_v2.20.9+incompatible.mod) = a5f5d88a767a855b6ff24d7e2e0c4aeb81fb1365a7e81ed989b4c605a7a6c61dc52d7ce97fc672c21020ef56f597dce679184e5e8d3d199678487e6bebaa8127
-Size (github.com_shirou_gopsutil_@v_v2.20.9+incompatible.mod) = 34 bytes
-SHA1 (github.com_shirou_gopsutil_@v_v2.20.9+incompatible.zip) = 7f44a86872b6427eb0088f81c2b3a95d7646d9d6
-RMD160 (github.com_shirou_gopsutil_@v_v2.20.9+incompatible.zip) = f96bbefed4eb04fbd82709f96a2f5743b7da1970
-SHA512 (github.com_shirou_gopsutil_@v_v2.20.9+incompatible.zip) = dde9012abcc21ee5ac43b962a0e55693d456171b4d0e71388efbc3376880dfc6973991cca66da28488f46ca5ee862b8b2c08472f26835ffa34b8c47dec5d428e
-Size (github.com_shirou_gopsutil_@v_v2.20.9+incompatible.zip) = 237135 bytes
+SHA1 (github.com_shirou_gopsutil_v3_@v_v3.20.10.mod) = 1c7d6886f346e950c0272f87d73452c7bf513f6b
+RMD160 (github.com_shirou_gopsutil_v3_@v_v3.20.10.mod) = ac5e65f6d31d66ef79bfccf37369632063634cf0
+SHA512 (github.com_shirou_gopsutil_v3_@v_v3.20.10.mod) = 65f7f3695c82e7039187709df388db8049aff76aae334427e78cf224cce118835df370b4d59430fa87f652fb1f6980a92586a081e32c866159d42dd5ede26a70
+Size (github.com_shirou_gopsutil_v3_@v_v3.20.10.mod) = 258 bytes
+SHA1 (github.com_shirou_gopsutil_v3_@v_v3.20.10.zip) = 1e02a9e80ce27017d69e0bbc8da9d4250e0283d1
+RMD160 (github.com_shirou_gopsutil_v3_@v_v3.20.10.zip) = 304aaa087801f652c59149beadad65efe2b7d7b9
+SHA512 (github.com_shirou_gopsutil_v3_@v_v3.20.10.zip) = 46d27a762b8d27799904150ed77755a530be4e8eb47c61ab63c545915c682765b5adf885af9911004a7015a821eb86d7ba2b81188f3cc3031855e784d72b6964
+Size (github.com_shirou_gopsutil_v3_@v_v3.20.10.zip) = 232475 bytes
 SHA1 (github.com_shopspring_decimal_@v_v0.0.0-20180709203117-cd690d0c9e24.mod) = 0bba24dca65762910a998978796689e7accb6129
 RMD160 (github.com_shopspring_decimal_@v_v0.0.0-20180709203117-cd690d0c9e24.mod) = 60aaf7c20aab845dbb0110a8c477608bab80911d
 SHA512 (github.com_shopspring_decimal_@v_v0.0.0-20180709203117-cd690d0c9e24.mod) = 7f46d39bc8f24a5c5c1ff513c0f0018d5341a008526a49bf0b3694008c272b3080b0386a44ba6c27f2894bef19dfbec5095c9189ed222ed5a55797788668315e
@@ -2312,14 +2336,14 @@ SHA1 (github.com_stretchr_testify_@v_v1.4.0.mod) = 6ad45256150a2be47300475da7c7d
 RMD160 (github.com_stretchr_testify_@v_v1.4.0.mod) = 3b67ed0f25aafffc2a0f79a04fb3f9830efc0b9e
 SHA512 (github.com_stretchr_testify_@v_v1.4.0.mod) = 243bf1f69c146252164ad72f853773dcc77f15d7c9e9b731bee26a95e7c8f4ce9ed9738db601b01edb82f4b3808873e1f153a6d4a0c97be0babbe65abc0f8d52
 Size (github.com_stretchr_testify_@v_v1.4.0.mod) = 179 bytes
-SHA1 (github.com_stretchr_testify_@v_v1.5.1.mod) = b40f1db2a808a22cad00107924ad62d4beb85bdd
-RMD160 (github.com_stretchr_testify_@v_v1.5.1.mod) = 78e2f9d800e28723676bc4c149d9c33b7f653538
-SHA512 (github.com_stretchr_testify_@v_v1.5.1.mod) = 70adf6a86dc6f934ee611f6aefa459f1287b7294297eb9221a747427d031b10c3e606696a656be4c2746a25480c322106099ea2bb360cbe782f4d03c85cd9fcb
-Size (github.com_stretchr_testify_@v_v1.5.1.mod) = 188 bytes
-SHA1 (github.com_stretchr_testify_@v_v1.5.1.zip) = 72601e1d2682fcc1718a55f550596b71cf97b32d
-RMD160 (github.com_stretchr_testify_@v_v1.5.1.zip) = 312a3c93f63060f3ba313c9018d645a1cd8aec0d
-SHA512 (github.com_stretchr_testify_@v_v1.5.1.zip) = c539cd964718439715caee454b38fdb61eb5d4e20489e10f7f6a030b4b941b2ca52d33f950c0b04149962399f0c3cb5b6a90efa2d79acc0f57a7f49d508c67c7
-Size (github.com_stretchr_testify_@v_v1.5.1.zip) = 91883 bytes
+SHA1 (github.com_stretchr_testify_@v_v1.6.1.mod) = f735d4deb0e2054aae9480e014facfb80ebd725d
+RMD160 (github.com_stretchr_testify_@v_v1.6.1.mod) = bbf7a4b6a2fff9dc03004e2abf479dad0aa0ec2b
+SHA512 (github.com_stretchr_testify_@v_v1.6.1.mod) = 197e6ef15edb27ded67ccfb636c252fe522f0930ff012341a4b593f25b5dd8282e4f658970931cfdeb8f2c5ee0b4ebac6738fe7634bf00896d12270fcbf4b31b
+Size (github.com_stretchr_testify_@v_v1.6.1.mod) = 216 bytes
+SHA1 (github.com_stretchr_testify_@v_v1.6.1.zip) = f1ddbcd6fbffbfd6957de198964b67a9321eb31d
+RMD160 (github.com_stretchr_testify_@v_v1.6.1.zip) = bc3fbd488d06d40d693e69ec27c5ce5e509ef586
+SHA512 (github.com_stretchr_testify_@v_v1.6.1.zip) = 073f44125d4bbce27d69b914385e05028c4d275585e275ff1ee2ffe299059646394163dde2b6b5c175ac9379d388fe34c1c874deda4138121541e2a639d7635f
+Size (github.com_stretchr_testify_@v_v1.6.1.zip) = 98541 bytes
 SHA1 (github.com_tencentcloud_tencentcloud-sdk-go_@v_v3.0.83+incompatible.mod) = fa9be2cbbf50f4839dc58f790d76b2d06a91d91d
 RMD160 (github.com_tencentcloud_tencentcloud-sdk-go_@v_v3.0.83+incompatible.mod) = 80156d48e3e00f69c9b12eadf44074848d8ef159
 SHA512 (github.com_tencentcloud_tencentcloud-sdk-go_@v_v3.0.83+incompatible.mod) = dcbae023694dbb97fa3e1cd6bc20ab7eee364117c45a45912e6d782744a54e0b2292936cce6e807af0dff179a495993e19ff86360b27d3a79c90a1f81b6e22b6
@@ -2428,14 +2452,14 @@ SHA1 (go.uber.org_atomic_@v_v1.4.0.zip) = cb15cf2805d218963b91224dfdcaedc9a1a0c2
 RMD160 (go.uber.org_atomic_@v_v1.4.0.zip) = b22e7df44f3855bfe32f3901b7abda3e81c722fd
 SHA512 (go.uber.org_atomic_@v_v1.4.0.zip) = ad71851217d27e72d13db4d8aa1accc069f5ad5ef3fb9ab922c79cc0e6f0ee10025d499478d99e2f46418b36b4410c5bbdf8ea421919d6f60ec95f08c904b267
 Size (go.uber.org_atomic_@v_v1.4.0.zip) = 17248 bytes
-SHA1 (go.uber.org_goleak_@v_v1.0.0.mod) = 69f4e1efa3dd8e39c2c520ec4509753dd8caa73e
-RMD160 (go.uber.org_goleak_@v_v1.0.0.mod) = 0bd738e34f4e59b7bc14f0d24304e8f65c7f567e
-SHA512 (go.uber.org_goleak_@v_v1.0.0.mod) = 8814a6b8138027c366f3ebeea9033a71019990faf1cb613d75a25498a3a74d61fa2ba662302254150370a49a2a6f56da5c54889d4465117cf8afed4ec6cd9f63
-Size (go.uber.org_goleak_@v_v1.0.0.mod) = 312 bytes
-SHA1 (go.uber.org_goleak_@v_v1.0.0.zip) = 27b7a9126b6c8c9f9ec53567b4a29deb445ba269
-RMD160 (go.uber.org_goleak_@v_v1.0.0.zip) = b0e1461dff134ef41bdfc7405fc187dccd1c0876
-SHA512 (go.uber.org_goleak_@v_v1.0.0.zip) = d8bb8553e96f2c7e4feb404db453a35c1ad42590f36a6e294f238282c8c02bbae2e8f524767341ac20ca6d864b58c46572c3e2236c24cb8d10c710528f18161e
-Size (go.uber.org_goleak_@v_v1.0.0.zip) = 24023 bytes
+SHA1 (go.uber.org_goleak_@v_v1.1.10.mod) = 69f4e1efa3dd8e39c2c520ec4509753dd8caa73e
+RMD160 (go.uber.org_goleak_@v_v1.1.10.mod) = 0bd738e34f4e59b7bc14f0d24304e8f65c7f567e
+SHA512 (go.uber.org_goleak_@v_v1.1.10.mod) = 8814a6b8138027c366f3ebeea9033a71019990faf1cb613d75a25498a3a74d61fa2ba662302254150370a49a2a6f56da5c54889d4465117cf8afed4ec6cd9f63
+Size (go.uber.org_goleak_@v_v1.1.10.mod) = 312 bytes
+SHA1 (go.uber.org_goleak_@v_v1.1.10.zip) = 141b38c5e28350f5307cba2c95b44c4780cdb640
+RMD160 (go.uber.org_goleak_@v_v1.1.10.zip) = 2367a181156a2223c2da33de03bff49e9afc2b94
+SHA512 (go.uber.org_goleak_@v_v1.1.10.zip) = cad58d0a0f37a7ba9ce7fc5d4598d511eda4bc675689f968b1d02c4b2e95d15976b6aae9d4b8655d2aa85e255308414e474fa6d42e4f49b31092e2b943648b36
+Size (go.uber.org_goleak_@v_v1.1.10.zip) = 24823 bytes
 SHA1 (go.uber.org_multierr_@v_v1.1.0.mod) = dcbadc03014fee6c8f0f88257029257fa63b40eb
 RMD160 (go.uber.org_multierr_@v_v1.1.0.mod) = 702472cd72f330989c178ff37c40b242ad3000d7
 SHA512 (go.uber.org_multierr_@v_v1.1.0.mod) = 7939dfe977dd42ac3ca8b91824a73046222ac9bed4f9cbcf0f2d332727b92a094540a56dfb19d095df6d5917b30cec86a6e9e1b082581049fb05bb7bb10106a4
@@ -2500,14 +2524,14 @@ SHA1 (golang.org_x_crypto_@v_v0.0.0-20200622213623-75b288015ac9.mod) = 7130b95a0
 RMD160 (golang.org_x_crypto_@v_v0.0.0-20200622213623-75b288015ac9.mod) = ab71ec9e86e79de9b3838603bd85aa6ae86a19df
 SHA512 (golang.org_x_crypto_@v_v0.0.0-20200622213623-75b288015ac9.mod) = 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06
 Size (golang.org_x_crypto_@v_v0.0.0-20200622213623-75b288015ac9.mod) = 155 bytes
-SHA1 (golang.org_x_crypto_@v_v0.0.0-20200820211705-5c72a883971a.mod) = 7130b95a0c17fc1a34b248ae15d9aaa1471a06a7
-RMD160 (golang.org_x_crypto_@v_v0.0.0-20200820211705-5c72a883971a.mod) = ab71ec9e86e79de9b3838603bd85aa6ae86a19df
-SHA512 (golang.org_x_crypto_@v_v0.0.0-20200820211705-5c72a883971a.mod) = 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06
-Size (golang.org_x_crypto_@v_v0.0.0-20200820211705-5c72a883971a.mod) = 155 bytes
-SHA1 (golang.org_x_crypto_@v_v0.0.0-20200820211705-5c72a883971a.zip) = 23d4f67888793a461989ec8e7f4937b741f8dfd3
-RMD160 (golang.org_x_crypto_@v_v0.0.0-20200820211705-5c72a883971a.zip) = eba07d729eb0ec1ab6ea2ac829adf7a47ffb72d8
-SHA512 (golang.org_x_crypto_@v_v0.0.0-20200820211705-5c72a883971a.zip) = 1a94d4b9e787a0f322cf9ee223c3b01d8dbd34b59381330808d2682ae05de0cdad62c31e085c554033e852bc5fe49d789993a668a2d75bd7eb8b2389ac774e65
-Size (golang.org_x_crypto_@v_v0.0.0-20200820211705-5c72a883971a.zip) = 1876176 bytes
+SHA1 (golang.org_x_crypto_@v_v0.0.0-20200930160638-afb6bcd081ae.mod) = 7130b95a0c17fc1a34b248ae15d9aaa1471a06a7
+RMD160 (golang.org_x_crypto_@v_v0.0.0-20200930160638-afb6bcd081ae.mod) = ab71ec9e86e79de9b3838603bd85aa6ae86a19df
+SHA512 (golang.org_x_crypto_@v_v0.0.0-20200930160638-afb6bcd081ae.mod) = 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06
+Size (golang.org_x_crypto_@v_v0.0.0-20200930160638-afb6bcd081ae.mod) = 155 bytes
+SHA1 (golang.org_x_crypto_@v_v0.0.0-20200930160638-afb6bcd081ae.zip) = 5fec9829d523e3ab43af8a9a8d8441341974ff58
+RMD160 (golang.org_x_crypto_@v_v0.0.0-20200930160638-afb6bcd081ae.zip) = 806169efdf91319cf5631a65709a0ad90c3d1cd1
+SHA512 (golang.org_x_crypto_@v_v0.0.0-20200930160638-afb6bcd081ae.zip) = fd50b978909b5b2259da0cc5d4db8fe582b003f4b9c2e387a9491f2648521475c640a21a80d375ba006f0892595cd14c4e1c130a31e7da5a2cbd8b8673feec87
+Size (golang.org_x_crypto_@v_v0.0.0-20200930160638-afb6bcd081ae.zip) = 1876107 bytes
 SHA1 (golang.org_x_exp_@v_v0.0.0-20190121172915-509febef88a4.mod) = dd2bb39723c98e5c1675cb4b2d1989cca4dd7961
 RMD160 (golang.org_x_exp_@v_v0.0.0-20190121172915-509febef88a4.mod) = b9b55951e6dcc88613c5d715c40ceb8814eb0d2e
 SHA512 (golang.org_x_exp_@v_v0.0.0-20190121172915-509febef88a4.mod) = 9131017b8ab0c2362b74e0c010daeb849689025aa31cb464dc379b0e34d0fcdb66749329b111041127997440bac052249dab522ab27239858405c056e3ac5dbf
@@ -2544,6 +2568,10 @@ SHA1 (golang.org_x_lint_@v_v0.0.0-20190930215403-16217165b5de.zip) = 03cd9c38051
 RMD160 (golang.org_x_lint_@v_v0.0.0-20190930215403-16217165b5de.zip) = a68e9da901ffa731eb6dd237f745e7ea3b2ecef1
 SHA512 (golang.org_x_lint_@v_v0.0.0-20190930215403-16217165b5de.zip) = 00ae7262d6a4f5839915a648e09a51fd939300b9f0404f2c13c062412d059b8278e3c40b2db2a927bffe74a940295834c18b77fb7dc58e88401e0b7606c13aeb
 Size (golang.org_x_lint_@v_v0.0.0-20190930215403-16217165b5de.zip) = 45710 bytes
+SHA1 (golang.org_x_mod_@v_v0.1.1-0.20191105210325-c90efee705ee.mod) = a1a96e3530d7626d55139d9ce6549cbee1b803bf
+RMD160 (golang.org_x_mod_@v_v0.1.1-0.20191105210325-c90efee705ee.mod) = 879fd224c6932e0905763aacff5ec6f28f1ffad7
+SHA512 (golang.org_x_mod_@v_v0.1.1-0.20191105210325-c90efee705ee.mod) = 5e225da646ef87b8bf435b745313187cecd1bd3e88660f8a90cd2a6fdcadbe8fc51f53edae4b3aa2357ad273a8e58034920bb61a1cd5898b95d3fe39f30ec648
+Size (golang.org_x_mod_@v_v0.1.1-0.20191105210325-c90efee705ee.mod) = 159 bytes
 SHA1 (golang.org_x_mod_@v_v0.2.0.mod) = 0c6a88e6b10ddeb7ac6c867161efa5a34070aaeb
 RMD160 (golang.org_x_mod_@v_v0.2.0.mod) = fd98422c574f4766653ca3f30440f690bf43705c
 SHA512 (golang.org_x_mod_@v_v0.2.0.mod) = 16d72a943c436bf27c18ee65deb1e1a3b1283dcfcc76a49f01919df97f41ae6ef7c5fe7f95b5bb62cf6f6fee57eb9654ca27ec3bae448ebfe894f8d6d0101fa1
@@ -2636,14 +2664,14 @@ SHA1 (golang.org_x_net_@v_v0.0.0-20200602114024-627f9648deb9.mod) = b645705d750d
 RMD160 (golang.org_x_net_@v_v0.0.0-20200602114024-627f9648deb9.mod) = c8661ca68af5788631d11398f031cec2b2b53675
 SHA512 (golang.org_x_net_@v_v0.0.0-20200602114024-627f9648deb9.mod) = 0c6baecc550358cbc908d994f81f786e62f619b197d4ba0ca5af19eb2ddf243d7f36c6174634b65e205fa5ed3b9c3393d1677c0a57c2b99ddcb252b935a2dc70
 Size (golang.org_x_net_@v_v0.0.0-20200602114024-627f9648deb9.mod) = 181 bytes
-SHA1 (golang.org_x_net_@v_v0.0.0-20200904194848-62affa334b73.mod) = c880045444815efca39e35f15ebbf6cff2fe4386
-RMD160 (golang.org_x_net_@v_v0.0.0-20200904194848-62affa334b73.mod) = 340daa3e34adae68a8737e91e5d50b7a91daaf58
-SHA512 (golang.org_x_net_@v_v0.0.0-20200904194848-62affa334b73.mod) = 54d242da2536da38e292b62a955b3961f7b0a9789fe36c5f7ae93577eeac734a6e5bac21a657cf71d488395278cd7683db538e16a9c853835277a800a9d43471
-Size (golang.org_x_net_@v_v0.0.0-20200904194848-62affa334b73.mod) = 181 bytes
-SHA1 (golang.org_x_net_@v_v0.0.0-20200904194848-62affa334b73.zip) = ae725a743baad17c0451d1cfd7789ecec4ffffd3
-RMD160 (golang.org_x_net_@v_v0.0.0-20200904194848-62affa334b73.zip) = 8f2f941eae5269f8314ec9f0e0312682c0f95b5e
-SHA512 (golang.org_x_net_@v_v0.0.0-20200904194848-62affa334b73.zip) = 7b36db6f767f03d0a14ee599c6d1bcc7cf5cb8df69b9dd46d7544aac59ff6aa1bdf38af0f3f31328f02b7643f7655b375f8116f829b22993ae49951ab28cbef9
-Size (golang.org_x_net_@v_v0.0.0-20200904194848-62affa334b73.zip) = 1505530 bytes
+SHA1 (golang.org_x_net_@v_v0.0.0-20200930145003-4acb6c075d10.mod) = c880045444815efca39e35f15ebbf6cff2fe4386
+RMD160 (golang.org_x_net_@v_v0.0.0-20200930145003-4acb6c075d10.mod) = 340daa3e34adae68a8737e91e5d50b7a91daaf58
+SHA512 (golang.org_x_net_@v_v0.0.0-20200930145003-4acb6c075d10.mod) = 54d242da2536da38e292b62a955b3961f7b0a9789fe36c5f7ae93577eeac734a6e5bac21a657cf71d488395278cd7683db538e16a9c853835277a800a9d43471
+Size (golang.org_x_net_@v_v0.0.0-20200930145003-4acb6c075d10.mod) = 181 bytes
+SHA1 (golang.org_x_net_@v_v0.0.0-20200930145003-4acb6c075d10.zip) = e82decf70196fba97f089f269b1e96680919f8ed
+RMD160 (golang.org_x_net_@v_v0.0.0-20200930145003-4acb6c075d10.zip) = 45766ab28cffa85ff6510faeb90ca43025383857
+SHA512 (golang.org_x_net_@v_v0.0.0-20200930145003-4acb6c075d10.zip) = c20133e196db03e0cdd5d7f770cc011b8cf29d8ddcd39a27d44586f7fd080bb17224d1d0736792c51d9dc6f8f11b13cd8bc07cf95fbe1c8f11095653b9633585
+Size (golang.org_x_net_@v_v0.0.0-20200930145003-4acb6c075d10.zip) = 1504583 bytes
 SHA1 (golang.org_x_oauth2_@v_v0.0.0-20180821212333-d2e6202438be.mod) = 10fc9f0ae22c5df107728359fdf32cc7a7bd0bcd
 RMD160 (golang.org_x_oauth2_@v_v0.0.0-20180821212333-d2e6202438be.mod) = dcfe870343c0d46d60e3a90a61ba1b2cae02d8de
 SHA512 (golang.org_x_oauth2_@v_v0.0.0-20180821212333-d2e6202438be.mod) = 53431e560b5d6a9b50f44997ef6755f71741ccca155767dd954da41f11f53a3e8d01d7e01a2bb9de1fdd551dd2e734cb65e5641cf5de5c9a8a6a25a4894336f5
@@ -2812,14 +2840,14 @@ SHA1 (golang.org_x_sys_@v_v0.0.0-20200323222414-85ca7c5b95cd.mod) = 9c0a67f5f608
 RMD160 (golang.org_x_sys_@v_v0.0.0-20200323222414-85ca7c5b95cd.mod) = 470ffe5252fd7913930e210baaa374da49776819
 SHA512 (golang.org_x_sys_@v_v0.0.0-20200323222414-85ca7c5b95cd.mod) = 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab
 Size (golang.org_x_sys_@v_v0.0.0-20200323222414-85ca7c5b95cd.mod) = 33 bytes
-SHA1 (golang.org_x_sys_@v_v0.0.0-20201007082116-8445cc04cbdf.mod) = 9c0a67f5f608966214879bdc8263f4927cb8da2f
-RMD160 (golang.org_x_sys_@v_v0.0.0-20201007082116-8445cc04cbdf.mod) = 470ffe5252fd7913930e210baaa374da49776819
-SHA512 (golang.org_x_sys_@v_v0.0.0-20201007082116-8445cc04cbdf.mod) = 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab
-Size (golang.org_x_sys_@v_v0.0.0-20201007082116-8445cc04cbdf.mod) = 33 bytes
-SHA1 (golang.org_x_sys_@v_v0.0.0-20201007082116-8445cc04cbdf.zip) = 6fb04f706afa117a379abe0fdcbae9b9343166d9
-RMD160 (golang.org_x_sys_@v_v0.0.0-20201007082116-8445cc04cbdf.zip) = 599bd1e1398f88c6dd65d672a1c684c19a30a60d
-SHA512 (golang.org_x_sys_@v_v0.0.0-20201007082116-8445cc04cbdf.zip) = 0e1627eaa50ccfada08460b02929f5c2c91945a4082b2f2a9c70060d40dfca25d87bc2b056380960158226ea892f5f885bb012e686ff9177d57426486df34def
-Size (golang.org_x_sys_@v_v0.0.0-20201007082116-8445cc04cbdf.zip) = 1490646 bytes
+SHA1 (golang.org_x_sys_@v_v0.0.0-20201024232916-9f70ab9862d5.mod) = 9c0a67f5f608966214879bdc8263f4927cb8da2f
+RMD160 (golang.org_x_sys_@v_v0.0.0-20201024232916-9f70ab9862d5.mod) = 470ffe5252fd7913930e210baaa374da49776819
+SHA512 (golang.org_x_sys_@v_v0.0.0-20201024232916-9f70ab9862d5.mod) = 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab
+Size (golang.org_x_sys_@v_v0.0.0-20201024232916-9f70ab9862d5.mod) = 33 bytes
+SHA1 (golang.org_x_sys_@v_v0.0.0-20201024232916-9f70ab9862d5.zip) = 8a76a12aa8e695d9dfc559662786787cafbcde9e
+RMD160 (golang.org_x_sys_@v_v0.0.0-20201024232916-9f70ab9862d5.zip) = de69bc70908e389540ebc382a9eb564e98202332
+SHA512 (golang.org_x_sys_@v_v0.0.0-20201024232916-9f70ab9862d5.zip) = 167e2b6faac57e06c420b9c7bb7d16db9c30811337176488893807e5ff88aa0b24e90e1ec10ab6e282f1b4fa2e91f2e3d72d12b276da8a85bcf29b7e2df4e25d
+Size (golang.org_x_sys_@v_v0.0.0-20201024232916-9f70ab9862d5.zip) = 1496293 bytes
 SHA1 (golang.org_x_text_@v_v0.0.0-20160726164857-2910a502d2bf.mod) = f3a33d4b075f49232516e483aeb74d4015994c88
 RMD160 (golang.org_x_text_@v_v0.0.0-20160726164857-2910a502d2bf.mod) = 2954886f81bdca9d743aac213cd223e1ec7f8484
 SHA512 (golang.org_x_text_@v_v0.0.0-20160726164857-2910a502d2bf.mod) = ca081ef7cccd7bbedc6843fbe0c452352661a07e1298cd02ff338ed79d807c6401d613a3cf20011189d2f98a794ffa410547b3e352eb58a6f0a84822285d391d
@@ -2916,6 +2944,10 @@ SHA1 (golang.org_x_tools_@v_v0.0.0-20191119224855-298f0cb1881e.mod) = 8e0d9c69ab
 RMD160 (golang.org_x_tools_@v_v0.0.0-20191119224855-298f0cb1881e.mod) = 76255d81fdcfaa17a5eec174b2d5def1d7a7ad0a
 SHA512 (golang.org_x_tools_@v_v0.0.0-20191119224855-298f0cb1881e.mod) = 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109
 Size (golang.org_x_tools_@v_v0.0.0-20191119224855-298f0cb1881e.mod) = 212 bytes
+SHA1 (golang.org_x_tools_@v_v0.0.0-20191216052735-49a3e744a425.mod) = 57864d0412aa29d1eb59655016150b27cc800e00
+RMD160 (golang.org_x_tools_@v_v0.0.0-20191216052735-49a3e744a425.mod) = 71df1b37c117f722aa4f390422e7882a92aa7fd9
+SHA512 (golang.org_x_tools_@v_v0.0.0-20191216052735-49a3e744a425.mod) = 91b0380c7073eac4442bfd1924d311fc7b50b098ec4c72ea72fcc831273012326a44245add9b05a90895be46d11052ddcc942ea6bb909bda51d782f95acddff8
+Size (golang.org_x_tools_@v_v0.0.0-20191216052735-49a3e744a425.mod) = 267 bytes
 SHA1 (golang.org_x_tools_@v_v0.0.0-20200513154647-78b527d18275.mod) = f568a43fcce3ca5bb53b2223aa4a5d07ff61bf25
 RMD160 (golang.org_x_tools_@v_v0.0.0-20200513154647-78b527d18275.mod) = 21d2760ef510cad40255c43945998214ef2f6191
 SHA512 (golang.org_x_tools_@v_v0.0.0-20200513154647-78b527d18275.mod) = 8281ef87f633ddec7f1c4711773b09563e5695a44ef8140d062cdd9a14731a2edf24fde739c42e2a52038d6e100c3c5d7039db9adb62001e5e27a2e282faa057
@@ -3140,6 +3172,14 @@ SHA1 (gopkg.in_yaml.v2_@v_v2.2.8.zip) = 2050be65187f173f63dde5107366e665f543949c
 RMD160 (gopkg.in_yaml.v2_@v_v2.2.8.zip) = a2b1760145b3663b5b2e1a3570cfb941eb88624b
 SHA512 (gopkg.in_yaml.v2_@v_v2.2.8.zip) = 19f019e85b8c9a533c3cf2fd492b1813272f00cce06a56ffe43046935e49ccf6e191ce83f1d236f6355bae7126aa722016f05174687ff2faf54f121958266edf
 Size (gopkg.in_yaml.v2_@v_v2.2.8.zip) = 80666 bytes
+SHA1 (gopkg.in_yaml.v3_@v_v3.0.0-20200313102051-9f266ea9e77c.mod) = b5d3a43b3e29e39b6aed65bd041c63241962a51b
+RMD160 (gopkg.in_yaml.v3_@v_v3.0.0-20200313102051-9f266ea9e77c.mod) = 5d3630ea40f3fd760b6a6d4f33fd7ba86b0b166c
+SHA512 (gopkg.in_yaml.v3_@v_v3.0.0-20200313102051-9f266ea9e77c.mod) = 307ca9123efc577ca04828996ee9d8edbb51794ccb4b8d9f169ba689e7276aa5f6ae106a04b22b7fab853ffacfebcbf74468b64eaefd57445864c1fbc77fad9d
+Size (gopkg.in_yaml.v3_@v_v3.0.0-20200313102051-9f266ea9e77c.mod) = 95 bytes
+SHA1 (gopkg.in_yaml.v3_@v_v3.0.0-20200313102051-9f266ea9e77c.zip) = ec896ba2dc97dc3aa33066686b74259520428e00
+RMD160 (gopkg.in_yaml.v3_@v_v3.0.0-20200313102051-9f266ea9e77c.zip) = dfb31e1dead14b51dab12714382c1078aa547236
+SHA512 (gopkg.in_yaml.v3_@v_v3.0.0-20200313102051-9f266ea9e77c.zip) = bee7757d760f5ba1b9f7523af358652a5cb65f2b0064da097f78450871b2636efcbab0298a9871bbb3ce8012bf95a155949251d4f61464dde510097b936b47a8
+Size (gopkg.in_yaml.v3_@v_v3.0.0-20200313102051-9f266ea9e77c.zip) = 101467 bytes
 SHA1 (honnef.co_go_tools_@v_v0.0.0-20190102054323-c2f93a96b099.mod) = 839eb1204960233bef25be21ade8455e791dc602
 RMD160 (honnef.co_go_tools_@v_v0.0.0-20190102054323-c2f93a96b099.mod) = 47531578a08ef258ad78a0e6b558a47285cb248e
 SHA512 (honnef.co_go_tools_@v_v0.0.0-20190102054323-c2f93a96b099.mod) = d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce
diff --git a/consul/go-modules.mk b/consul/go-modules.mk
index 4659a2cb06..3ef0714c9f 100644
--- a/consul/go-modules.mk
+++ b/consul/go-modules.mk
@@ -50,8 +50,8 @@ GO_MODULE_FILES+=	github.com/!puerkito!bio/purell/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/!puerkito!bio/purell/@v/v1.0.0.zip
 GO_MODULE_FILES+=	github.com/!puerkito!bio/urlesc/@v/v0.0.0-20160726150825-5bd2802263f2.mod
 GO_MODULE_FILES+=	github.com/!puerkito!bio/urlesc/@v/v0.0.0-20160726150825-5bd2802263f2.zip
-GO_MODULE_FILES+=	github.com/!stack!exchange/wmi/@v/v0.0.0-20180116203802-5d049714c4a6.mod
-GO_MODULE_FILES+=	github.com/!stack!exchange/wmi/@v/v0.0.0-20180116203802-5d049714c4a6.zip
+GO_MODULE_FILES+=	github.com/!stack!exchange/wmi/@v/v0.0.0-20190523213315-cbe66965904d.mod
+GO_MODULE_FILES+=	github.com/!stack!exchange/wmi/@v/v0.0.0-20190523213315-cbe66965904d.zip
 GO_MODULE_FILES+=	github.com/abdullin/seq/@v/v0.0.0-20160510034733-d5467c17e7af.mod
 GO_MODULE_FILES+=	github.com/abdullin/seq/@v/v0.0.0-20160510034733-d5467c17e7af.zip
 GO_MODULE_FILES+=	github.com/alecthomas/template/@v/v0.0.0-20160405071501-a0175ee3bccc.mod
@@ -67,8 +67,8 @@ GO_MODULE_FILES+=	github.com/armon/consul-api/@v/v0.0.0-20180202201655-eb2c6b5be
 GO_MODULE_FILES+=	github.com/armon/go-metrics/@v/v0.0.0-20180917152333-f0300d1749da.mod
 GO_MODULE_FILES+=	github.com/armon/go-metrics/@v/v0.0.0-20190430140413-ec5e00d3c878.mod
 GO_MODULE_FILES+=	github.com/armon/go-metrics/@v/v0.3.0.mod
-GO_MODULE_FILES+=	github.com/armon/go-metrics/@v/v0.3.4.mod
-GO_MODULE_FILES+=	github.com/armon/go-metrics/@v/v0.3.4.zip
+GO_MODULE_FILES+=	github.com/armon/go-metrics/@v/v0.3.5-0.20201104215618-6fd5a4ddf425.mod
+GO_MODULE_FILES+=	github.com/armon/go-metrics/@v/v0.3.5-0.20201104215618-6fd5a4ddf425.zip
 GO_MODULE_FILES+=	github.com/armon/go-radix/@v/v0.0.0-20180808171621-7fddfc383310.mod
 GO_MODULE_FILES+=	github.com/armon/go-radix/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/armon/go-radix/@v/v1.0.0.zip
@@ -158,8 +158,8 @@ GO_MODULE_FILES+=	github.com/fatih/color/@v/v1.9.0.mod
 GO_MODULE_FILES+=	github.com/fatih/color/@v/v1.9.0.zip
 GO_MODULE_FILES+=	github.com/fatih/structs/@v/v1.1.0.mod
 GO_MODULE_FILES+=	github.com/fatih/structs/@v/v1.1.0.zip
-GO_MODULE_FILES+=	github.com/frankban/quicktest/@v/v1.11.1.mod
-GO_MODULE_FILES+=	github.com/frankban/quicktest/@v/v1.11.1.zip
+GO_MODULE_FILES+=	github.com/frankban/quicktest/@v/v1.11.0.mod
+GO_MODULE_FILES+=	github.com/frankban/quicktest/@v/v1.11.0.zip
 GO_MODULE_FILES+=	github.com/fsnotify/fsnotify/@v/v1.4.7.mod
 GO_MODULE_FILES+=	github.com/fsnotify/fsnotify/@v/v1.4.7.zip
 GO_MODULE_FILES+=	github.com/ghodss/yaml/@v/v0.0.0-20150909031657-73d445a93680.mod
@@ -179,8 +179,8 @@ GO_MODULE_FILES+=	github.com/go-logfmt/logfmt/@v/v0.4.0.mod
 GO_MODULE_FILES+=	github.com/go-logfmt/logfmt/@v/v0.4.0.zip
 GO_MODULE_FILES+=	github.com/go-logr/logr/@v/v0.1.0.mod
 GO_MODULE_FILES+=	github.com/go-logr/logr/@v/v0.1.0.zip
-GO_MODULE_FILES+=	github.com/go-ole/go-ole/@v/v1.2.1.mod
-GO_MODULE_FILES+=	github.com/go-ole/go-ole/@v/v1.2.1.zip
+GO_MODULE_FILES+=	github.com/go-ole/go-ole/@v/v1.2.4.mod
+GO_MODULE_FILES+=	github.com/go-ole/go-ole/@v/v1.2.4.zip
 GO_MODULE_FILES+=	github.com/go-openapi/jsonpointer/@v/v0.0.0-20160704185906-46af16f9f7b1.mod
 GO_MODULE_FILES+=	github.com/go-openapi/jsonpointer/@v/v0.0.0-20160704185906-46af16f9f7b1.zip
 GO_MODULE_FILES+=	github.com/go-openapi/jsonreference/@v/v0.0.0-20160704190145-13c6e3589ad9.mod
@@ -210,7 +210,8 @@ GO_MODULE_FILES+=	github.com/golang/protobuf/@v/v0.0.0-20161109072736-4bd1920723
 GO_MODULE_FILES+=	github.com/golang/protobuf/@v/v1.2.0.mod
 GO_MODULE_FILES+=	github.com/golang/protobuf/@v/v1.3.1.mod
 GO_MODULE_FILES+=	github.com/golang/protobuf/@v/v1.3.2.mod
-GO_MODULE_FILES+=	github.com/golang/protobuf/@v/v1.3.2.zip
+GO_MODULE_FILES+=	github.com/golang/protobuf/@v/v1.3.5.mod
+GO_MODULE_FILES+=	github.com/golang/protobuf/@v/v1.3.5.zip
 GO_MODULE_FILES+=	github.com/golang/snappy/@v/v0.0.1.mod
 GO_MODULE_FILES+=	github.com/golang/snappy/@v/v0.0.1.zip
 GO_MODULE_FILES+=	github.com/google/btree/@v/v0.0.0-20180813153112-4030bb1f1f0c.mod
@@ -227,7 +228,8 @@ GO_MODULE_FILES+=	github.com/google/go-querystring/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/google/go-querystring/@v/v1.0.0.zip
 GO_MODULE_FILES+=	github.com/google/gofuzz/@v/v0.0.0-20161122191042-44d81051d367.mod
 GO_MODULE_FILES+=	github.com/google/gofuzz/@v/v1.0.0.mod
-GO_MODULE_FILES+=	github.com/google/gofuzz/@v/v1.0.0.zip
+GO_MODULE_FILES+=	github.com/google/gofuzz/@v/v1.2.0.mod
+GO_MODULE_FILES+=	github.com/google/gofuzz/@v/v1.2.0.zip
 GO_MODULE_FILES+=	github.com/google/martian/@v/v2.1.0+incompatible.mod
 GO_MODULE_FILES+=	github.com/google/martian/@v/v2.1.0+incompatible.zip
 GO_MODULE_FILES+=	github.com/google/pprof/@v/v0.0.0-20181206194817-3ea8567a2e57.mod
@@ -258,28 +260,28 @@ GO_MODULE_FILES+=	github.com/hashicorp/errwrap/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/hashicorp/errwrap/@v/v1.0.0.zip
 GO_MODULE_FILES+=	github.com/hashicorp/go-bexpr/@v/v0.1.2.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-bexpr/@v/v0.1.2.zip
-GO_MODULE_FILES+=	github.com/hashicorp/go-checkpoint/@v/v0.0.0-20171009173528-1545e56e46de.mod
-GO_MODULE_FILES+=	github.com/hashicorp/go-checkpoint/@v/v0.0.0-20171009173528-1545e56e46de.zip
+GO_MODULE_FILES+=	github.com/hashicorp/go-checkpoint/@v/v0.5.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/go-checkpoint/@v/v0.5.0.zip
 GO_MODULE_FILES+=	github.com/hashicorp/go-cleanhttp/@v/v0.5.0.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-cleanhttp/@v/v0.5.1.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-cleanhttp/@v/v0.5.1.zip
-GO_MODULE_FILES+=	github.com/hashicorp/go-connlimit/@v/v0.2.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/go-connlimit/@v/v0.2.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/go-connlimit/@v/v0.3.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/go-connlimit/@v/v0.3.0.zip
 GO_MODULE_FILES+=	github.com/hashicorp/go-discover/@v/v0.0.0-20200501174627-ad1e96bde088.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-discover/@v/v0.0.0-20200501174627-ad1e96bde088.zip
 GO_MODULE_FILES+=	github.com/hashicorp/go-hclog/@v/v0.0.0-20180709165350-ff2cf002a8dd.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-hclog/@v/v0.12.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/go-hclog/@v/v0.12.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/go-hclog/@v/v0.14.1.mod
+GO_MODULE_FILES+=	github.com/hashicorp/go-hclog/@v/v0.14.1.zip
 GO_MODULE_FILES+=	github.com/hashicorp/go-hclog/@v/v0.9.1.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-hclog/@v/v0.9.2.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-immutable-radix/@v/v1.0.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/go-immutable-radix/@v/v1.1.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/go-immutable-radix/@v/v1.2.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/go-immutable-radix/@v/v1.2.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/go-immutable-radix/@v/v1.3.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/go-immutable-radix/@v/v1.3.0.zip
 GO_MODULE_FILES+=	github.com/hashicorp/go-kms-wrapping/entropy/@v/v0.1.0.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-kms-wrapping/entropy/@v/v0.1.0.zip
-GO_MODULE_FILES+=	github.com/hashicorp/go-memdb/@v/v1.0.3.mod
-GO_MODULE_FILES+=	github.com/hashicorp/go-memdb/@v/v1.0.3.zip
+GO_MODULE_FILES+=	github.com/hashicorp/go-memdb/@v/v1.3.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/go-memdb/@v/v1.3.0.zip
 GO_MODULE_FILES+=	github.com/hashicorp/go-msgpack/@v/v0.5.3.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-msgpack/@v/v0.5.5.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-msgpack/@v/v0.5.5.zip
@@ -306,32 +308,34 @@ GO_MODULE_FILES+=	github.com/hashicorp/go-uuid/@v/v1.0.1.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-uuid/@v/v1.0.2.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-uuid/@v/v1.0.2.zip
 GO_MODULE_FILES+=	github.com/hashicorp/go-version/@v/v1.1.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/go-version/@v/v1.2.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/go-version/@v/v1.2.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/go-version/@v/v1.2.1.mod
+GO_MODULE_FILES+=	github.com/hashicorp/go-version/@v/v1.2.1.zip
 GO_MODULE_FILES+=	github.com/hashicorp/golang-lru/@v/v0.5.0.mod
 GO_MODULE_FILES+=	github.com/hashicorp/golang-lru/@v/v0.5.1.mod
 GO_MODULE_FILES+=	github.com/hashicorp/golang-lru/@v/v0.5.4.mod
 GO_MODULE_FILES+=	github.com/hashicorp/golang-lru/@v/v0.5.4.zip
 GO_MODULE_FILES+=	github.com/hashicorp/hcl/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/hashicorp/hcl/@v/v1.0.0.zip
-GO_MODULE_FILES+=	github.com/hashicorp/hil/@v/v0.0.0-20160711231837-1e86c6b523c5.mod
-GO_MODULE_FILES+=	github.com/hashicorp/hil/@v/v0.0.0-20160711231837-1e86c6b523c5.zip
+GO_MODULE_FILES+=	github.com/hashicorp/hil/@v/v0.0.0-20200423225030-a18a1cd20038.mod
+GO_MODULE_FILES+=	github.com/hashicorp/hil/@v/v0.0.0-20200423225030-a18a1cd20038.zip
 GO_MODULE_FILES+=	github.com/hashicorp/logutils/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/hashicorp/logutils/@v/v1.0.0.zip
 GO_MODULE_FILES+=	github.com/hashicorp/mdns/@v/v1.0.1.mod
-GO_MODULE_FILES+=	github.com/hashicorp/mdns/@v/v1.0.1.zip
+GO_MODULE_FILES+=	github.com/hashicorp/mdns/@v/v1.0.3.mod
+GO_MODULE_FILES+=	github.com/hashicorp/mdns/@v/v1.0.3.zip
 GO_MODULE_FILES+=	github.com/hashicorp/memberlist/@v/v0.2.2.mod
 GO_MODULE_FILES+=	github.com/hashicorp/memberlist/@v/v0.2.2.zip
 GO_MODULE_FILES+=	github.com/hashicorp/net-rpc-msgpackrpc/@v/v0.0.0-20151116020338-a14192a58a69.mod
 GO_MODULE_FILES+=	github.com/hashicorp/net-rpc-msgpackrpc/@v/v0.0.0-20151116020338-a14192a58a69.zip
+GO_MODULE_FILES+=	github.com/hashicorp/raft-autopilot/@v/v0.1.1.mod
+GO_MODULE_FILES+=	github.com/hashicorp/raft-autopilot/@v/v0.1.1.zip
 GO_MODULE_FILES+=	github.com/hashicorp/raft-boltdb/@v/v0.0.0-20171010151810-6e5ba93211ea.mod
 GO_MODULE_FILES+=	github.com/hashicorp/raft-boltdb/@v/v0.0.0-20171010151810-6e5ba93211ea.zip
 GO_MODULE_FILES+=	github.com/hashicorp/raft/@v/v1.1.1.mod
-GO_MODULE_FILES+=	github.com/hashicorp/raft/@v/v1.1.2.mod
-GO_MODULE_FILES+=	github.com/hashicorp/raft/@v/v1.1.2.zip
-GO_MODULE_FILES+=	github.com/hashicorp/serf/@v/v0.9.3.mod
-GO_MODULE_FILES+=	github.com/hashicorp/serf/@v/v0.9.4.mod
-GO_MODULE_FILES+=	github.com/hashicorp/serf/@v/v0.9.4.zip
+GO_MODULE_FILES+=	github.com/hashicorp/raft/@v/v1.2.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/raft/@v/v1.2.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/serf/@v/v0.9.5.mod
+GO_MODULE_FILES+=	github.com/hashicorp/serf/@v/v0.9.5.zip
 GO_MODULE_FILES+=	github.com/hashicorp/vault/api/@v/v1.0.5-0.20200717191844-f687267c8086.mod
 GO_MODULE_FILES+=	github.com/hashicorp/vault/api/@v/v1.0.5-0.20200717191844-f687267c8086.zip
 GO_MODULE_FILES+=	github.com/hashicorp/vault/sdk/@v/v0.1.14-0.20200519221838-e0cfd64bc267.mod
@@ -339,8 +343,8 @@ GO_MODULE_FILES+=	github.com/hashicorp/vault/sdk/@v/v0.1.14-0.20200519221838-e0c
 GO_MODULE_FILES+=	github.com/hashicorp/vic/@v/v1.5.1-0.20190403131502-bbfe86ec9443.mod
 GO_MODULE_FILES+=	github.com/hashicorp/vic/@v/v1.5.1-0.20190403131502-bbfe86ec9443.zip
 GO_MODULE_FILES+=	github.com/hashicorp/yamux/@v/v0.0.0-20180604194846-3520598351bb.mod
-GO_MODULE_FILES+=	github.com/hashicorp/yamux/@v/v0.0.0-20181012175058-2f1d1f20f75d.mod
-GO_MODULE_FILES+=	github.com/hashicorp/yamux/@v/v0.0.0-20181012175058-2f1d1f20f75d.zip
+GO_MODULE_FILES+=	github.com/hashicorp/yamux/@v/v0.0.0-20200609203250-aecfd211c9ce.mod
+GO_MODULE_FILES+=	github.com/hashicorp/yamux/@v/v0.0.0-20200609203250-aecfd211c9ce.zip
 GO_MODULE_FILES+=	github.com/hpcloud/tail/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/hpcloud/tail/@v/v1.0.0.zip
 GO_MODULE_FILES+=	github.com/imdario/mergo/@v/v0.3.5.mod
@@ -412,7 +416,9 @@ GO_MODULE_FILES+=	github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.mod
 GO_MODULE_FILES+=	github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.zip
 GO_MODULE_FILES+=	github.com/miekg/dns/@v/v1.0.14.mod
 GO_MODULE_FILES+=	github.com/miekg/dns/@v/v1.1.26.mod
-GO_MODULE_FILES+=	github.com/miekg/dns/@v/v1.1.26.zip
+GO_MODULE_FILES+=	github.com/miekg/dns/@v/v1.1.27.mod
+GO_MODULE_FILES+=	github.com/miekg/dns/@v/v1.1.31.mod
+GO_MODULE_FILES+=	github.com/miekg/dns/@v/v1.1.31.zip
 GO_MODULE_FILES+=	github.com/mitchellh/cli/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/mitchellh/cli/@v/v1.1.0.mod
 GO_MODULE_FILES+=	github.com/mitchellh/cli/@v/v1.1.0.zip
@@ -539,8 +545,8 @@ GO_MODULE_FILES+=	github.com/sean-/pager/@v/v0.0.0-20180208200047-666be9bf53b5.m
 GO_MODULE_FILES+=	github.com/sean-/pager/@v/v0.0.0-20180208200047-666be9bf53b5.zip
 GO_MODULE_FILES+=	github.com/sean-/seed/@v/v0.0.0-20170313163322-e2103e2c3529.mod
 GO_MODULE_FILES+=	github.com/sean-/seed/@v/v0.0.0-20170313163322-e2103e2c3529.zip
-GO_MODULE_FILES+=	github.com/shirou/gopsutil/@v/v2.20.9+incompatible.mod
-GO_MODULE_FILES+=	github.com/shirou/gopsutil/@v/v2.20.9+incompatible.zip
+GO_MODULE_FILES+=	github.com/shirou/gopsutil/v3/@v/v3.20.10.mod
+GO_MODULE_FILES+=	github.com/shirou/gopsutil/v3/@v/v3.20.10.zip
 GO_MODULE_FILES+=	github.com/shopspring/decimal/@v/v0.0.0-20180709203117-cd690d0c9e24.mod
 GO_MODULE_FILES+=	github.com/shopspring/decimal/@v/v0.0.0-20180709203117-cd690d0c9e24.zip
 GO_MODULE_FILES+=	github.com/sirupsen/logrus/@v/v1.0.6.mod
@@ -577,8 +583,8 @@ GO_MODULE_FILES+=	github.com/stretchr/testify/@v/v0.0.0-20151208002404-e3a8ff8ce
 GO_MODULE_FILES+=	github.com/stretchr/testify/@v/v1.2.2.mod
 GO_MODULE_FILES+=	github.com/stretchr/testify/@v/v1.3.0.mod
 GO_MODULE_FILES+=	github.com/stretchr/testify/@v/v1.4.0.mod
-GO_MODULE_FILES+=	github.com/stretchr/testify/@v/v1.5.1.mod
-GO_MODULE_FILES+=	github.com/stretchr/testify/@v/v1.5.1.zip
+GO_MODULE_FILES+=	github.com/stretchr/testify/@v/v1.6.1.mod
+GO_MODULE_FILES+=	github.com/stretchr/testify/@v/v1.6.1.zip
 GO_MODULE_FILES+=	github.com/tencentcloud/tencentcloud-sdk-go/@v/v3.0.83+incompatible.mod
 GO_MODULE_FILES+=	github.com/tencentcloud/tencentcloud-sdk-go/@v/v3.0.83+incompatible.zip
 GO_MODULE_FILES+=	github.com/tent/http-link-go/@v/v0.0.0-20130702225549-ac974c61c2f9.mod
@@ -606,8 +612,8 @@ GO_MODULE_FILES+=	go.opencensus.io/@v/v0.22.0.mod
 GO_MODULE_FILES+=	go.opencensus.io/@v/v0.22.0.zip
 GO_MODULE_FILES+=	go.uber.org/atomic/@v/v1.4.0.mod
 GO_MODULE_FILES+=	go.uber.org/atomic/@v/v1.4.0.zip
-GO_MODULE_FILES+=	go.uber.org/goleak/@v/v1.0.0.mod
-GO_MODULE_FILES+=	go.uber.org/goleak/@v/v1.0.0.zip
+GO_MODULE_FILES+=	go.uber.org/goleak/@v/v1.1.10.mod
+GO_MODULE_FILES+=	go.uber.org/goleak/@v/v1.1.10.zip
 GO_MODULE_FILES+=	go.uber.org/multierr/@v/v1.1.0.mod
 GO_MODULE_FILES+=	go.uber.org/multierr/@v/v1.1.0.zip
 GO_MODULE_FILES+=	go.uber.org/zap/@v/v1.10.0.mod
@@ -624,8 +630,8 @@ GO_MODULE_FILES+=	golang.org/x/crypto/@v/v0.0.0-20191011191535-87dc89f01550.mod
 GO_MODULE_FILES+=	golang.org/x/crypto/@v/v0.0.0-20191206172530-e9b2fee46413.mod
 GO_MODULE_FILES+=	golang.org/x/crypto/@v/v0.0.0-20200220183623-bac4c82f6975.mod
 GO_MODULE_FILES+=	golang.org/x/crypto/@v/v0.0.0-20200622213623-75b288015ac9.mod
-GO_MODULE_FILES+=	golang.org/x/crypto/@v/v0.0.0-20200820211705-5c72a883971a.mod
-GO_MODULE_FILES+=	golang.org/x/crypto/@v/v0.0.0-20200820211705-5c72a883971a.zip
+GO_MODULE_FILES+=	golang.org/x/crypto/@v/v0.0.0-20200930160638-afb6bcd081ae.mod
+GO_MODULE_FILES+=	golang.org/x/crypto/@v/v0.0.0-20200930160638-afb6bcd081ae.zip
 GO_MODULE_FILES+=	golang.org/x/exp/@v/v0.0.0-20190121172915-509febef88a4.mod
 GO_MODULE_FILES+=	golang.org/x/exp/@v/v0.0.0-20190121172915-509febef88a4.zip
 GO_MODULE_FILES+=	golang.org/x/lint/@v/v0.0.0-20181026193005-c67002cb31c3.mod
@@ -635,6 +641,7 @@ GO_MODULE_FILES+=	golang.org/x/lint/@v/v0.0.0-20190313153728-d0100b6bd8b3.mod
 GO_MODULE_FILES+=	golang.org/x/lint/@v/v0.0.0-20190409202823-959b441ac422.mod
 GO_MODULE_FILES+=	golang.org/x/lint/@v/v0.0.0-20190930215403-16217165b5de.mod
 GO_MODULE_FILES+=	golang.org/x/lint/@v/v0.0.0-20190930215403-16217165b5de.zip
+GO_MODULE_FILES+=	golang.org/x/mod/@v/v0.1.1-0.20191105210325-c90efee705ee.mod
 GO_MODULE_FILES+=	golang.org/x/mod/@v/v0.2.0.mod
 GO_MODULE_FILES+=	golang.org/x/mod/@v/v0.2.0.zip
 GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20170114055629-f2499483f923.mod
@@ -658,8 +665,8 @@ GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.mod
 GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20191004110552-13f9640d40b9.mod
 GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20200226121028-0de0cce0169b.mod
 GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20200602114024-627f9648deb9.mod
-GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20200904194848-62affa334b73.mod
-GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20200904194848-62affa334b73.zip
+GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20200930145003-4acb6c075d10.mod
+GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20200930145003-4acb6c075d10.zip
 GO_MODULE_FILES+=	golang.org/x/oauth2/@v/v0.0.0-20180821212333-d2e6202438be.mod
 GO_MODULE_FILES+=	golang.org/x/oauth2/@v/v0.0.0-20190226205417-e64efc72b421.mod
 GO_MODULE_FILES+=	golang.org/x/oauth2/@v/v0.0.0-20190604053449-0f29369cfe45.mod
@@ -702,8 +709,8 @@ GO_MODULE_FILES+=	golang.org/x/sys/@v/v0.0.0-20200122134326-e047566fdf82.mod
 GO_MODULE_FILES+=	golang.org/x/sys/@v/v0.0.0-20200124204421-9fbb57f87de9.mod
 GO_MODULE_FILES+=	golang.org/x/sys/@v/v0.0.0-20200223170610-d5e6a3e2c0ae.mod
 GO_MODULE_FILES+=	golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.mod
-GO_MODULE_FILES+=	golang.org/x/sys/@v/v0.0.0-20201007082116-8445cc04cbdf.mod
-GO_MODULE_FILES+=	golang.org/x/sys/@v/v0.0.0-20201007082116-8445cc04cbdf.zip
+GO_MODULE_FILES+=	golang.org/x/sys/@v/v0.0.0-20201024232916-9f70ab9862d5.mod
+GO_MODULE_FILES+=	golang.org/x/sys/@v/v0.0.0-20201024232916-9f70ab9862d5.zip
 GO_MODULE_FILES+=	golang.org/x/text/@v/v0.0.0-20160726164857-2910a502d2bf.mod
 GO_MODULE_FILES+=	golang.org/x/text/@v/v0.3.0.mod
 GO_MODULE_FILES+=	golang.org/x/text/@v/v0.3.1-0.20180807135948-17ff2d5776d2.mod
@@ -728,6 +735,7 @@ GO_MODULE_FILES+=	golang.org/x/tools/@v/v0.0.0-20190524140312-2c0ae7006135.mod
 GO_MODULE_FILES+=	golang.org/x/tools/@v/v0.0.0-20190907020128-2ca718005c18.mod
 GO_MODULE_FILES+=	golang.org/x/tools/@v/v0.0.0-20191108193012-7d206e10da11.mod
 GO_MODULE_FILES+=	golang.org/x/tools/@v/v0.0.0-20191119224855-298f0cb1881e.mod
+GO_MODULE_FILES+=	golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.mod
 GO_MODULE_FILES+=	golang.org/x/tools/@v/v0.0.0-20200513154647-78b527d18275.mod
 GO_MODULE_FILES+=	golang.org/x/tools/@v/v0.0.0-20200513154647-78b527d18275.zip
 GO_MODULE_FILES+=	golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.mod
@@ -784,6 +792,8 @@ GO_MODULE_FILES+=	gopkg.in/yaml.v2/@v/v2.2.4.mod
 GO_MODULE_FILES+=	gopkg.in/yaml.v2/@v/v2.2.5.mod
 GO_MODULE_FILES+=	gopkg.in/yaml.v2/@v/v2.2.8.mod
 GO_MODULE_FILES+=	gopkg.in/yaml.v2/@v/v2.2.8.zip
+GO_MODULE_FILES+=	gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.mod
+GO_MODULE_FILES+=	gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.zip
 GO_MODULE_FILES+=	honnef.co/go/tools/@v/v0.0.0-20190102054323-c2f93a96b099.mod
 GO_MODULE_FILES+=	honnef.co/go/tools/@v/v0.0.0-20190106161140-3f1c8253044a.mod
 GO_MODULE_FILES+=	honnef.co/go/tools/@v/v0.0.0-20190418001031-e561f6794a2a.mod


Home | Main Index | Thread Index | Old Index