pkgsrc-WIP-changes archive

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

vault: Update to 1.10.0



Module Name:	pkgsrc-wip
Committed By:	Iku Iwasa <iku.iwasa%gmail.com@localhost>
Pushed By:	iquiw
Date:		Sat Apr 2 10:05:22 2022 +0900
Changeset:	f562b35b552e83af03620fd3e158fa8be3108fb3

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

Log Message:
vault: Update to 1.10.0

CHANGES:

* core: Changes the unit of default_lease_ttl and max_lease_ttl values
returned by the /sys/config/state/sanitized endpoint from nanoseconds to
seconds. [GH-14206]
* core: Bump Go version to 1.17.7. [GH-14232]
* plugin/database: The return value from POST /database/config/:name has
been updated to "204 No Content" [GH-14033]
* secrets/azure: Changes the configuration parameter
use_microsoft_graph_api to use the Microsoft Graph API by
default. [GH-14130]
* storage/etcd: Remove support for v2. [GH-14193]
* ui: Upgrade Ember to version 3.24 [GH-13443]

FEATURES:

* Database plugin multiplexing: manage multiple database connections with a
single plugin process [GH-14033]
* Login MFA: Single and two phase MFA is now available when authenticating
to Vault. [GH-14025]
* Mount Migration: Vault supports moving secrets and auth mounts both
within and across namespaces.
* Postgres in the UI: Postgres DB is now supported by the UI [GH-12945]
* Report in-flight requests: Adding a trace capability to show in-flight
requests, and a new gauge metric to show the total number of in-flight
requests [GH-13024]
* Server Side Consistent Tokens: Service tokens have been updated to be
longer (a minimum of 95 bytes) and token prefixes for all token types are
updated from s., b., and r. to hvs., hvb., and hvr. for service, batch, and
recovery tokens respectively. Vault clusters with integrated storage will
now have read-after-write consistency by default. [GH-14109]
* Transit SHA-3 Support: Add support for SHA-3 in the Transit
backend. [GH-13367]
* Transit Time-Based Key Autorotation: Add support for automatic,
time-based key rotation to transit secrets engine, including in the
UI. [GH-13691]
* UI Client Count Improvements: Restructures client count dashboard, making
use of billing start date to improve accuracy. Adds mount-level
distribution and filtering. [GH-client-counts]
* Agent Telemetry: The Vault Agent can now collect and return telemetry
information at the /agent/v1/metrics endpoint.

IMPROVEMENTS:

* agent: Adds ability to configure specific user-assigned managed
identities for Azure auto-auth. [GH-14214]
* agent: The agent/v1/quit endpoint can now be used to stop the Vault Agent
remotely [GH-14223]
* api: Allow cloning api.Client tokens via api.Config.CloneToken or
api.Client.SetCloneToken(). [GH-13515]
* api: Define constants for X-Vault-Forward and X-Vault-Inconsistent
headers [GH-14067]
* api: Implements Login method in Go client libraries for GCP and Azure
auth methods [GH-13022]
* api: Implements Login method in Go client libraries for LDAP auth methods
[GH-13841]
* api: Trim newline character from wrapping token in logical.Unwrap from
the api package [GH-13044]
* api: add api method for modifying raft autopilot configuration [GH-12428]
* api: respect WithWrappingToken() option during AppRole login
authentication when used with secret ID specified from environment or from
string [GH-13241]
* audit: The audit logs now contain the port used by the client [GH-12790]
* auth/aws: Enable region detection in the CLI by specifying the region as
auto [GH-14051]
* auth/cert: Add certificate extensions as metadata [GH-13348]
* auth/jwt: The Authorization Code flow makes use of the Proof Key for Code
Exchange (PKCE) extension. [GH-13365]
* auth/kubernetes: Added support for dynamically reloading short-lived
tokens for better Kubernetes 1.21+ compatibility [GH-13595]
* auth/ldap: Add a response warning and server log whenever the config is
accessed if userfilter doesn't consider userattr [GH-14095]
* auth/ldap: Add username to alias metadata [GH-13669]
* auth/ldap: Add username_as_alias configurable to change how aliases are
named [GH-14324]
* auth/okta: Update okta-sdk-golang dependency to version v2.9.1 for
improved request backoff handling [GH-13439]
* auth/token: The auth/token/revoke-accessor endpoint is now idempotent and
will not error out if the token has already been revoked. [GH-13661]
* auth: reading sys/auth/:path now returns the configuration for the auth
engine mounted at the given path [GH-12793]
* cli: interactive CLI for login mfa [GH-14131]
* command (enterprise): "vault license get" now uses non-deprecated
endpoint /sys/license/status
* core/ha: Add new mechanism for keeping track of peers talking to active
node, and new 'operator members' command to view them. [GH-13292]
* core/identity: Support updating an alias' custom_metadata to be
empty. [GH-13395]
* core/pki: Support Y10K value in notAfter field to be compliant with IEEE
802.1AR-2018 standard [GH-12795]
* core/pki: Support Y10K value in notAfter field when signing non-CA
certificates [GH-13736]
* core: Add duration and start_time to completed requests log entries
[GH-13682]
* core: Add support to list password policies at sys/policies/password
[GH-12787]
* core: Add support to list version history via API at sys/version-history
and via CLI with vault version-history [GH-13766]
* core: Fixes code scanning alerts [GH-13667]
* core: Periodically test the health of connectivity to auto-seal backends
[GH-13078]
* core: Reading sys/mounts/:path now returns the configuration for the
secret engine at the given path [GH-12792]
* core: Replace "master key" terminology with "root key" [GH-13324]
* core: Small changes to ensure goroutines terminate in tests [GH-14197]
* core: Systemd unit file included with the Linux packages now sets the
service type to notify. [GH-14385]
* core: Update github.com/prometheus/client_golang to fix security
vulnerability CVE-2022-21698. [GH-14190]
* core: Vault now supports the PROXY protocol v2. Support for UNKNOWN
connections has also been added to the PROXY protocol v1. [GH-13540]
* http (enterprise): Serve /sys/license/status endpoint within namespaces
* identity/oidc: Adds a default OIDC provider [GH-14119]
* identity/oidc: Adds a default key for OIDC clients [GH-14119]
* identity/oidc: Adds an allow_all assignment that permits all entities to
authenticate via an OIDC client [GH-14119]
* identity/oidc: Adds proof key for code exchange (PKCE) support to OIDC
providers. [GH-13917]
* sdk: Add helper for decoding root tokens [GH-10505]
* secrets/azure: Adds support for rotate-root. #70 [GH-13034]
* secrets/consul: Add support for consul enterprise namespaces and admin
partitions. [GH-13850]
* secrets/consul: Add support for consul roles. [GH-14014]
* secrets/database/influxdb: Switch/upgrade to the influxdb1-client module
[GH-12262]
* secrets/database: Add database configuration parameter 'disable_escaping'
for username and password when connecting to a database. [GH-13414]
* secrets/kv: add full secret path output to table-formatted responses
[GH-14301]
* secrets/kv: add patch support for KVv2 key metadata [GH-13215]
* secrets/kv: add subkeys endpoint to retrieve a secret's stucture without
its values [GH-13893]
* secrets/pki: Add ability to fetch individual certificate as DER or PEM
[GH-10948]
* secrets/pki: Add count and duration metrics to PKI issue and revoke
calls. [GH-13889]
* secrets/pki: Add error handling for error types other than UserError or
InternalError [GH-14195]
* secrets/pki: Allow URI SAN templates in allowed_uri_sans when
allowed_uri_sans_template is set to true. [GH-10249]
* secrets/pki: Allow other_sans in sign-intermediate and sign-verbatim
[GH-13958]
* secrets/pki: Calculate the Subject Key Identifier as suggested in RFC
5280, Section 4.2.1.2. [GH-11218]
* secrets/pki: Restrict issuance of wildcard certificates via role
parameter (allow_wildcard_certificates) [GH-14238]
* secrets/pki: Return complete chain (in ca_chain field) on calls to
pki/cert/ca_chain [GH-13935]
* secrets/pki: Use application/pem-certificate-chain for PEM certificates,
application/x-pem-file for PEM CRLs [GH-13927]
* secrets/pki: select appropriate signature algorithm for ECDSA signature
on certificates. [GH-11216]
* secrets/ssh: Add support for generating non-RSA SSH CAs [GH-14008]
* secrets/ssh: Allow specifying multiple approved key lengths for a single
algorithm [GH-13991]
* secrets/ssh: Use secure default for algorithm signer (rsa-sha2-256) with
RSA SSH CA keys on new roles [GH-14006]
* secrets/transit: Don't abort transit encrypt or decrypt batches on single
item failure. [GH-13111]
* storage/aerospike: Upgrade aerospike-client-go to v5.6.0. [GH-12165]
* storage/raft: Set InitialMmapSize to 100GB on 64bit architectures
[GH-13178]
* storage/raft: When using retry_join stanzas, join against all of them in
parallel. [GH-13606]
* sys/raw: Enhance sys/raw to read and write values that cannot be encoded
in json. [GH-13537]
* ui: Add support for ECDSA and Ed25519 certificate views [GH-13894]
* ui: Add version diff view for KV V2 [GH-13000]
* ui: Added client side paging for namespace list view [GH-13195]
* ui: Adds flight icons to UI [GH-12976]
* ui: Adds multi-factor authentication support [GH-14049]
* ui: Allow static role credential rotation in Database secrets engines
[GH-14268]
* ui: Display badge for all versions in secrets engine header [GH-13015]
* ui: Swap browser localStorage in favor of sessionStorage [GH-14054]
* ui: The integrated web terminal now accepts both -f and --force as
aliases for -force for the write command. [GH-13683]
* ui: Transform advanced templating with encode/decode format support
[GH-13908]
* ui: Updates ember blueprints to glimmer components [GH-13149]
* ui: customizes empty state messages for transit and transform [GH-13090]

BUG FIXES:

* Fixed bug where auth method only considers system-identity when multiple
identities are available. #50 [GH-14138]
* activity log (enterprise): allow partial monthly client count to be
accessed from namespaces [GH-13086]
* agent: Fixes bug where vault agent is unaware of the namespace in the
config when wrapping token
* api/client: Fixes an issue where the replicateStateStore was being set to
nil upon consecutive calls to client.SetReadYourWrites(true). [GH-13486]
* auth/approle: Fix regression where unset cidrlist is returned as nil
instead of zero-length array. [GH-13235]
* auth/approle: Fix wrapping of nil errors in login endpoint [GH-14107]
* auth/github: Use the Organization ID instead of the Organization name to
verify the org membership. [GH-13332]
* auth/kubernetes: Properly handle the migration of role storage entries
containing an empty alias_name_source [GH-13925]
* auth/kubernetes: ensure valid entity alias names created for projected
volume tokens [GH-14144]
* auth/oidc: Fixes OIDC auth from the Vault UI when using the implicit flow
and form_post response mode. [GH-13492]
* cli: Fix using kv patch with older server versions that don't support
HTTP PATCH. [GH-13615]
* core (enterprise): Fix a data race in logshipper.
* core (enterprise): Workaround AWS CloudHSM v5 SDK issue not allowing
read-only sessions
* core/api: Fix overwriting of request headers when using
JSONMergePatch. [GH-14222]
* core/identity: Address a data race condition between local updates to
aliases and invalidations [GH-13093]
* core/identity: Address a data race condition between local updates to
aliases and invalidations [GH-13476]
* core/token: Fix null token panic from 'v1/auth/token/' endpoints and
return proper error response. [GH-13233]
* core/token: Fix null token_type panic resulting from
'v1/auth/token/roles/{role_name}' endpoint [GH-13236]
* core: Fix warnings logged on perf standbys re stored versions [GH-13042]
* core: -output-curl-string now properly sets cURL options for client and
CA certificates. [GH-13660]
* core: add support for go-sockaddr templates in the top-level cluster_addr
field [GH-13678]
* core: authentication to "login" endpoint for non-existent mount path
returns permission denied with status code 403 [GH-13162]
* core: revert some unintentionally downgraded dependencies from 1.9.0-rc1
[GH-13168]
* ha (enterprise): Prevents performance standby nodes from serving and
caching stale data immediately after performance standby election completes
* http (enterprise): Always forward internal/counters endpoints from perf
standbys to active node
* http:Fix /sys/monitor endpoint returning streaming not supported
[GH-13200]
* identity/oidc: Adds support for port-agnostic validation of loopback IP
redirect URIs. [GH-13871]
* identity/oidc: Check for a nil signing key on rotation to prevent
panics. [GH-13716]
* identity/oidc: Fixes inherited group membership when evaluating client
assignments [GH-14013]
* identity/oidc: Fixes potential write to readonly storage on performance
secondary clusters during key rotation [GH-14426]
* identity/oidc: Make the nonce parameter optional for the Authorization
Endpoint of OIDC providers. [GH-13231]
* identity/token: Fixes a bug where duplicate public keys could appear in
the .well-known JWKS [GH-14543]
* identity: Fix possible nil pointer dereference. [GH-13318]
* identity: Fix regression preventing startup when aliases were created
pre-1.9. [GH-13169]
* identity: Fixes a panic in the OIDC key rotation due to a missing nil
check. [GH-13298]
* kmip (enterprise): Fix locate by name operations fail to find key after a
rekey operation.
* licensing (enterprise): Revert accidental inclusion of the TDE feature
from the prem build.
* metrics/autosnapshots (enterprise) : Fix bug that could cause
vault.autosnapshots.save.errors to not be incremented when there is an
autosnapshot save error.
* physical/mysql: Create table with wider vault_key column when
initializing database tables. [GH-14231]
* plugin/couchbase: Fix an issue in which the locking patterns did not
allow parallel requests. [GH-13033]
* replication (enterprise): When using encrypted secondary tokens, only
clear the private key after a successful connection to the primary cluster
* sdk/framework: Generate proper OpenAPI specs for path patterns that use
an alternation as the root. [GH-13487]
* sdk/helper/ldaputil: properly escape a trailing escape character to
prevent panics. [GH-13452]
* sdk/queue: move lock before length check to prevent panics. [GH-13146]
* sdk: Fixes OpenAPI to distinguish between paths that can do only List, or
both List and Read. [GH-13643]
* secrets/azure: Fixed bug where Azure environment did not change Graph URL
[GH-13973]
* secrets/azure: Fixes service principal generation when assigning roles
that have DataActions. [GH-13277]
* secrets/azure: Fixes the rotate root operation for upgraded
configurations with a root_password_ttl of zero. [GH-14130]
* secrets/database/cassandra: change connect_timeout to 5s as documentation
says [GH-12443]
* secrets/database/mssql: Accept a boolean for contained_db, rather than
just a string. [GH-13469]
* secrets/gcp: Fixed bug where error was not reported for invalid bindings
[GH-13974]
* secrets/gcp: Fixes role bindings for BigQuery dataset
resources. [GH-13548]
* secrets/openldap: Fix panic from nil logger in backend [GH-14171]
* secrets/pki: Default value for key_bits changed to 0, enabling
key_type=ec key generation with default value [GH-13080]
* secrets/pki: Fix issuance of wildcard certificates matching glob patterns
[GH-14235]
* secrets/pki: Fix regression causing performance secondaries to forward
certificate generation to the primary. [GH-13759]
* secrets/pki: Fix regression causing performance secondaries to forward
certificate generation to the primary. [GH-2456]
* secrets/pki: Fixes around NIST P-curve signature hash length, default
value for signature_bits changed to 0. [GH-12872]
* secrets/pki: Recognize ed25519 when requesting a response in PKCS8 format
[GH-13257]
* secrets/pki: Skip signature bits validation for ed25519 curve key type
[GH-13254]
* secrets/transit: Ensure that Vault does not panic for invalid nonce size
when we aren't in convergent encryption mode. [GH-13690]
* secrets/transit: Return an error if any required parameter is
missing. [GH-14074]
* storage/raft: Fix a panic when trying to store a key > 32KB in a
transaction. [GH-13286]
* storage/raft: Fix a panic when trying to write a key > 32KB [GH-13282]
* storage/raft: Fix issues allowing invalid nodes to become leadership
candidates. [GH-13703]
* storage/raft: Fix regression in 1.9.0-rc1 that changed how time is
represented in Raft logs; this prevented using a raft db created
pre-1.9. [GH-13165]
* storage/raft: On linux, use map_populate for bolt files to improve
startup time. [GH-13573]
* storage/raft: Units for bolt metrics now given in milliseconds instead of
nanoseconds [GH-13749]
* ui: Adds pagination to auth methods list view [GH-13054]
* ui: Do not show verify connection value on database connection config
page [GH-13152]
* ui: Fix client count current month data not showing unless monthly
history data exists [GH-13396]
* ui: Fix default TTL display and set on database role [GH-14224]
* ui: Fix incorrect validity message on transit secrets engine [GH-14233]
* ui: Fix issue where UI incorrectly handled API errors when mounting
backends [GH-14551]
* ui: Fix kv engine access bug [GH-13872]
* ui: Fixes breadcrumb bug for secrets navigation [GH-13604]
* ui: Fixes caching issue on kv new version create [GH-14489]
* ui: Fixes displaying empty masked values in PKI engine [GH-14400]
* ui: Fixes horizontal bar chart hover issue when filtering namespaces and
mounts [GH-14493]
* ui: Fixes issue logging out with wrapped token query parameter [GH-14329]
* ui: Fixes issue removing raft storage peer via cli not reflected in UI
until refresh [GH-13098]
* ui: Fixes issue restoring raft storage snapshot [GH-13107]
* ui: Fixes issue saving KMIP role correctly [GH-13585]
* ui: Fixes issue with OIDC auth workflow when using MetaMask Chrome
extension [GH-13133]
* ui: Fixes issue with SearchSelect component not holding focus [GH-13590]
* ui: Fixes issue with automate secret deletion value not displaying
initially if set in secret metadata edit view [GH-13177]
* ui: Fixes issue with correct auth method not selected when logging out
from OIDC or JWT methods [GH-14545]
* ui: Fixes issue with placeholder not displaying for automatically deleted
secrets when deletion time has passed [GH-13166]
* ui: Fixes issue with the number of PGP Key inputs not matching the key
shares number in the initialization form on change [GH-13038]
* ui: Fixes long secret key names overlapping masked values [GH-13032]
* ui: Fixes node-forge error when parsing EC (elliptical curve) certs
[GH-13238]
* ui: Redirects to managed namespace if incorrect namespace in URL param
[GH-14422]
* ui: Removes ability to tune token_type for token auth methods [GH-12904]
* ui: trigger token renewal if inactive and half of TTL has passed
[GH-13950]

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

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

diffstat:
 vault/Makefile      |   2 +-
 vault/distinfo      | 423 +++++++++++++++++++++++++++++-----------------------
 vault/go-modules.mk | 139 +++++++++--------
 3 files changed, 312 insertions(+), 252 deletions(-)

diffs:
diff --git a/vault/Makefile b/vault/Makefile
index fced1382cd..4d6e2625a9 100644
--- a/vault/Makefile
+++ b/vault/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-DISTNAME=	vault-1.9.4
+DISTNAME=	vault-1.10.0
 CATEGORIES=	security
 MASTER_SITES=	${MASTER_SITE_GITHUB:=hashicorp/}
 
diff --git a/vault/distinfo b/vault/distinfo
index 92cb92be48..1bb91ecd68 100644
--- a/vault/distinfo
+++ b/vault/distinfo
@@ -636,6 +636,12 @@ Size (github.com_aliyun_aliyun-oss-go-sdk_@v_v0.0.0-20190307165228-86c17b95fcd5.
 BLAKE2s (github.com_aliyun_aliyun-oss-go-sdk_@v_v0.0.0-20190307165228-86c17b95fcd5.zip) = 365aa2c96098425e8636446c2e2cbe2514548481a3511cced9ad77c79fabee77
 SHA512 (github.com_aliyun_aliyun-oss-go-sdk_@v_v0.0.0-20190307165228-86c17b95fcd5.zip) = c5761a3cb53558aba63c1de4f547d02ddbc6adac4fb8eb815f6dd2ce98be4c6aabab32571f9a5c2d99b81a9ca55689709f51b622ea79bbbda3aef98c74286225
 Size (github.com_aliyun_aliyun-oss-go-sdk_@v_v0.0.0-20190307165228-86c17b95fcd5.zip) = 640072 bytes
+BLAKE2s (github.com_andybalholm_brotli_@v_v1.0.1.mod) = 33269af4464b57e75553119e5d4ce04dd6e5da5b6651b129a6d9fbad25762c37
+SHA512 (github.com_andybalholm_brotli_@v_v1.0.1.mod) = 70f4f6b916304bf45871e66368964b47188420d713d8dc3abbe1134bf96606ba430c3120339cae8663e6b53ca54450118ae549ba94a37299b4e434bab528146e
+Size (github.com_andybalholm_brotli_@v_v1.0.1.mod) = 46 bytes
+BLAKE2s (github.com_andybalholm_brotli_@v_v1.0.1.zip) = e5960a0256337cedf09011b4f12fe6a0b01196bc391b60b7d4bfacae857f390d
+SHA512 (github.com_andybalholm_brotli_@v_v1.0.1.zip) = 40f1c3cb4e3730d37cf45e95ec6db0e07cd2a5405170b636d534b9ab271f174843a0bb5f699a479afc1972cac65ff413e5c318952d953762ee65cd0d01c62168
+Size (github.com_andybalholm_brotli_@v_v1.0.1.zip) = 645322 bytes
 BLAKE2s (github.com_antihax_optional_@v_v1.0.0.mod) = 73971af5be7a5a31b13f38caea62a05b98018b322facab4166ef47b3365966c9
 SHA512 (github.com_antihax_optional_@v_v1.0.0.mod) = e594fe55205c9dd96af55f58d011e5ef916c66eb057f7c0cb73fda0388133b6b476bce423969f85c1b95eb87ed9ed48bce7570fdbd131e0ad5e7ac6010514c58
 Size (github.com_antihax_optional_@v_v1.0.0.mod) = 44 bytes
@@ -693,12 +699,6 @@ Size (github.com_armon_go-metrics_@v_v0.3.4.mod) = 607 bytes
 BLAKE2s (github.com_armon_go-metrics_@v_v0.3.9.mod) = 867df2b1c7dc5b1bda67312dfbc3894c245df947ec54ef617344b5e83300b56d
 SHA512 (github.com_armon_go-metrics_@v_v0.3.9.mod) = 7a835e1c62454a3577e71bb91a1a2ba8e135b94140e1394505678a5d628bf452de2fe8c7a9ad30c17ee462fd0d2f04967d0cc7b96010cfcd3d0fcf7dcaf4748f
 Size (github.com_armon_go-metrics_@v_v0.3.9.mod) = 607 bytes
-BLAKE2s (github.com_armon_go-proxyproto_@v_v0.0.0-20210323213023-7e956b284f0a.mod) = 8dad13ba0af3d125940338d04c050f8a741c99a6535dfb3eae7782e759f687b4
-SHA512 (github.com_armon_go-proxyproto_@v_v0.0.0-20210323213023-7e956b284f0a.mod) = 58469177e0a1b95f54b4649621c01e45cd0899a8b5fbc640c671c1360dfa9470617c4bed0111eccbf58ecea9850d90a7a9fd09e2213533e12ac4959ab60b38ed
-Size (github.com_armon_go-proxyproto_@v_v0.0.0-20210323213023-7e956b284f0a.mod) = 38 bytes
-BLAKE2s (github.com_armon_go-proxyproto_@v_v0.0.0-20210323213023-7e956b284f0a.zip) = ab6f782dcfd957fd083d2c4ca895487391ac16ae1c0b8e66b21c77f96cb80921
-SHA512 (github.com_armon_go-proxyproto_@v_v0.0.0-20210323213023-7e956b284f0a.zip) = 45e2687073bf05f547dcd762b599ec77fc0aa85f5be1fbf4653dde81532bec00036489a9e51c5335440e3d1cc88185bdfa686a7eba0a824e5691d200ab07292d
-Size (github.com_armon_go-proxyproto_@v_v0.0.0-20210323213023-7e956b284f0a.zip) = 6449 bytes
 BLAKE2s (github.com_armon_go-radix_@v_v0.0.0-20180808171621-7fddfc383310.mod) = b6be1972ea7f268ee8bfcdc983c9a7093ac28d04dd10207e775f95b8146262c7
 SHA512 (github.com_armon_go-radix_@v_v0.0.0-20180808171621-7fddfc383310.mod) = 98f0f51365ecedecd1abe944a765160f99ccde69abe92a44d4f0e30f72a664b828cddb085886d8460ea7faabd0cbe7abdbde905ac758be0a3752c9a8f3600b6f
 Size (github.com_armon_go-radix_@v_v0.0.0-20180808171621-7fddfc383310.mod) = 33 bytes
@@ -1737,12 +1737,12 @@ Size (github.com_docopt_docopt-go_@v_v0.0.0-20180111231733-ee0de3bc6815.mod) = 3
 BLAKE2s (github.com_docopt_docopt-go_@v_v0.0.0-20180111231733-ee0de3bc6815.zip) = 0c5435f0880841eeef46188e958916b0cb1a9f024a55d6e57d286da14e4af1e6
 SHA512 (github.com_docopt_docopt-go_@v_v0.0.0-20180111231733-ee0de3bc6815.zip) = 15d0c4f21eb5fbc1546b79e7c52c553859835fdd2850b82fe03edf5419779c33449074d9ac353e99340096b138c72ef98ca057eb51e0d7777d2d926a847836f2
 Size (github.com_docopt_docopt-go_@v_v0.0.0-20180111231733-ee0de3bc6815.zip) = 45402 bytes
-BLAKE2s (github.com_dsnet_compress_@v_v0.0.1.mod) = b0dddbf08d16652fa9af1383b6a91b2cfd9b09827ba0d2e4780da92fad73027c
-SHA512 (github.com_dsnet_compress_@v_v0.0.1.mod) = 132067629eb47d7ba22dcedd81467693f7abda7b050244bac8b8ddc9f8dec5d1ff4fd64a6ed0ed1537f400c516594df0f3a2aa392258dfc817176e4030f81cac
-Size (github.com_dsnet_compress_@v_v0.0.1.mod) = 230 bytes
-BLAKE2s (github.com_dsnet_compress_@v_v0.0.1.zip) = 46223089a8dd0a9d5339dfd93650d7d6c386a6d82164e9a448a5f3a26214958b
-SHA512 (github.com_dsnet_compress_@v_v0.0.1.zip) = 5c16e51cd71051795ca20e338b3eb4fe17e423fa26c4e188d966761ee7d23cf5b21d37a6cca7faf8f31c3110289d2da4e18e6777b8b26cc69563b244d94fc17d
-Size (github.com_dsnet_compress_@v_v0.0.1.zip) = 10103918 bytes
+BLAKE2s (github.com_dsnet_compress_@v_v0.0.2-0.20210315054119-f66993602bf5.mod) = 5a396ab491258d7daa5935fa0f1cbf0f59c0df021b24dec25d662337aed18434
+SHA512 (github.com_dsnet_compress_@v_v0.0.2-0.20210315054119-f66993602bf5.mod) = 9f1cd22cb51c54ecf324012221f3204c931559856137f374f2e5658e3426c69c6a3a38e30dc06e50b415ab6d6e1eeeb0597493838119ef8e6d6cdf855efacb41
+Size (github.com_dsnet_compress_@v_v0.0.2-0.20210315054119-f66993602bf5.mod) = 275 bytes
+BLAKE2s (github.com_dsnet_compress_@v_v0.0.2-0.20210315054119-f66993602bf5.zip) = 90cac986dbed1168448e1092ae29171e4776bc7c165e0918811629ca8816c631
+SHA512 (github.com_dsnet_compress_@v_v0.0.2-0.20210315054119-f66993602bf5.zip) = e7055dac506651eec9c31267414625a797d8235f31370ac7a568af6ab34be84452721ece606d6cc1fc4db6ed278ae644e627c9963b55f3645acea2e9133ae4d7
+Size (github.com_dsnet_compress_@v_v0.0.2-0.20210315054119-f66993602bf5.zip) = 10116546 bytes
 BLAKE2s (github.com_dsnet_golib_@v_v0.0.0-20171103203638-1ea166775780.mod) = 9d9a9091b28c939ca50dbaa2cc1cc1808c1848ec4bbce32cd0de804bff787c07
 SHA512 (github.com_dsnet_golib_@v_v0.0.0-20171103203638-1ea166775780.mod) = 36ff5f52bec7fbf395cce04f20bc61cbe4e5f77ed550a5a869967d1e145e2dcd8e7bca23c3cf81882d8f7053e566dd95e78e97cdcf06c1556b78a5b9b51662d1
 Size (github.com_dsnet_golib_@v_v0.0.0-20171103203638-1ea166775780.mod) = 30 bytes
@@ -2799,12 +2799,12 @@ Size (github.com_hashicorp_consul-template_@v_v0.27.2-0.20211014231529-4ff55381f
 BLAKE2s (github.com_hashicorp_consul-template_@v_v0.27.2-0.20211014231529-4ff55381f1c4.zip) = 469c50a6a0b0796bee6679752ea49bb667ce945863a3bdfb20ad89bbf736bcec
 SHA512 (github.com_hashicorp_consul-template_@v_v0.27.2-0.20211014231529-4ff55381f1c4.zip) = 9775a63c6034100adbf77aaa50a8c52828fbdc9bb1021174d6a34913efd548c17680e54565547f3bc3367207e33cc567455af91725b855ce3a32a632a6ff911b
 Size (github.com_hashicorp_consul-template_@v_v0.27.2-0.20211014231529-4ff55381f1c4.zip) = 307303 bytes
-BLAKE2s (github.com_hashicorp_consul_api_@v_v1.11.0.mod) = dca5635d490ee218d7709e53076c89516e5a4ab112034b5b7f0aac2f5e808fb3
-SHA512 (github.com_hashicorp_consul_api_@v_v1.11.0.mod) = 9648377e7283fa2b01451de9fecf34c9dced0d735f63fb84c45d2fbeb2984bb4435452772c661b2ff73abb69b108b0d46dbdca660dd4d09b7958567fa2560b85
-Size (github.com_hashicorp_consul_api_@v_v1.11.0.mod) = 424 bytes
-BLAKE2s (github.com_hashicorp_consul_api_@v_v1.11.0.zip) = 477fc3cbd42ac44c9d7e43789899a9c9e133886f09194f4fcf27b0086f3b8505
-SHA512 (github.com_hashicorp_consul_api_@v_v1.11.0.zip) = cc49d6b8b58c200f111639e8c91ef622ff682c35c87320088dbae20816827b1adcc45b61246d4f319adb15ba6586ec7970ddf080c08b9cd763a09e5ecf88a2c0
-Size (github.com_hashicorp_consul_api_@v_v1.11.0.zip) = 169120 bytes
+BLAKE2s (github.com_hashicorp_consul_api_@v_v1.12.0.mod) = 542f31de976c6d003b192fe1aa606ddc7cab971fb3963c1cee86fac387ed39d4
+SHA512 (github.com_hashicorp_consul_api_@v_v1.12.0.mod) = 67b85c4d1991e810d88ea11913cc3091ba377c0a2b6783dbc65788f75bcbecb5c75f54dd74c502c3eede28fa60d1d8d574b5d2ef624e572f2e5d689886f41bf1
+Size (github.com_hashicorp_consul_api_@v_v1.12.0.mod) = 424 bytes
+BLAKE2s (github.com_hashicorp_consul_api_@v_v1.12.0.zip) = fc08ba2fdcc40d710fd03f9be06c134477fed21cbd04b8304953e86461e01910
+SHA512 (github.com_hashicorp_consul_api_@v_v1.12.0.zip) = d0eded946e4c868631ed97df688ace93df22f20fbcc90576c3337d7043b88dcd0d0da33e839c75056758615456fa6b9c8285dc399ba87d5a9caf390c6c7189e7
+Size (github.com_hashicorp_consul_api_@v_v1.12.0.zip) = 174937 bytes
 BLAKE2s (github.com_hashicorp_consul_api_@v_v1.4.0.mod) = 5eff918cc48a49aeb44c7412ca720a27f1cfceca0bb70b154dee5f6baae5eacd
 SHA512 (github.com_hashicorp_consul_api_@v_v1.4.0.mod) = a0d2ae55eca543e43aa4ff03c5a1b27f0fdd405c019a67f9d50a3218888c4c9ee44ab212babeff6f950c86e0c9c2ff98c3f68d973e515f977dca46920a5a9fc5
 Size (github.com_hashicorp_consul_api_@v_v1.4.0.mod) = 424 bytes
@@ -2916,12 +2916,12 @@ Size (github.com_hashicorp_go-immutable-radix_@v_v1.3.1.mod) = 137 bytes
 BLAKE2s (github.com_hashicorp_go-immutable-radix_@v_v1.3.1.zip) = ba64b17453fe6808068b7291b90b4c358c552ab4cb6d3f3148f8b10cb2a229cb
 SHA512 (github.com_hashicorp_go-immutable-radix_@v_v1.3.1.zip) = f54d20c71716d7869d9eab113b2c1fb9704f90764648ce0c066dd744113b7597c5d7b32ca4599c4f5bafb75e99f3a65c0f78aaf69aafe4345e2be5c9042f577c
 Size (github.com_hashicorp_go-immutable-radix_@v_v1.3.1.zip) = 34460 bytes
-BLAKE2s (github.com_hashicorp_go-kms-wrapping_@v_v0.6.8.mod) = 76c1fccafe900f110c3e4fc39782f27fccc3397e399ad01b9c4bc24d398c4568
-SHA512 (github.com_hashicorp_go-kms-wrapping_@v_v0.6.8.mod) = 6dd45a45795641025cd93d5d7c9f1504747151d9217a7744672a9d5c1afccb6bf4b5db7823147cc4a3cd68cdd54da43025ce4c10a07610923b81ea4f297e7bad
-Size (github.com_hashicorp_go-kms-wrapping_@v_v0.6.8.mod) = 1350 bytes
-BLAKE2s (github.com_hashicorp_go-kms-wrapping_@v_v0.6.8.zip) = 29aca8165ba8e64ec6d93f0eb703492fa41d75318be89a220ac103a189aa29be
-SHA512 (github.com_hashicorp_go-kms-wrapping_@v_v0.6.8.zip) = 120d8303986cf712f5a7344783b9142235b1c96af91c10b422f12262d9e2df9804b1747bce14ea25ef328fd0a73c8383d122865f3665d0dd00d78fac7cd1a10f
-Size (github.com_hashicorp_go-kms-wrapping_@v_v0.6.8.zip) = 96536 bytes
+BLAKE2s (github.com_hashicorp_go-kms-wrapping_@v_v0.7.0.mod) = 76c1fccafe900f110c3e4fc39782f27fccc3397e399ad01b9c4bc24d398c4568
+SHA512 (github.com_hashicorp_go-kms-wrapping_@v_v0.7.0.mod) = 6dd45a45795641025cd93d5d7c9f1504747151d9217a7744672a9d5c1afccb6bf4b5db7823147cc4a3cd68cdd54da43025ce4c10a07610923b81ea4f297e7bad
+Size (github.com_hashicorp_go-kms-wrapping_@v_v0.7.0.mod) = 1350 bytes
+BLAKE2s (github.com_hashicorp_go-kms-wrapping_@v_v0.7.0.zip) = 9d9fff35d1f6530178ec2a206be2f4747bb54e930ff0aaa0894e27927f11837a
+SHA512 (github.com_hashicorp_go-kms-wrapping_@v_v0.7.0.zip) = 2168a3e2f70a2f3c3884aa26c0e6e3a36ac9d92ca3cceacb5601e4d5eb4df71889c4d9a1cade6cca76be3d0c33f25ac33daa0a1bd7cf067c107887258ce97b0d
+Size (github.com_hashicorp_go-kms-wrapping_@v_v0.7.0.zip) = 97590 bytes
 BLAKE2s (github.com_hashicorp_go-kms-wrapping_entropy_@v_v0.1.0.mod) = 12b9095b54d36676760a96f38af87a0769840498fe636a0bc00cc1defa2a6d4a
 SHA512 (github.com_hashicorp_go-kms-wrapping_entropy_@v_v0.1.0.mod) = 9d86ce1de4bd2d4b32f76f69d0ce1f01c7db8b1a2555ae8b789c24fa5391e9e477bdd1d82719003f37205b102a845bce0b65611fd10cf52df4d49b6471f7e39e
 Size (github.com_hashicorp_go-kms-wrapping_entropy_@v_v0.1.0.mod) = 61 bytes
@@ -3174,18 +3174,24 @@ Size (github.com_hashicorp_mdns_@v_v1.0.0.mod) = 376 bytes
 BLAKE2s (github.com_hashicorp_mdns_@v_v1.0.1.mod) = 5f1eec40c0a7bee0332702479dac510f0ebf983a20c2cb071244fda8b041dc62
 SHA512 (github.com_hashicorp_mdns_@v_v1.0.1.mod) = ed46a1036f3f7a7c2c5d55440ac93f468b5b4282fb5bee31a0c1a746b00426922544acd55ca6ca539d9d6927a23888e81aa360d2140036e84dc895b5a97c9b43
 Size (github.com_hashicorp_mdns_@v_v1.0.1.mod) = 328 bytes
-BLAKE2s (github.com_hashicorp_mdns_@v_v1.0.1.zip) = fcbad18ad82e2f1882ca5ca37e2c1972876b8451957328bede9fafcf996dc8de
-SHA512 (github.com_hashicorp_mdns_@v_v1.0.1.zip) = 96125081b3fe8233d3c2885c52cbd46c7091f4dbe7ff3e542f934c21c75f498b6bbb89200f9ed27dcc572b16dcb31bd400bb4d74b4e75e171c565ce7c1ecb3cd
-Size (github.com_hashicorp_mdns_@v_v1.0.1.zip) = 14557 bytes
+BLAKE2s (github.com_hashicorp_mdns_@v_v1.0.4.mod) = 30b22be1b9524aa47beb9d3d3f0ec1eff5eae09cfb54fcbab9ce8df227ab5408
+SHA512 (github.com_hashicorp_mdns_@v_v1.0.4.mod) = 501d255124e6f43485d797cabcd3943993165d31e7fa2058667bac5c2a3c6492d9bc5881573b68d6da0dad4329eeea02141430a6c24e81045c7636bedc1d161f
+Size (github.com_hashicorp_mdns_@v_v1.0.4.mod) = 138 bytes
+BLAKE2s (github.com_hashicorp_mdns_@v_v1.0.4.zip) = 57441b187dfa846660d38807dc08e03037a892fc2d50d9a44c50e39050dcd0e2
+SHA512 (github.com_hashicorp_mdns_@v_v1.0.4.zip) = 6cf9bc0a7851e19ef082b25c377e9b20791bb6a7f2091bc49eff12fd2fff5a698a1cdcda8a9f5b02bf536a372f00119bf6aa3c42f07370927a41b6fc4a42c401
+Size (github.com_hashicorp_mdns_@v_v1.0.4.zip) = 14742 bytes
 BLAKE2s (github.com_hashicorp_memberlist_@v_v0.1.3.mod) = 21c4c590f5371217eeef3e780606b2b729e18d188a0d14daf648a2d74cfe94d7
 SHA512 (github.com_hashicorp_memberlist_@v_v0.1.3.mod) = 8128789efce7912b540284205af308c33ab47af7dcbcb165c1d0a86e342b17bbc8dc5c8cd6d5c5e751c412b6b4b8e80bb6d2f3b4fadd813dc147301ec27c45b6
 Size (github.com_hashicorp_memberlist_@v_v0.1.3.mod) = 921 bytes
 BLAKE2s (github.com_hashicorp_memberlist_@v_v0.2.2.mod) = 97c164c13c3d8d9d5518535426dc4737e3071db4912e3113e4ff399b3e014d3d
 SHA512 (github.com_hashicorp_memberlist_@v_v0.2.2.mod) = 8b5cf65d942a763e666773ce3d9f1bfc88ed6ca051ccaa036d0236f52d383cea94bfe280ed62cf0e2dbc2af586dbd5008e1a62b958d434045933513fade28e88
 Size (github.com_hashicorp_memberlist_@v_v0.2.2.mod) = 666 bytes
-BLAKE2s (github.com_hashicorp_memberlist_@v_v0.2.2.zip) = f29bbdca5ec635db6f469d21fa33146a1fe7bbc8e91cd0677e5149cffd2dc53a
-SHA512 (github.com_hashicorp_memberlist_@v_v0.2.2.zip) = 13275b8246248b1c3001acba9ea6178a10263fb8ff3cc205d2cccb86682eccad96695bac455a32f2407f7fbd9a4bc3b68cacab722bcc242c606248753efba3d1
-Size (github.com_hashicorp_memberlist_@v_v0.2.2.zip) = 114585 bytes
+BLAKE2s (github.com_hashicorp_memberlist_@v_v0.3.0.mod) = 97c164c13c3d8d9d5518535426dc4737e3071db4912e3113e4ff399b3e014d3d
+SHA512 (github.com_hashicorp_memberlist_@v_v0.3.0.mod) = 8b5cf65d942a763e666773ce3d9f1bfc88ed6ca051ccaa036d0236f52d383cea94bfe280ed62cf0e2dbc2af586dbd5008e1a62b958d434045933513fade28e88
+Size (github.com_hashicorp_memberlist_@v_v0.3.0.mod) = 666 bytes
+BLAKE2s (github.com_hashicorp_memberlist_@v_v0.3.0.zip) = e82d03b9ebf5789ba465ed0e2b83e25ad64d4c1e2a53e06b1c76b6a95c001eca
+SHA512 (github.com_hashicorp_memberlist_@v_v0.3.0.zip) = 870e80c65a4d2bf38711ee2cfdb54d74bfa5f8bc45c0d6bd1af3a0c3551621bff2407dd4b95ad82a93edeb17c42e3500ecfca1caea8933336695f6ab6a78c14c
+Size (github.com_hashicorp_memberlist_@v_v0.3.0.zip) = 121030 bytes
 BLAKE2s (github.com_hashicorp_nomad_api_@v_v0.0.0-20211006193434-215bf04bc650.mod) = 4d54abca2ca09d72a2ad0fc2fe671d11d851ebe3fa37acc983f0c4e93ea97924
 SHA512 (github.com_hashicorp_nomad_api_@v_v0.0.0-20211006193434-215bf04bc650.mod) = aee8112d69dbc92796206396bae51a6c77eed777d8ddac3a30f332b79ff8e6f38533b9f7eb4f8aeeb06d46c27a2ddae31f28e71537936a9e6474a15a0d6e6cbc
 Size (github.com_hashicorp_nomad_api_@v_v0.0.0-20211006193434-215bf04bc650.mod) = 561 bytes
@@ -3240,150 +3246,150 @@ Size (github.com_hashicorp_serf_@v_v0.8.2.mod) = 774 bytes
 BLAKE2s (github.com_hashicorp_serf_@v_v0.9.4.mod) = 011015c6b05c02cf365fc79f0b707372be62c2259c2e68d35a8e200fb5a31488
 SHA512 (github.com_hashicorp_serf_@v_v0.9.4.mod) = 175744788ef938ee696ef7f706261fe1200ab134e27f7957641f74dd9606424f68c479c0ed9a9f3c1e9fb1bcd23dbf7edde7d02c4a45160cb8dc2c251734905e
 Size (github.com_hashicorp_serf_@v_v0.9.4.mod) = 831 bytes
-BLAKE2s (github.com_hashicorp_serf_@v_v0.9.5.mod) = 011015c6b05c02cf365fc79f0b707372be62c2259c2e68d35a8e200fb5a31488
-SHA512 (github.com_hashicorp_serf_@v_v0.9.5.mod) = 175744788ef938ee696ef7f706261fe1200ab134e27f7957641f74dd9606424f68c479c0ed9a9f3c1e9fb1bcd23dbf7edde7d02c4a45160cb8dc2c251734905e
-Size (github.com_hashicorp_serf_@v_v0.9.5.mod) = 831 bytes
-BLAKE2s (github.com_hashicorp_serf_@v_v0.9.5.zip) = 6d5e14b3ce51207c20315d8c98d633d309f782e004b4d31a538f6a915743c0c2
-SHA512 (github.com_hashicorp_serf_@v_v0.9.5.zip) = 0daaf5d99ee54e7ff0ea882e77a38ab344cb427a8833a5c7fa30936d401d4c9edd6ea603b48821c072b6dabb2d9f31d74ea38180e23cc0949756b8e828ea0070
-Size (github.com_hashicorp_serf_@v_v0.9.5.zip) = 553094 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.10.0.mod) = 842de03ae40c5697fdc3aa46138142cdd35f88784e102a85b2943df6d426b2ff
-SHA512 (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.10.0.mod) = 671ae8caf380537fd4be9acd21b810e9644d0e90b6d8afa3cb1ddba086ffd4a3e007e73ff3eb3b1e52139060236c97fd46b14be739a3d346d444106470d76245
-Size (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.10.0.mod) = 665 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.10.0.zip) = 9720f292cb4bde09cc4ff75677484104f785723bffaed71f365b4e12402e4706
-SHA512 (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.10.0.zip) = 9ee6d17616c3122c2b445d347827f581935ba0270cba8b52df6be59d4afba0ecba8a03c447efa672b4fafa596d8520b8ab1ccfee4882386822f9b0405c5a1644
-Size (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.10.0.zip) = 47516 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.9.4.mod) = 29a59bb7f7add438a0572f471cd343ea21de74ca5c9ef139d226f84ff6de0f1a
-SHA512 (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.9.4.mod) = ff6e7761aa92d560c659106dfacdea6ef1b1563658e28bbb03fb5d82caa94a29670984cb04be8cea1d1613ad0edea2969889ea1cf14563b649425d1114887d65
-Size (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.9.4.mod) = 3554 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.9.4.zip) = cc7d97c8002db3fd9c3e6b01e89c292b664d693cabd259d8d21d35e52d863002
-SHA512 (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.9.4.zip) = 9240ba0802c20d2c8c02f461dcfad64f607da45eb7c57c5aa23912bc3b9cb5dc9dcb8ac50949c7df88c68f28cc1b896c55b0ed789adbe25e0ce03f36870e2cfc
-Size (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.9.4.zip) = 58638 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.10.0.mod) = 6e372acfbb35d252f649ca3d8a18d737e7d82c50e3206556681d056aa1a7b6a9
-SHA512 (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.10.0.mod) = 3fc2a442f21e3de8b1bcffdc8bd187754869a60d3c733410f0e9610816a998674ba40b1210c49bf8db73bb5d3ccae3e0c3bb4013ee2db092d8ed1f0f42336156
-Size (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.10.0.mod) = 438 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.10.0.zip) = 512994fca5d7b36c2fbbc58d8fe913592d0fa22824e9aa0a165e62ef9d1ac41a
-SHA512 (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.10.0.zip) = b0f8383d35c34c30da7ab2a09453c7ba7df6fb43bf4563eee70d0eb1a5c830c988c773943788885047def6ed18898f6b23d962ab09a44238f274c9c7f09d517d
-Size (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.10.0.zip) = 37938 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.10.0.mod) = d9f1aa9cde471fa03b8e9875dc1813cee9ee944fce0d7a5a8d939d3f4b435e09
-SHA512 (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.10.0.mod) = 73ff418efd568ba2e7b0cd2dec896ad1a1f251fce6b5b4b71430bf25a52b62ab74d9c60b7037576cd00ad3153e00a464ff22a164081b980f9a9da2cdcbad40f7
-Size (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.10.0.mod) = 647 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.10.0.zip) = 50c1a7fddd9de9764bebf6b6d9bfa9a9177fb86c42fab36ec489a6765f199e9e
-SHA512 (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.10.0.zip) = 52178d54bf424bb45cc8482d87be9eb7fc7b511ff59a59d328cd442b524fd1448c51ddabefed116454f78e53dd89b483851d7c58cf3309f75f4797b826833321
-Size (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.10.0.zip) = 99195 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.11.3.mod) = b8e3c1b31db3a269eabe90ee3f50e785bd0c6cca804a972d126a33b3ea820441
-SHA512 (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.11.3.mod) = 58351f30ac430fc001ec76dcfe4577b3b37ea71d37c49462a8264782edab6774e4c2911dcdbc7495e4106b81657189ea43937bb8ed0c2c32609e6e1acb4f9007
-Size (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.11.3.mod) = 1057 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.11.3.zip) = f3f476e1ac07b3ce0612275a85e5f5746dbd8ef9a336a070bb9448c2168f3623
-SHA512 (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.11.3.zip) = 52f14e8daf857be7d2cec363a09f97eb777ad2a5c3e59cdbd77dc146b025bb7e982f0e93ac92c70115727c71a4c62de77bb3804febf821dfacbfc4455ebfe5de
-Size (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.11.3.zip) = 86007 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.11.4.mod) = 549c2df1fcc3a83c0179a39e4742a2368563e028bc3fed377238940757a9732f
-SHA512 (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.11.4.mod) = b8488e34a11075f022cb82cc71142058b85adf6f1c1f3d0610c5e05afe8e46a4530d2f0a8046da370f7ab8543dd0a67d8c0cefce4ab2ab89ac074168db49713b
-Size (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.11.4.mod) = 942 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.11.4.zip) = f31bb02338a704fd94b1bb3d422ad5283790accd7311c13a01c0cd557e37d042
-SHA512 (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.11.4.zip) = 51acca6cd14980b18d1bb3531b57307e4c6de246ab9bbff08d60353c6711573ebcdb3aa7a079e5ef093137ffa3dbf5a15a83670742efe0a8db9c1cfaf9366a62
-Size (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.11.4.zip) = 104666 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.5.0.mod) = 3ef2ef8fa8534dcc08a091532405042defdf587aa8db8164202438e8e8630e2e
-SHA512 (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.5.0.mod) = bdacf1cac01406b7312703f88afb03bfebcad55afcadc14f9d00731253ec4aef3f024027e0cab4004ec3a880a9533601ea5dd1f67e9deac59c65dd7069f867bf
-Size (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.5.0.mod) = 901 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.5.0.zip) = 5e030fb039548839aac1d04556279dbe10a4fb291f7c26274b340200c34f8dec
-SHA512 (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.5.0.zip) = efa759414d7c82fcbd4ce39c0dd510370c71cb6cdcbe8ba2eae64bf3ce2c4eb0629e7bf79cdb79afa74f6085c000a7c64850d51e58b93d6446fdeeae4ec19b23
-Size (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.5.0.zip) = 60562 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.11.7.mod) = 042c30fc6f370518b26d843573d2826582878adbacbd1125b92aec985a05b030
-SHA512 (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.11.7.mod) = b4e51f525e9ef3088f4ab7ed6712cf6adf4f70ae0bb56d3f410554bde88874ad8a1b034afafd10d2c9c518dc4d213fa0f498655d0da2f9f248fd6c95f535a2a7
-Size (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.11.7.mod) = 778 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.11.7.zip) = ec34e3202f13efeaf653363352d97953b690ff0bdfc0024e022a928b0337c084
-SHA512 (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.11.7.zip) = 944250f6c2e352c5b6e9c64eb2720666db0a30cbc59b4014d56fee796d64ef438ce53a70755dcbd3223fb19d529c003cc77e2357c863199f28a89b0d95d3c263
-Size (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.11.7.zip) = 69793 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.9.0.mod) = 93ebc939061995d8a210edc679c7544120c631cbf2850e007e933dc439b2b9fe
-SHA512 (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.9.0.mod) = 532a95bef5f921b247f8db9ec3507852bc9d021d9c1aa68c5c4cdee2a3680c2cad74ed89cd76268d27a77c4d743b0807f663d48ce3c85ed89ac7309144aff77c
-Size (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.9.0.mod) = 1073 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.9.0.zip) = 7f3cb9e33b2a204454081db5cc27ab81cb189ba8d0b1e04296d6e0d14ee7f138
-SHA512 (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.9.0.zip) = 55234055ff70cab84b3c7003b46a0634d0e69b2859e4b4a7d3dffb4d6a3fdc9876ae6d774708bed5e22222cc5c2d89a9804b422d555e55817e41977190860417
-Size (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.9.0.zip) = 45186 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.5.1.mod) = ae74c80449206236badbf34f48d12b888e59a4dcb00e2e8a3af71e8afdfd2257
-SHA512 (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.5.1.mod) = 4ce09169300da51f94d60cf14acc23e9285638b360bb14589a77e5dd837c52f8e3609c9870da93e2f1d29a82510ce376aa0e208ae019ec45c4c62035f782177c
-Size (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.5.1.mod) = 1091 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.5.1.zip) = b13b54e321d720d076de1ab6936d5367708b80b50714b13a2fbb050bb79a6da5
-SHA512 (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.5.1.zip) = 8e4822f3ab47994e94b372317b998f62d44be563e9c4720a2873fb43ed73834c0556b5b8e15bb67a80e37b0b0c2a9719af3289c2a2ca1d585b8e82d36790adff
-Size (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.5.1.zip) = 45500 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.9.1.mod) = a523008ecff4dce2c3737a1c2d943eb3c97c39ac94a2e8942070af5cc398f7f7
-SHA512 (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.9.1.mod) = f05a26677245c8f8d0e033de1e40495038feff132f0bcc44f61d0f7da831b1834ac153ac2895cf4bdf9aabc4466c71de0a1d086ce3338d37cb76fa8ca495ba10
-Size (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.9.1.mod) = 1436 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.9.1.zip) = 8d09089880c23f7b7420e641f8f029883e396d74fd632205a54391a31eef3e91
-SHA512 (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.9.1.zip) = fa0ccbeaed69163b0d4b193267031248318b5d0e3c402103f6eef55380079c82a4c9e8be4d150ad3775574db85d318be00daa6071194b6cba99f63fbe20a3e32
-Size (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.9.1.zip) = 60942 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.5.1.mod) = 8ca5763953f36c00c7e55437a4f0c1531aa5685da29f99cdc8e0de685ba89ae4
-SHA512 (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.5.1.mod) = fb9f350f3f54019294bbc04383d0239dca579b85c6d80d706cf80bf52e83c182df04bf2f3191516a2bc06dfaf0c00ad76712941ce2ee8a0921660d4ebaef43e1
-Size (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.5.1.mod) = 475 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.5.1.zip) = 958e4129ab315a13f96842f047a80f7b955be0a924aa7e366e917c3f45c5ed7e
-SHA512 (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.5.1.zip) = 3aefa7bb93487540f973f352dec1cef65ed5cd9310a68868ae3fc17883444dd1ff396cbaf207ab9ea73462d3c9c8e2859bb8e150f9596dc3211b548020a852f1
-Size (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.5.1.zip) = 40627 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.3.1.mod) = 9eca2fde54298e6be258503cf124bbc5d24c3dc9ea3f18893f7b6aaac4f31656
-SHA512 (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.3.1.mod) = aa0845d5ffbc010e9e31d33e37681e15a32a341dd5f907a497a32ee5920133a5828450db572a0fb8737872385cfd49a0b51aca0bfca2ec5b6aed12649c4642cf
-Size (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.3.1.mod) = 409 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.3.1.zip) = 6b29f581f4056f30d73f55f5516adb668fcd15701be3dea555d7d304bc91b7f6
-SHA512 (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.3.1.zip) = b10cf9fa1d1c62e30a461dc259742afd4503e6926f01f6e1347a74247488fe8c195db1dee1ac67a9d5e6d8bc4be4df6f02561e73d21f083fda8c7f8eb5d160c9
-Size (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.3.1.zip) = 31295 bytes
+BLAKE2s (github.com_hashicorp_serf_@v_v0.9.6.mod) = f6eb6c306acb9ef503181de0c93ecc679884f66a62c85e199b7efb0892388c01
+SHA512 (github.com_hashicorp_serf_@v_v0.9.6.mod) = 1dafb16d13b22abf0a380e7e7e836f5d1d5f78992ba3e35d570a485dd5428cab59294fc21a790419ccbd0a77fef6d0e5e9697217e9c6d7ad8500c4023780ac3d
+Size (github.com_hashicorp_serf_@v_v0.9.6.mod) = 831 bytes
+BLAKE2s (github.com_hashicorp_serf_@v_v0.9.6.zip) = c00d36a43f8189d6996a4e1a8c4cc812f846893161365715bfcb535cc7013923
+SHA512 (github.com_hashicorp_serf_@v_v0.9.6.zip) = 129eec9efe5a35ad70710e5d4aafd4ba2d9a7ebbeda3cefb3654409979d8614f3cd8af6835c1ae97c9547a24d8ec3da8d61101c5cd891bdcc09014c0aa79c8f4
+Size (github.com_hashicorp_serf_@v_v0.9.6.zip) = 552597 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.11.0.mod) = 842de03ae40c5697fdc3aa46138142cdd35f88784e102a85b2943df6d426b2ff
+SHA512 (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.11.0.mod) = 671ae8caf380537fd4be9acd21b810e9644d0e90b6d8afa3cb1ddba086ffd4a3e007e73ff3eb3b1e52139060236c97fd46b14be739a3d346d444106470d76245
+Size (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.11.0.mod) = 665 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.11.0.zip) = c8e38538bccb4fdbc4d1fbac430ecd92f1834a15393aaee618d53a8bb3ca2fdd
+SHA512 (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.11.0.zip) = 42d1acff4af5e5ec8ec6efee993e0b326330d7e2ec8857461d2670685f93a6f53bd8d724252ff612abe0dcb7336dc746b716b54853b3101491efcf4f2d4e2908
+Size (github.com_hashicorp_vault-plugin-auth-alicloud_@v_v0.11.0.zip) = 47309 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.10.0.mod) = 29a59bb7f7add438a0572f471cd343ea21de74ca5c9ef139d226f84ff6de0f1a
+SHA512 (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.10.0.mod) = ff6e7761aa92d560c659106dfacdea6ef1b1563658e28bbb03fb5d82caa94a29670984cb04be8cea1d1613ad0edea2969889ea1cf14563b649425d1114887d65
+Size (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.10.0.mod) = 3554 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.10.0.zip) = fc620494670900e64a8cd43eb55666c2203465393ba117b5c9777295ed78dac2
+SHA512 (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.10.0.zip) = 30c9f045236628d3b848bca6ceecd8405996166bd37f21536dbb0bdba1855d0657c2719907d5f77a972bf6e0202eacb505ae637733e3327fc5e6e06c7bca6d87
+Size (github.com_hashicorp_vault-plugin-auth-azure_@v_v0.10.0.zip) = 58480 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.11.0.mod) = 6e372acfbb35d252f649ca3d8a18d737e7d82c50e3206556681d056aa1a7b6a9
+SHA512 (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.11.0.mod) = 3fc2a442f21e3de8b1bcffdc8bd187754869a60d3c733410f0e9610816a998674ba40b1210c49bf8db73bb5d3ccae3e0c3bb4013ee2db092d8ed1f0f42336156
+Size (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.11.0.mod) = 438 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.11.0.zip) = e6d7a23455a8cf364ba0cc3ac1a97fee0e9521f7a669faa8e9d62c976a77f8a0
+SHA512 (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.11.0.zip) = 688e1abfd54c343e8b17c9012db1371ef37c5060375364d1d7a05f64316b0b25d258ae2c85566cfa5b87e4d926585882dde4ec9af30090059637834db37daccf
+Size (github.com_hashicorp_vault-plugin-auth-centrify_@v_v0.11.0.zip) = 37731 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.11.0.mod) = d9f1aa9cde471fa03b8e9875dc1813cee9ee944fce0d7a5a8d939d3f4b435e09
+SHA512 (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.11.0.mod) = 73ff418efd568ba2e7b0cd2dec896ad1a1f251fce6b5b4b71430bf25a52b62ab74d9c60b7037576cd00ad3153e00a464ff22a164081b980f9a9da2cdcbad40f7
+Size (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.11.0.mod) = 647 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.11.0.zip) = f0594739bdbc3be1446515bd26b02383cbae8f5e8aa4feb6418fbdf27ff04866
+SHA512 (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.11.0.zip) = 3ab3211d44904e9609ed84ec582447b55950dbbded5896f42a5288febdd2bd85a03ce48e1d491b56762abc6ca97ccf0d044d26a135cfdd098a66e6e06d3db7bd
+Size (github.com_hashicorp_vault-plugin-auth-cf_@v_v0.11.0.zip) = 99001 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.12.1.mod) = 978331472487f2ac1b9f77fb28c79e4d14bc83e4f624c3191361831e6c9c3f9c
+SHA512 (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.12.1.mod) = ee3d632f12b94848f092ddee5bd183d6e58ab6c110521d2a9a85153a510e078c260186ca8b4bfbc11a09f973a7b782ab599c3df52167dbb6940f8437f0b9fca7
+Size (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.12.1.mod) = 1098 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.12.1.zip) = 6cb318533da1920036af42aadf91357cc632c4bf3a63f06f839b620c75add8cb
+SHA512 (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.12.1.zip) = 465fbe69c5c4ba2e7a5a86a978fa103d1b9748836b3a08e215d80160e13d20dcb5b780418c63237f094f7d4b43c587b1dfbca3b176220fc74d7bde8e8265288b
+Size (github.com_hashicorp_vault-plugin-auth-gcp_@v_v0.12.1.zip) = 90284 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.12.1.mod) = 7b0fef28554cb6b0d2a8c3505d4dadb79ab48eb2331f1a214cd0fbe8abd6859b
+SHA512 (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.12.1.mod) = fe4b2afe6895d51c899319fcad2b2dbc617a9ca664922d0fae7ddbe8dc3a3ad44d55ab816ca91fe991f10713518fcf8ee65cf1a6dd0518ca3cccc827af70bf6f
+Size (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.12.1.mod) = 1254 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.12.1.zip) = d63f285996da357801e3715d1644d93e415ea3c6066143afe7b58b0d654e5c51
+SHA512 (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.12.1.zip) = 084a91de667af649851ffdb2fe0a6e67d64959df524080435740d608f23afd2257ba2ab13bfd7cd3a106493be2768155d72c577c2c6a5feea6ccd89088797754
+Size (github.com_hashicorp_vault-plugin-auth-jwt_@v_v0.12.1.zip) = 108933 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.6.0.mod) = 3ef2ef8fa8534dcc08a091532405042defdf587aa8db8164202438e8e8630e2e
+SHA512 (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.6.0.mod) = bdacf1cac01406b7312703f88afb03bfebcad55afcadc14f9d00731253ec4aef3f024027e0cab4004ec3a880a9533601ea5dd1f67e9deac59c65dd7069f867bf
+Size (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.6.0.mod) = 901 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.6.0.zip) = 739692fa7beed10200741360305ce4f51098cbba499bf157f6720a7e24a0e887
+SHA512 (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.6.0.zip) = 2b3ad1add6d30ab6293c0a7ea4a4b3673b827a3b77e5fd51ea50f5bad26e6ac3d1ca24c62aaf4935fd5893aa306d85bddf9aa489f66b83c920abce60f42d6749
+Size (github.com_hashicorp_vault-plugin-auth-kerberos_@v_v0.6.0.zip) = 65023 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.12.0.mod) = 042c30fc6f370518b26d843573d2826582878adbacbd1125b92aec985a05b030
+SHA512 (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.12.0.mod) = b4e51f525e9ef3088f4ab7ed6712cf6adf4f70ae0bb56d3f410554bde88874ad8a1b034afafd10d2c9c518dc4d213fa0f498655d0da2f9f248fd6c95f535a2a7
+Size (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.12.0.mod) = 778 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.12.0.zip) = d1eb5021682ff9c3399df76f021ee918565ab00bfa24757b7ca129fe0d4b4733
+SHA512 (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.12.0.zip) = e1c1a7c760c51cb75ce1a38b693411548b0c6efe07b194ecf8f307c5e2449c219faeaf3ecb27988cdcc886f4f18ee4827d8d8766234055dc6754bb6c6c995d5a
+Size (github.com_hashicorp_vault-plugin-auth-kubernetes_@v_v0.12.0.zip) = 69131 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.10.0.mod) = 93ebc939061995d8a210edc679c7544120c631cbf2850e007e933dc439b2b9fe
+SHA512 (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.10.0.mod) = 532a95bef5f921b247f8db9ec3507852bc9d021d9c1aa68c5c4cdee2a3680c2cad74ed89cd76268d27a77c4d743b0807f663d48ce3c85ed89ac7309144aff77c
+Size (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.10.0.mod) = 1073 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.10.0.zip) = 9ab0766f4137a07a2da204dfa60fe85b60e35ff1b176d21f5c5a49427417151d
+SHA512 (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.10.0.zip) = c40e433f6bbc54dd92dd3a80a54e7db63ad725ec8b1e7d40d5d2aaeb11de8db30debd7705d52e37bbf5950a99b88d0f295109bd9bd469555d29b771e2a4a17b3
+Size (github.com_hashicorp_vault-plugin-auth-oci_@v_v0.10.0.zip) = 45043 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.6.0.mod) = ae74c80449206236badbf34f48d12b888e59a4dcb00e2e8a3af71e8afdfd2257
+SHA512 (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.6.0.mod) = 4ce09169300da51f94d60cf14acc23e9285638b360bb14589a77e5dd837c52f8e3609c9870da93e2f1d29a82510ce376aa0e208ae019ec45c4c62035f782177c
+Size (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.6.0.mod) = 1091 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.6.0.zip) = a23ec857d09c92706818a834c1c204ac493674b1f438622cd042d2b5c5480481
+SHA512 (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.6.0.zip) = a174563f3375b97c13ac4f6000e800e98cf84365142d731896bde404969a5bb5b245fdbd99ab4f0c67013d3103da98cf078ca98bd22e78a0c48d2d35f9e703f7
+Size (github.com_hashicorp_vault-plugin-database-couchbase_@v_v0.6.0.zip) = 45293 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.10.0.mod) = a523008ecff4dce2c3737a1c2d943eb3c97c39ac94a2e8942070af5cc398f7f7
+SHA512 (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.10.0.mod) = f05a26677245c8f8d0e033de1e40495038feff132f0bcc44f61d0f7da831b1834ac153ac2895cf4bdf9aabc4466c71de0a1d086ce3338d37cb76fa8ca495ba10
+Size (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.10.0.mod) = 1436 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.10.0.zip) = 166799768dd2e6bd1eaec7fcd2368729db3231f2d96e8228290791811a3d8e41
+SHA512 (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.10.0.zip) = 455fef7aedf9f3a0a9df6b5d924270c7bcfffed0dd9e1d0e4c852f87ee4a813d70def6564237e9ac5ac490fa37d0c7aeb5f8c4ee97535a715690b3aaeac21c85
+Size (github.com_hashicorp_vault-plugin-database-elasticsearch_@v_v0.10.0.zip) = 60793 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.6.0.mod) = 8ca5763953f36c00c7e55437a4f0c1531aa5685da29f99cdc8e0de685ba89ae4
+SHA512 (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.6.0.mod) = fb9f350f3f54019294bbc04383d0239dca579b85c6d80d706cf80bf52e83c182df04bf2f3191516a2bc06dfaf0c00ad76712941ce2ee8a0921660d4ebaef43e1
+Size (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.6.0.mod) = 475 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.6.0.zip) = d2ed555c9dbc37fc5c0450f745ca3365e9ff85ddc158a0993704e98ab83f6fc9
+SHA512 (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.6.0.zip) = 4df1255ad47950f5a399469f91a6fb24accb411772859e6d69449c04715955cc04d7b443da86ceb9cc15664f692dbf4ed1d9c72aab76284b4fa3aebf0a130094
+Size (github.com_hashicorp_vault-plugin-database-mongodbatlas_@v_v0.6.0.zip) = 40420 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.4.0.mod) = 9eca2fde54298e6be258503cf124bbc5d24c3dc9ea3f18893f7b6aaac4f31656
+SHA512 (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.4.0.mod) = aa0845d5ffbc010e9e31d33e37681e15a32a341dd5f907a497a32ee5920133a5828450db572a0fb8737872385cfd49a0b51aca0bfca2ec5b6aed12649c4642cf
+Size (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.4.0.mod) = 409 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.4.0.zip) = 20228df6fbc7463c31baaf1c98928aaffd5e951176fb405042352b3b446914e3
+SHA512 (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.4.0.zip) = 5da35a90fcec1a219953c6db0592b07aeda53e7ba2098394de899e9efa7ec1adc5e78dab0df148df05ef695eda8f1531ebd0f8d643a5fd3a11e9b4d5ff01cb51
+Size (github.com_hashicorp_vault-plugin-database-snowflake_@v_v0.4.0.zip) = 31295 bytes
 BLAKE2s (github.com_hashicorp_vault-plugin-mock_@v_v0.16.1.mod) = c7c4200e94ce873bb9da6eae8579c4d0bc65797a5a6cb7e25db5f753f01a5e60
 SHA512 (github.com_hashicorp_vault-plugin-mock_@v_v0.16.1.mod) = d9c24c3e257d6faa2c7d3fe6b1660aba346b6951aa7822195937dbfb96d8a013d7183141af9cdb258d29467be43d9833452eda14266fc3b41b96c07f8203baf5
 Size (github.com_hashicorp_vault-plugin-mock_@v_v0.16.1.mod) = 55 bytes
 BLAKE2s (github.com_hashicorp_vault-plugin-mock_@v_v0.16.1.zip) = c203fc659b4755879322b1cc71b2d5128c032c8d79f9b2bdfc05912941d8de2f
 SHA512 (github.com_hashicorp_vault-plugin-mock_@v_v0.16.1.zip) = c37306a9aa9c61a9fa0392b97d87820b48af9eeb6eea03a4f599e6c261ae9579ec5181a221e81b84f7f6dc43e7323ff651c415b699d5877057ffbe63b8b060c2
 Size (github.com_hashicorp_vault-plugin-mock_@v_v0.16.1.zip) = 6253 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.11.1.mod) = 4af5d397f5396649c8249d0500b3964fcd38abced64e416e288e2fbc757b8c41
-SHA512 (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.11.1.mod) = fb4b49a5d2772d327f421d4a381e02446ce5d7514110fda0c97bdd86d69f341922fb7956bf7bd90416009fd3f371c0e859ad43dd2b8c364e68f04af4ff26d956
-Size (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.11.1.mod) = 599 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.11.1.zip) = 87da979df38ab99c3330920dac2099aaae5872548fe67ffab749dac66222374d
-SHA512 (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.11.1.zip) = a504da1faf49c3d2275ea9f74d0e786c1e6fbd74d4acd9ca3300f432cca170682b3087e58a094ef60bba5587992dcb44dd75230deb4e37d7e03fd3c2d7ff408d
-Size (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.11.1.zip) = 84504 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.10.2.mod) = c1a2f6d88a3f4ab9b42c2b0c5e565b5468c7c96cb056e726e22d22681e638439
-SHA512 (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.10.2.mod) = 82004b9b9f7967f611f4f4886b26a2aa9a3a96d8f0ac366e3c9179f0c6c8972c8cdf398e9f6bae0516116e703209bbd619d33b022260673acb630823f43d0a0c
-Size (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.10.2.mod) = 582 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.10.2.zip) = 3efde22d7ac4087d9e607e525152b0bcccf9f0798017462252b2ea874f7e6c5b
-SHA512 (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.10.2.zip) = b5c9cdc0b65965518d24b5a7f8e57d230b09717fcdb271957613898b0d19a94bb825024c660ecbf5c0d04b69f13fd4e499622b855436d000a92af2252159eb91
-Size (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.10.2.zip) = 50455 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.11.4.mod) = edcd567a15f61029617c6e13c75984b39352aa273c9b1c3ff68cd8e8b4416e21
-SHA512 (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.11.4.mod) = eb74244fd35674275e34540d2ce7127d862517f83547187a5d8ac9bc8a3b0875b9a4316113d536ba58df875e16d9ed8cb12c9f96c362b18b54c17b5b077b3b30
-Size (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.11.4.mod) = 920 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.11.4.zip) = 2ae1f06a74249819de9c68bcbda628a20b42b1a2633647b021abaf2a33173a7b
-SHA512 (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.11.4.zip) = a92cc795e25609ba35f3caf722c0aeb2984b17fd5393797541c92b0a891631fe65d5d8aa3a24332358f7632f59d359b18b65b11fbb7eb19804a6f3f7a343e41a
-Size (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.11.4.zip) = 88300 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.11.2.mod) = 8a884cb41cb448bcb9506f6e0121b2cef9ea186f247e34043639f2ce07ca6cef
-SHA512 (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.11.2.mod) = 44a517bd804de4629afeb0fcc746db41e9a9154904df6428ca4c3382ac346a1872a5669b9db0408caa4fce31c029d903bdb413e3355d7d67543bb9ea77aa99ab
-Size (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.11.2.mod) = 675 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.11.2.zip) = 1331d356660bcf97bec0ab1b2b51d9a567d229d0fc731f8e65d1bb105e5e7e17
-SHA512 (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.11.2.zip) = 8abb12872953c212421cbbbce4157a4b7bd56053589557bc580073c1735191c5a97bc4f7cbc53239f303bb775cffdd77222c0997b30908bd13f6796472d237c6
-Size (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.11.2.zip) = 117349 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.10.0.mod) = 193c2146ef9346af98fcfa11ebf3f647be60f89dd3474b4ec984f10f7e0e557a
-SHA512 (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.10.0.mod) = 9336471157b93b7cf59026d8756cead8b6204bdddf715a620dc70d11013879756baeb579519360c6630a34b48b07400aeefe9ee16598758809253f00ed6252a3
-Size (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.10.0.mod) = 1355 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.10.0.zip) = 1ee646bb3be6d3fbd264c2f26e37500c345de4185f4a873e0e30fc61750aaf69
-SHA512 (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.10.0.zip) = ded9caa0d45df0dab9d022ed681712996c23b5daf9a6a985d7e19c3a7073585a998cc927b0a84ab2843b8845f69fe67c9b7d525ccdeacf52354821d14f7d36be
-Size (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.10.0.zip) = 79480 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.10.1.mod) = 6c389d7ed1f47899ff9ad1f3278b790abad77e1088ea595f5c57ef31dd469844
-SHA512 (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.10.1.mod) = cd467bf58178e76698f85de1e8682d467ebced65e84ae9064291bef4adf7b68e6a803a5c4d081d31425d6921b833f445150e0df203bd9f8deb7d1f9f66100fcf
-Size (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.10.1.mod) = 563 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.10.1.zip) = 4657c46436d0517102403af1458b631fa74c9e20a6c4c4d46e1bd01d14aedbbc
-SHA512 (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.10.1.zip) = 970f4f3dda8dd82b7c067f91488242dded46605be56a8d38b81b86bd89418f2c1a84d38801833437ab9a0a85b7629c11645a62667a754518eb6d75473ddfec83
-Size (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.10.1.zip) = 70967 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.5.1.mod) = cbd50bc79a4769dac7b8cdf4cf75bc2a713e82cd1fbe3d7ce4de74fbd0bc8944
-SHA512 (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.5.1.mod) = a1aeeb379a69fa55bd489da5000ebbcb436c4a147c353ef4cf4b8da391822634840489c0e659efa86c8e383c076e061e2f9c5100ee66e1387014123292d1da83
-Size (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.5.1.mod) = 509 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.5.1.zip) = 69164306fec57f13a2316362d9ae7109d8aad74c5ed4d146b0b96486c7838d86
-SHA512 (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.5.1.zip) = 72c97ac961ef4693b1e49fac8ee75d79f6f47c3e9cd86246406c48a78fb3b2870dc09600b38e8093085242005125e92b2ed62f6156f623d06451f566e617231a
-Size (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.5.1.zip) = 47766 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.6.1.mod) = 81d19b547eed32fa3477dd06c1b4010284a7c5c6db72bafccbf6c7b1edc26f4c
-SHA512 (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.6.1.mod) = 2f8793f2d037146bbd61c0cf000cce988b9f1fdeaba32e348d5640a3f299b7389f2c880b0d95219f22e50f3194df4e0580b0f30c627afe9817c9f5f980842afd
-Size (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.6.1.mod) = 713 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.6.1.zip) = b2b98de001293bcd9e36014f952da0e0868687e075b95befe1f60975f0f410f6
-SHA512 (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.6.1.zip) = 95168ea98e2c6330353188ab3d0430c7f375c1ffbe2e41ec6295498ee82dc0d795e8f226dcccb301aa774501d5ed0a2024c49ad256ccfd861f55a8c42fae286d
-Size (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.6.1.zip) = 88998 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.3.0.mod) = 2f234e24713de34b3cc04402b938c812033699183965b21fe73f98ff5a50e920
-SHA512 (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.3.0.mod) = 3967e561a993768669742403ec91246f425c42078bb087c7c9fcb60d85b42c9a1fc18fe9b0b05e0dcebec050adb40ccdefed084da9ddb46bb63eda08d09d389d
-Size (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.3.0.mod) = 397 bytes
-BLAKE2s (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.3.0.zip) = b7e25200be17b05f6f66976fba7c19c6f7c55005424ada39d52cbaed8a521acb
-SHA512 (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.3.0.zip) = 6f5e5718ee40e907d14a58fe827f6f0dd9c6a5f529c80e249f2949f302a4e1c24b36b13eb541ae23b657e15b8dd39fb89370e796aa40f3fcfe3b0b84686b0ff3
-Size (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.3.0.zip) = 49930 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.12.0.mod) = 4af5d397f5396649c8249d0500b3964fcd38abced64e416e288e2fbc757b8c41
+SHA512 (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.12.0.mod) = fb4b49a5d2772d327f421d4a381e02446ce5d7514110fda0c97bdd86d69f341922fb7956bf7bd90416009fd3f371c0e859ad43dd2b8c364e68f04af4ff26d956
+Size (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.12.0.mod) = 599 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.12.0.zip) = 2846c1cfe9d823a30b6df79fb5d575b7afac78bcc71bb4b894e6b75dad17c62e
+SHA512 (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.12.0.zip) = bfec94fb7d46f93b4919cf764c75a9afe0f0604593fbd797fbf8663eea00a0ac25c98f254bd5f40b653587161c3e285a36eff3231f7ea0aedc3ca1fc36b2a103
+Size (github.com_hashicorp_vault-plugin-secrets-ad_@v_v0.12.0.zip) = 84297 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.11.1.mod) = c1a2f6d88a3f4ab9b42c2b0c5e565b5468c7c96cb056e726e22d22681e638439
+SHA512 (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.11.1.mod) = 82004b9b9f7967f611f4f4886b26a2aa9a3a96d8f0ac366e3c9179f0c6c8972c8cdf398e9f6bae0516116e703209bbd619d33b022260673acb630823f43d0a0c
+Size (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.11.1.mod) = 582 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.11.1.zip) = 7846a567193c35610bde7b35a0e7d09e10e4c27172f00cfa6a112c6d8995884b
+SHA512 (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.11.1.zip) = 0c04b0da64a213c47c20c853c62fe8f1bbeb560416cf690c0c3d775a44b6121717fc33314478fafe3c6e061269504e9a438e1ea3e4e503a82b75d070da6398ec
+Size (github.com_hashicorp_vault-plugin-secrets-alicloud_@v_v0.11.1.zip) = 50248 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.12.0.mod) = edcd567a15f61029617c6e13c75984b39352aa273c9b1c3ff68cd8e8b4416e21
+SHA512 (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.12.0.mod) = eb74244fd35674275e34540d2ce7127d862517f83547187a5d8ac9bc8a3b0875b9a4316113d536ba58df875e16d9ed8cb12c9f96c362b18b54c17b5b077b3b30
+Size (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.12.0.mod) = 920 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.12.0.zip) = 15aadc5c04be9adc110f7d14d099271096ab17ad6bfa47051c0f7b574ce4b9dc
+SHA512 (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.12.0.zip) = 64e25e4c0e7c691e719d7369ab3af5d04e496b25e8e8b8894d9051b911f3fabe5a7e06146ad5fc76bf88139fe3335676c3c26be3732b080fc93c0b41839dd05d
+Size (github.com_hashicorp_vault-plugin-secrets-azure_@v_v0.12.0.zip) = 94531 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.12.0.mod) = 8a884cb41cb448bcb9506f6e0121b2cef9ea186f247e34043639f2ce07ca6cef
+SHA512 (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.12.0.mod) = 44a517bd804de4629afeb0fcc746db41e9a9154904df6428ca4c3382ac346a1872a5669b9db0408caa4fce31c029d903bdb413e3355d7d67543bb9ea77aa99ab
+Size (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.12.0.mod) = 675 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.12.0.zip) = 8c64a6385184a423837c0b7ae1c0752b62e9259a47d91785f8e24d78c6972c08
+SHA512 (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.12.0.zip) = 28df4f04b7465027dae0f6f63559b435e763bce992fe607d79cf4cc86dcfc3a3ce49210e899a6ab3fbd770ad163324f61267d52aa5cdd24d36d08e3048f9da03
+Size (github.com_hashicorp_vault-plugin-secrets-gcp_@v_v0.12.0.zip) = 119996 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.11.0.mod) = 193c2146ef9346af98fcfa11ebf3f647be60f89dd3474b4ec984f10f7e0e557a
+SHA512 (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.11.0.mod) = 9336471157b93b7cf59026d8756cead8b6204bdddf715a620dc70d11013879756baeb579519360c6630a34b48b07400aeefe9ee16598758809253f00ed6252a3
+Size (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.11.0.mod) = 1355 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.11.0.zip) = 9ad39ee66b5c70b4aee4425c9ac36ec22ab125cc0db59dce7d89b5127a375b31
+SHA512 (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.11.0.zip) = f029d44daed83cf3fdf218dea01b23933d09a255fa8add10528471f3d8080f62db6bb4de889da6df0b20f8dea201ca3ddf10aec59881baee2f2b68a12ec5f6db
+Size (github.com_hashicorp_vault-plugin-secrets-gcpkms_@v_v0.11.0.zip) = 79274 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.11.0.mod) = 33864edb2a8e7e5285c4b1cbc4052d30fd798833c6aecbbeb65ff92cec3f6ecd
+SHA512 (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.11.0.mod) = c3e5c4a85040620651a76ee071eef24bf0229dc1b7a6d79239328cd058cf09339fea271ac063d7809bfa1f83526569550b82f60c4403979cd17f3614a7b383a1
+Size (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.11.0.mod) = 593 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.11.0.zip) = 4cc07660b61dd1a2629adc66a0d162fc5a39838dcaf34828d791689231b23f6c
+SHA512 (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.11.0.zip) = 7950e5246a3078be83c8100822d69a36f8b3bc16bcf4c95c35d43d743cab4a2be8acf18b7dc6c6db8756448a897cad25e3979987da0190b6c3a5fcb36ebdecc9
+Size (github.com_hashicorp_vault-plugin-secrets-kv_@v_v0.11.0.zip) = 78849 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.6.0.mod) = cbd50bc79a4769dac7b8cdf4cf75bc2a713e82cd1fbe3d7ce4de74fbd0bc8944
+SHA512 (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.6.0.mod) = a1aeeb379a69fa55bd489da5000ebbcb436c4a147c353ef4cf4b8da391822634840489c0e659efa86c8e383c076e061e2f9c5100ee66e1387014123292d1da83
+Size (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.6.0.mod) = 509 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.6.0.zip) = c73b7667021eaad6020fa37d86832690563295090e086d1c6b9f4087852412b0
+SHA512 (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.6.0.zip) = f6b7551787033568a37a85bf561c6282efecab70d28b4e16079afb04623163f8a928274c616a3e6dcaecd90d4fa08ef408bb403ce278a1ca82af06e9791704f8
+Size (github.com_hashicorp_vault-plugin-secrets-mongodbatlas_@v_v0.6.0.zip) = 47766 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.7.1.mod) = 81d19b547eed32fa3477dd06c1b4010284a7c5c6db72bafccbf6c7b1edc26f4c
+SHA512 (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.7.1.mod) = 2f8793f2d037146bbd61c0cf000cce988b9f1fdeaba32e348d5640a3f299b7389f2c880b0d95219f22e50f3194df4e0580b0f30c627afe9817c9f5f980842afd
+Size (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.7.1.mod) = 713 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.7.1.zip) = 2a56d17177a790e1771b09313030e2493d409a70fefed915d1a7588eceb328a5
+SHA512 (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.7.1.zip) = 490debd6103a7ac0b122468844eb1e8c9fb5f270af52a6c7fc4a69515def62dcbccc6811f5ed3f1f0cadcfeff0974b3ba275714064e4a3c04471f406498609d7
+Size (github.com_hashicorp_vault-plugin-secrets-openldap_@v_v0.7.1.zip) = 88998 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.4.0.mod) = 2f234e24713de34b3cc04402b938c812033699183965b21fe73f98ff5a50e920
+SHA512 (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.4.0.mod) = 3967e561a993768669742403ec91246f425c42078bb087c7c9fcb60d85b42c9a1fc18fe9b0b05e0dcebec050adb40ccdefed084da9ddb46bb63eda08d09d389d
+Size (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.4.0.mod) = 397 bytes
+BLAKE2s (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.4.0.zip) = c74432feb120a7eb2bad259ada3995bd05c4cf7254bad6d857f312d3b557502f
+SHA512 (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.4.0.zip) = 53691fa3b7da505219e7e55d7b52ce4d7ceecdcd9989ec42837feed487c0ecc0a45ef2d42761b62617c7891ffcd903eebf11cd5efb3fb22e521a6bb54298f3eb
+Size (github.com_hashicorp_vault-plugin-secrets-terraform_@v_v0.4.0.zip) = 49930 bytes
 BLAKE2s (github.com_hashicorp_vault-testing-stepwise_@v_v0.1.1.mod) = 7b098c393199180a4347632506aa75cf8a22a14d640104c152aa96607d578dfa
 SHA512 (github.com_hashicorp_vault-testing-stepwise_@v_v0.1.1.mod) = 7ab74cd3635a0c7ea7634da0a52109fbf3f95efaa87d860b5be942cabe80695bfc98bb21d688027927f9de12f54f6bec50b88cee07548b3045fa775be9fc681d
 Size (github.com_hashicorp_vault-testing-stepwise_@v_v0.1.1.mod) = 583 bytes
@@ -3462,12 +3468,12 @@ Size (github.com_inconshreveable_mousetrap_@v_v1.0.0.mod) = 44 bytes
 BLAKE2s (github.com_inconshreveable_mousetrap_@v_v1.0.0.zip) = 5d7079e8c408755a3731b3ce90f156b4ac6293428c7415f369383da3b8d95c24
 SHA512 (github.com_inconshreveable_mousetrap_@v_v1.0.0.zip) = e16bd414c1df566a12944e4a99ebd84d2103f0cb3bf8ec312e3de400f20b3eae27845db50672801c10474dbf1dc61d0c2e16e5dcd3c4447681c0b77f9114a411
 Size (github.com_inconshreveable_mousetrap_@v_v1.0.0.zip) = 3712 bytes
-BLAKE2s (github.com_influxdata_influxdb_@v_v0.0.0-20190411212539-d24b7ba8c4c4.mod) = dc96a50f5bde13dc7044c873d4f429a4950debbc11eec24fbefcd0f6c5584cae
-SHA512 (github.com_influxdata_influxdb_@v_v0.0.0-20190411212539-d24b7ba8c4c4.mod) = 9840bb7405945d53cf1ad5fd29828c0546a57fca81fd0fb37fea26a92e977d1fc5f07987897476c5baecc7c030528f698bafb5b168c30dc59f3145b4c50c8479
-Size (github.com_influxdata_influxdb_@v_v0.0.0-20190411212539-d24b7ba8c4c4.mod) = 38 bytes
-BLAKE2s (github.com_influxdata_influxdb_@v_v0.0.0-20190411212539-d24b7ba8c4c4.zip) = 340d404d50f6c2729ac30ddf2a0714e71613478b9140d50ae9adb5b41b41d128
-SHA512 (github.com_influxdata_influxdb_@v_v0.0.0-20190411212539-d24b7ba8c4c4.zip) = 936384ec15636b0fc40a9bbc7d3bb8b0161256c2b13813660d1b014a9d1f05dbdd2162ba6ade960a349bc93933b9d1769cd33254483db01a10485671390d131c
-Size (github.com_influxdata_influxdb_@v_v0.0.0-20190411212539-d24b7ba8c4c4.zip) = 12292766 bytes
+BLAKE2s (github.com_influxdata_influxdb1-client_@v_v0.0.0-20200827194710-b269163b24ab.mod) = ba05f065f9a32b493afcdf3dc35f204d86b715eebda6202c7d3bf54fd5991109
+SHA512 (github.com_influxdata_influxdb1-client_@v_v0.0.0-20200827194710-b269163b24ab.mod) = 324450602d8234231b0cf40b07e8936948487354b8f6e92012f3e65ba3c646b0993e4722d3867a12d0bd3749c8dd6fca4a1118393e2ca682170e500b3d54e5fd
+Size (github.com_influxdata_influxdb1-client_@v_v0.0.0-20200827194710-b269163b24ab.mod) = 46 bytes
+BLAKE2s (github.com_influxdata_influxdb1-client_@v_v0.0.0-20200827194710-b269163b24ab.zip) = ea5993f228bb751851a303b89975b95c5214bbaca07d9a2497a1f165862e01af
+SHA512 (github.com_influxdata_influxdb1-client_@v_v0.0.0-20200827194710-b269163b24ab.zip) = 4c30bce1e3adbfb3123078eacd8d7aea14e355ae31355693d20bdd0af009f8cede9b46cf1fcd4c937e3e89883eea46afa01ec225c0355064479895be05c0c2d0
+Size (github.com_influxdata_influxdb1-client_@v_v0.0.0-20200827194710-b269163b24ab.zip) = 70744 bytes
 BLAKE2s (github.com_j-keck_arping_@v_v0.0.0-20160618110441-2cf9dc699c56.mod) = d88a48a7f131ba3a1f04f13f56fe2b991b53628d4566aec8b3193178ca88e640
 SHA512 (github.com_j-keck_arping_@v_v0.0.0-20160618110441-2cf9dc699c56.mod) = 77a838338c62779fd7eba69d5ef388d6d58bcc7953dbfdf8f470d34cb66a7c84bf38ac05602da74c6ac4dd17293c62f910a55370df4671726fca9fab180865ed
 Size (github.com_j-keck_arping_@v_v0.0.0-20160618110441-2cf9dc699c56.mod) = 32 bytes
@@ -3717,6 +3723,9 @@ Size (github.com_klauspost_compress_@v_v1.11.13.mod) = 46 bytes
 BLAKE2s (github.com_klauspost_compress_@v_v1.11.3.mod) = 7b45b68c68d47c3b0c886bfd1c3438f0c1ffb713ab52446f974c2e9595ed2aa3
 SHA512 (github.com_klauspost_compress_@v_v1.11.3.mod) = 55b1b23e692eed7e5cd2789b542c27eb85c019460a1ea75bfb31802263328b53da1a466e4b09085e4e002dc699047bf3ef5ab003022a6182c9b762e0b812febd
 Size (github.com_klauspost_compress_@v_v1.11.3.mod) = 46 bytes
+BLAKE2s (github.com_klauspost_compress_@v_v1.11.4.mod) = 7b45b68c68d47c3b0c886bfd1c3438f0c1ffb713ab52446f974c2e9595ed2aa3
+SHA512 (github.com_klauspost_compress_@v_v1.11.4.mod) = 55b1b23e692eed7e5cd2789b542c27eb85c019460a1ea75bfb31802263328b53da1a466e4b09085e4e002dc699047bf3ef5ab003022a6182c9b762e0b812febd
+Size (github.com_klauspost_compress_@v_v1.11.4.mod) = 46 bytes
 BLAKE2s (github.com_klauspost_compress_@v_v1.13.1.mod) = 245171eb867a8806d5406344da0e0dc98430d0f9300482be28a20a3181ef1886
 SHA512 (github.com_klauspost_compress_@v_v1.13.1.mod) = 40bef039d92b3a13a5759f1374a7348afa3ce43e1855494c765bf7c4905a22bc6a9abc6bf7b0e8de693f525189416e50eabed20422e07c9809d55d5b43e3df91
 Size (github.com_klauspost_compress_@v_v1.13.1.mod) = 99 bytes
@@ -3738,6 +3747,12 @@ Size (github.com_klauspost_cpuid_@v_v1.2.0.mod) = 34 bytes
 BLAKE2s (github.com_klauspost_cpuid_@v_v1.2.0.zip) = 9d0e2d71d64a43a1f004f01b8a5e286d0fb3c55cf8619055c137d6275be35101
 SHA512 (github.com_klauspost_cpuid_@v_v1.2.0.zip) = 32df9cf0519da517342d2bc2b0f564ae16b181c0bd117b6758b027a6781ff30af61bea8d9df9350e9cb1fd3a8769b28aaa58aed0c49e7d884674118756e39fd8
 Size (github.com_klauspost_cpuid_@v_v1.2.0.zip) = 286652 bytes
+BLAKE2s (github.com_klauspost_pgzip_@v_v1.2.5.mod) = 012e2c37dae7d695c242f3ed094d721037d52db594ec3d685a693d5fc9a24efa
+SHA512 (github.com_klauspost_pgzip_@v_v1.2.5.mod) = cd08026364570f1acaca890fe4929ca5bafe90b4088f764a077952ce4b52e8d92a8a09e4bf264abd209a161ed47d9b6f572ebd904af2025da3696dbf79b63d5c
+Size (github.com_klauspost_pgzip_@v_v1.2.5.mod) = 34 bytes
+BLAKE2s (github.com_klauspost_pgzip_@v_v1.2.5.zip) = 251940dbe5de5b90cfabcf099b7a7b21095d4bcdcfc33a9bd8806a2821d78883
+SHA512 (github.com_klauspost_pgzip_@v_v1.2.5.zip) = 3deeeb2edc9b02fa384d3a69439c9ce19d8206700b5b0420f361bd9ddf17d0a8062629c9addacf9663e1f70e22108991723d375ef6d4c2af559d62a76213e162
+Size (github.com_klauspost_pgzip_@v_v1.2.5.zip) = 127654 bytes
 BLAKE2s (github.com_konsorten_go-windows-terminal-sequences_@v_v1.0.1.mod) = a3816438a47119f089b7893a1295b763b166fce5567aa2a78a98f89a42537899
 SHA512 (github.com_konsorten_go-windows-terminal-sequences_@v_v1.0.1.mod) = fe33ca4de6588b95f0155458b8b6daab218553b58de5dac220efe54019dfab085838cc6a22012a106fa36a6094447f744825cad04aaf0b158fce5aa676048fe5
 Size (github.com_konsorten_go-windows-terminal-sequences_@v_v1.0.1.mod) = 58 bytes
@@ -3951,12 +3966,12 @@ Size (github.com_maxbrunsfeld_counterfeiter_v6_@v_v6.2.2.mod) = 641 bytes
 BLAKE2s (github.com_maxbrunsfeld_counterfeiter_v6_@v_v6.2.2.zip) = 55a2dae119a68be3e0dfced8c49fbc78c620f03ed75dd4041bcc1418e58d11d4
 SHA512 (github.com_maxbrunsfeld_counterfeiter_v6_@v_v6.2.2.zip) = 4a0c5303b39f2939d8aaf38c3876b64a74a429f9655b47758f0e95a895755da5a9cb243d6490c5b357f7fc57ce7bbef04a0b5e8be28551b5a39860980126f328
 Size (github.com_maxbrunsfeld_counterfeiter_v6_@v_v6.2.2.zip) = 83936 bytes
-BLAKE2s (github.com_mholt_archiver_@v_v3.1.1+incompatible.mod) = e0209fe0c629a845d333c1e2984414e5c1370ece77e8717bacef2c328f5eea30
-SHA512 (github.com_mholt_archiver_@v_v3.1.1+incompatible.mod) = 11edd5885994fbf94cdfade07c7556c229da61ce64c8697a67f7a1d3ebf1127da0db78438720998b053971bc225777741450794471b02f0e684aedd5e23b3ffe
-Size (github.com_mholt_archiver_@v_v3.1.1+incompatible.mod) = 33 bytes
-BLAKE2s (github.com_mholt_archiver_@v_v3.1.1+incompatible.zip) = 95393cb35fd08ab5f86b6629c5555f8b1940ff0cc5f0e15dfada156ba142d983
-SHA512 (github.com_mholt_archiver_@v_v3.1.1+incompatible.zip) = fbb80df70abdaf86c4ab4abac4b97eac11bff082215ef8160cd845a7f64e4d73c7a6132787748f22ed7007dd4d5c8741484de951161d86b64b4ed9619d24061a
-Size (github.com_mholt_archiver_@v_v3.1.1+incompatible.zip) = 58857 bytes
+BLAKE2s (github.com_mholt_archiver_v3_@v_v3.5.1.mod) = e6e095aeff42636b61aea7d090a6525b53b9b51678fdb96cedf1a7e7cf66b564
+SHA512 (github.com_mholt_archiver_v3_@v_v3.5.1.mod) = c322dd37951eb3180157c9851e8b4add6ec9ad511b7edb60aa15da20df13c1ea9781c0d1154840a212b53f91902401325e9a73c46a229b8ad4ad96716c4bcba3
+Size (github.com_mholt_archiver_v3_@v_v3.5.1.mod) = 424 bytes
+BLAKE2s (github.com_mholt_archiver_v3_@v_v3.5.1.zip) = d4cffe319647c8700e0c147380bd7f9eb9eec1ed73f484a15535be3b63fa3613
+SHA512 (github.com_mholt_archiver_v3_@v_v3.5.1.zip) = 3911d3abfe03c50dfb8a7def75ed2c89eb893b52a6095b740209b9ad64c0790489201a4530a40fdcb7c16e1613e3aaea4c4941491dbea690509c365265bd6c56
+Size (github.com_mholt_archiver_v3_@v_v3.5.1.zip) = 88690 bytes
 BLAKE2s (github.com_michaelklishin_rabbit-hole_v2_@v_v2.11.0.mod) = 21f1f3d2e1393552c81e900fef93a70c4a8494fec7cdf3ce4ad20c4f8fa722ba
 SHA512 (github.com_michaelklishin_rabbit-hole_v2_@v_v2.11.0.mod) = cbcd17b21d9b75fa4330cf68c7dacde87fcaa856d7bc4aa1c618b1729d8e59ffde527a92b41c0c134c6a7119a54938f83d911aff29db00491527ae4bf9266008
 Size (github.com_michaelklishin_rabbit-hole_v2_@v_v2.11.0.mod) = 234 bytes
@@ -3981,6 +3996,12 @@ Size (github.com_miekg_pkcs11_@v_v1.0.3.mod) = 40 bytes
 BLAKE2s (github.com_miekg_pkcs11_@v_v1.0.3.zip) = 3315fc807a3819d1f05efc9e7e14e2da1a9da2a59d89a7c1630375d4c0eb2650
 SHA512 (github.com_miekg_pkcs11_@v_v1.0.3.zip) = 3e15e1e0197d1bd6624edd4bffbe0c9d203ab972d168475420695d82224142864827909862c436d755c0b0028797d2df601e7953f12bd1fb5dab8c333c30e5ed
 Size (github.com_miekg_pkcs11_@v_v1.0.3.zip) = 69201 bytes
+BLAKE2s (github.com_mikesmitty_edkey_@v_v0.0.0-20170222072505-3356ea4e686a.mod) = f6307a1a180ac73c30d3516cf180f4db4ae11eeac3b844db40b1bbd603390aff
+SHA512 (github.com_mikesmitty_edkey_@v_v0.0.0-20170222072505-3356ea4e686a.mod) = 3d4cd2c9897682f4af7d66174910d2daa4dad120f1e7bdf74405a70c191e10172f26f54eff08195677da9ee2e22f26219e067a57a6a6e8c01c6d9ae76ec25fca
+Size (github.com_mikesmitty_edkey_@v_v0.0.0-20170222072505-3356ea4e686a.mod) = 35 bytes
+BLAKE2s (github.com_mikesmitty_edkey_@v_v0.0.0-20170222072505-3356ea4e686a.zip) = 297a39135f4db62877e9b44f791a4fc23c2b4f8d59c4993c767e455d1088cd7a
+SHA512 (github.com_mikesmitty_edkey_@v_v0.0.0-20170222072505-3356ea4e686a.zip) = c53e248e0330a0d93d6699e3b720d85ee403359b1e42b7586604dd1a41e0caa471e257b2ec8811042dcdf4fa92f79c08745ba0c6bcd1c21ba36e08559a289df0
+Size (github.com_mikesmitty_edkey_@v_v0.0.0-20170222072505-3356ea4e686a.zip) = 2894 bytes
 BLAKE2s (github.com_mistifyio_go-zfs_@v_v2.1.2-0.20190413222219-f784269be439+incompatible.mod) = a1d4935ef857276c37f56a658b529884a1376bb8143db81180e60ebab15a91b4
 SHA512 (github.com_mistifyio_go-zfs_@v_v2.1.2-0.20190413222219-f784269be439+incompatible.mod) = c5cf4433f35fd5795d64388816ffe45b49fb7192c2c7bf4fad21e680cb35bbbbf046945c48e3a6e1c3d8cf528942b5c2eca85de9d8f70811d910c4624b53f2bb
 Size (github.com_mistifyio_go-zfs_@v_v2.1.2-0.20190413222219-f784269be439+incompatible.mod) = 35 bytes
@@ -4251,6 +4272,9 @@ Size (github.com_niemeyer_pretty_@v_v0.0.0-20200227124842-a10e7caefd8e.mod) = 78
 BLAKE2s (github.com_niemeyer_pretty_@v_v0.0.0-20200227124842-a10e7caefd8e.zip) = 752d4bfb207ce47af6c35223eaf16cbd7e131d6dee58c146e7318009423902f1
 SHA512 (github.com_niemeyer_pretty_@v_v0.0.0-20200227124842-a10e7caefd8e.zip) = 96747fb5890efdf10e0793afc08df1ced6dc8c71462397a0e4149f32f77470f1af6bf8fb2637693497d33a2a7483c4609380ee89ee0a85ce21102a32b7a1000e
 Size (github.com_niemeyer_pretty_@v_v0.0.0-20200227124842-a10e7caefd8e.zip) = 13281 bytes
+BLAKE2s (github.com_nwaples_rardecode_@v_v1.1.0.mod) = a894b3ae7dc4249c6924da51f37097599dc13e418e79f494806160171e190151
+SHA512 (github.com_nwaples_rardecode_@v_v1.1.0.mod) = 349c415bb3798e8a9e023a34ecc362a0522fa46c62c1ecffa3332fc48a2fc338e25ff568ec88570d7cad235997d1dade730620855c1f6222c782674ad5ece690
+Size (github.com_nwaples_rardecode_@v_v1.1.0.mod) = 36 bytes
 BLAKE2s (github.com_nwaples_rardecode_@v_v1.1.2.mod) = a894b3ae7dc4249c6924da51f37097599dc13e418e79f494806160171e190151
 SHA512 (github.com_nwaples_rardecode_@v_v1.1.2.mod) = 349c415bb3798e8a9e023a34ecc362a0522fa46c62c1ecffa3332fc48a2fc338e25ff568ec88570d7cad235997d1dade730620855c1f6222c782674ad5ece690
 Size (github.com_nwaples_rardecode_@v_v1.1.2.mod) = 36 bytes
@@ -4566,12 +4590,21 @@ Size (github.com_pierrec_lz4_@v_v2.6.1+incompatible.mod) = 30 bytes
 BLAKE2s (github.com_pierrec_lz4_@v_v2.6.1+incompatible.zip) = df1156920a26225c3603451ac4ce506c10636995b260daf93238d89510a73d49
 SHA512 (github.com_pierrec_lz4_@v_v2.6.1+incompatible.zip) = f915d971d9176bf0d3d27291faec13e825f523850d8616409935feca6ecb12e179bea42e34bf5173fce93d9e46c4c4bf9c718e708dfdbbb693928ad6d44441c8
 Size (github.com_pierrec_lz4_@v_v2.6.1+incompatible.zip) = 41522747 bytes
+BLAKE2s (github.com_pierrec_lz4_v4_@v_v4.1.2.mod) = 46eccf6d4dcd31cb8e1136442170b929d59065a21b5be56d323bf526c08923df
+SHA512 (github.com_pierrec_lz4_v4_@v_v4.1.2.mod) = 4823aa3e0ffcfe3ea48afd5295c18b714f8a39eab4ef06af49d181571ac4088dcf5d19b278b39951b6c802a1a0961741e917c6807c3b122f22bb2a35b3f1648b
+Size (github.com_pierrec_lz4_v4_@v_v4.1.2.mod) = 42 bytes
 BLAKE2s (github.com_pierrec_lz4_v4_@v_v4.1.8.mod) = 46eccf6d4dcd31cb8e1136442170b929d59065a21b5be56d323bf526c08923df
 SHA512 (github.com_pierrec_lz4_v4_@v_v4.1.8.mod) = 4823aa3e0ffcfe3ea48afd5295c18b714f8a39eab4ef06af49d181571ac4088dcf5d19b278b39951b6c802a1a0961741e917c6807c3b122f22bb2a35b3f1648b
 Size (github.com_pierrec_lz4_v4_@v_v4.1.8.mod) = 42 bytes
 BLAKE2s (github.com_pierrec_lz4_v4_@v_v4.1.8.zip) = 129157a0ed8a617c7231d94e50148701979067398a53e3e50c78313e4a3f8eea
 SHA512 (github.com_pierrec_lz4_v4_@v_v4.1.8.zip) = c6faa9955eb0568f825605e2a1458fbd0082d8ba99c7d16b3bf363184a83a6ec25a1e96d562136d2236fd9fbc69fc5dbef17aefd2d879fd779e223d5ab62c566
 Size (github.com_pierrec_lz4_v4_@v_v4.1.8.zip) = 34056707 bytes
+BLAKE2s (github.com_pires_go-proxyproto_@v_v0.6.1.mod) = 95cef4c2e291453115f88b8d1d841c463837a99e5b3b3768a8d1b3bfcdd661c5
+SHA512 (github.com_pires_go-proxyproto_@v_v0.6.1.mod) = 6046c371161ab696a3021ad1cfb98b7ec6fd463366ff633686df0acc4515af110d73376b292a81de6333faf4502ede82e0aeb8fadf5f304a26c5dace6121c6d1
+Size (github.com_pires_go-proxyproto_@v_v0.6.1.mod) = 47 bytes
+BLAKE2s (github.com_pires_go-proxyproto_@v_v0.6.1.zip) = 6677e8bf040ac27dbc7d60ee9252e1f0030b652cdc79865a426e55ae394f1a10
+SHA512 (github.com_pires_go-proxyproto_@v_v0.6.1.zip) = cd1d90ead973960e8e28e4ebd0c0e6fb6bdeb57c2e910abc904b904b467c13350a474ed8f9f4deeeff2b42cdab04feaa8a9011f811ec7e3c962ead58fc0c38b2
+Size (github.com_pires_go-proxyproto_@v_v0.6.1.zip) = 51837 bytes
 BLAKE2s (github.com_pkg_browser_@v_v0.0.0-20180916011732-0a3d74bf9ce4.mod) = 1d4654b6b165d41d130bc647218bd5ee8f5e7c36c18e15c158352b852baa3c00
 SHA512 (github.com_pkg_browser_@v_v0.0.0-20180916011732-0a3d74bf9ce4.mod) = c084d8b2c486f343a891b3b2d21200f80161f2ba1303ae17f7a482949b1c10562e7f87ca44b4258d32a1743b0eb66f842bc184d80fe349e9deb965215ab98b2c
 Size (github.com_pkg_browser_@v_v0.0.0-20180916011732-0a3d74bf9ce4.mod) = 30 bytes
@@ -4653,9 +4686,12 @@ Size (github.com_prometheus_client_golang_@v_v1.1.0.mod) = 357 bytes
 BLAKE2s (github.com_prometheus_client_golang_@v_v1.11.0.mod) = 618e7101a84f3bea8ac165d059b85c30e88a3d4c730dc37a8a14f78c031360b3
 SHA512 (github.com_prometheus_client_golang_@v_v1.11.0.mod) = 9c6244491c9a3012c4a2e575cdb361f7fa577f391ced254adfd8d567c361f073ce23ddd57a0f18ec3327189cf97ad737254c0d0ef2872085af6af7bf9dec1d72
 Size (github.com_prometheus_client_golang_@v_v1.11.0.mod) = 468 bytes
-BLAKE2s (github.com_prometheus_client_golang_@v_v1.11.0.zip) = 4bee9711619cac3d9f7df8e5d0c2ee71bfb90749123aaac6aee0526894598de9
-SHA512 (github.com_prometheus_client_golang_@v_v1.11.0.zip) = 20c4e6baf239cbc8c8a754ec1b9ee814ff29df1b41332f75f7440b27864bc28397071f3f4d60ba6ff4d0aa531b7a20857e11ecca93057784f76f03876151e8f8
-Size (github.com_prometheus_client_golang_@v_v1.11.0.zip) = 240896 bytes
+BLAKE2s (github.com_prometheus_client_golang_@v_v1.11.1.mod) = 618e7101a84f3bea8ac165d059b85c30e88a3d4c730dc37a8a14f78c031360b3
+SHA512 (github.com_prometheus_client_golang_@v_v1.11.1.mod) = 9c6244491c9a3012c4a2e575cdb361f7fa577f391ced254adfd8d567c361f073ce23ddd57a0f18ec3327189cf97ad737254c0d0ef2872085af6af7bf9dec1d72
+Size (github.com_prometheus_client_golang_@v_v1.11.1.mod) = 468 bytes
+BLAKE2s (github.com_prometheus_client_golang_@v_v1.11.1.zip) = 0cece06864b145f2db196aa34c0c8f1971353ea1ac84686264e6b2d257473b97
+SHA512 (github.com_prometheus_client_golang_@v_v1.11.1.zip) = c1728a4ad6dfbc97c4177501e3b0986365a19d23130057957b471a175c87673bdcb7692cb50b8ca56823d0f76ebea690c407f7b06367e2f8b5fb2f56faddd679
+Size (github.com_prometheus_client_golang_@v_v1.11.1.zip) = 244278 bytes
 BLAKE2s (github.com_prometheus_client_golang_@v_v1.4.0.mod) = 162e936d4df100bce8cdf55ee36c1fc08cb66134dd12f57d97508b9681c957ec
 SHA512 (github.com_prometheus_client_golang_@v_v1.4.0.mod) = 46eb82a74b845f5eda8cd01e8ae182e5dec7867306b31a40cb5c6bb9df2045c3259070b57388cc7826f54ee7b9fddaf980436f74ed500ab88748a13f12b30ff8
 Size (github.com_prometheus_client_golang_@v_v1.4.0.mod) = 612 bytes
@@ -5190,9 +5226,12 @@ Size (github.com_ulikunitz_xz_@v_v0.5.10.mod) = 40 bytes
 BLAKE2s (github.com_ulikunitz_xz_@v_v0.5.10.zip) = 5a71bfa9e72332d4a4101dd212096133a7b3afda39d64736926ffa12fdf74402
 SHA512 (github.com_ulikunitz_xz_@v_v0.5.10.zip) = 386c47dd999ebd2551297c76bbac1d110d859f9d503996908971e258ea4d0e35fc0c9d5ac26fcf6d574cfc8264e126536ea1b85b404fabccc216aeab82c10abe
 Size (github.com_ulikunitz_xz_@v_v0.5.10.zip) = 514051 bytes
-BLAKE2s (github.com_ulikunitz_xz_@v_v0.5.6.mod) = 4356defc5379efaf434b25b0f0d6492decbb0c48a4d061ac57cb86e25f1a44dd
-SHA512 (github.com_ulikunitz_xz_@v_v0.5.6.mod) = 33639405743ddf22f19ca03d348c47d9cf963aa151fdab9e7303679ccd5cec373ceebce456eb96ef52dcf933f96e4ef7d4a8099822dfc183996d8cd4f09cba2e
-Size (github.com_ulikunitz_xz_@v_v0.5.6.mod) = 31 bytes
+BLAKE2s (github.com_ulikunitz_xz_@v_v0.5.8.mod) = 9b4f34082513801e62e744c626be31f00dd7d0b2f81ec14710f90412be1f521a
+SHA512 (github.com_ulikunitz_xz_@v_v0.5.8.mod) = fc06f111ad8fe91b6233781e300d3abe760140633f45c51fc7b93c744b870f66727d12132e692b5d59526fddd1f728d7a18976e392052d9fe362d3a39149cbb1
+Size (github.com_ulikunitz_xz_@v_v0.5.8.mod) = 40 bytes
+BLAKE2s (github.com_ulikunitz_xz_@v_v0.5.9.mod) = 9b4f34082513801e62e744c626be31f00dd7d0b2f81ec14710f90412be1f521a
+SHA512 (github.com_ulikunitz_xz_@v_v0.5.9.mod) = fc06f111ad8fe91b6233781e300d3abe760140633f45c51fc7b93c744b870f66727d12132e692b5d59526fddd1f728d7a18976e392052d9fe362d3a39149cbb1
+Size (github.com_ulikunitz_xz_@v_v0.5.9.mod) = 40 bytes
 BLAKE2s (github.com_urfave_cli_@v_v0.0.0-20171014202726-7bc6a0acffa5.mod) = 5d9d73afb4ac8334d1bea7f9dc00f2667bafb61d4a05101636e6636aac79f734
 SHA512 (github.com_urfave_cli_@v_v0.0.0-20171014202726-7bc6a0acffa5.mod) = 5edcf2aac39658fc7e60d5086b066470c6d6213b66a2432bc35c6f67b8cb37a66a67fd97cdd4b8fa1b8b1bddfd544e4aa9838cec06806b89f8e1447e3c61bd2a
 Size (github.com_urfave_cli_@v_v0.0.0-20171014202726-7bc6a0acffa5.mod) = 29 bytes
@@ -5934,6 +5973,9 @@ Size (golang.org_x_net_@v_v0.0.0-20210226172049-e18ecbb05110.mod) = 179 bytes
 BLAKE2s (golang.org_x_net_@v_v0.0.0-20210405180319-a5a99cb37ef4.mod) = 308e63bc16bf68f09e4e109894b62d3f3e73f824ecb15633ef1614bb0101370f
 SHA512 (golang.org_x_net_@v_v0.0.0-20210405180319-a5a99cb37ef4.mod) = f48731641ffad3b90daf0a8bb79fdfc607c076961dbda1c51e71eab787dca0681e5984ffce048bd655ceb56052fa64426b30b32e6ee32957c92418a16d1c9f06
 Size (golang.org_x_net_@v_v0.0.0-20210405180319-a5a99cb37ef4.mod) = 179 bytes
+BLAKE2s (golang.org_x_net_@v_v0.0.0-20210410081132-afb366fc7cd1.mod) = 42954ba8d7a37d4b3d6eb1e99bb1a0db601a61bbbe896c0f4e09b722c7555ae2
+SHA512 (golang.org_x_net_@v_v0.0.0-20210410081132-afb366fc7cd1.mod) = ea5604f4e47cf196e4ab474016327b04c27aab3ef394d19f15a0a34d763f659c1764dea0554de8afbc9ec28168681f1ea1e03a6ef64fc1355f0e0d7c4ef709a1
+Size (golang.org_x_net_@v_v0.0.0-20210410081132-afb366fc7cd1.mod) = 179 bytes
 BLAKE2s (golang.org_x_net_@v_v0.0.0-20210428140749-89ef3d95e781.mod) = 357b1fba3ddbdd97bb7d3cc00de9364fd85c7a89906c6c1fec91303d93fbb1a2
 SHA512 (golang.org_x_net_@v_v0.0.0-20210428140749-89ef3d95e781.mod) = 98c9784c584e8141a9a51bfa8e4b361f3b8a62b83a922ee4fc02e0da396250d6d4d0ccd2a8ac6d1dda8e445859d09760010296191e95b86e15088425a2989b0c
 Size (golang.org_x_net_@v_v0.0.0-20210428140749-89ef3d95e781.mod) = 179 bytes
@@ -6939,6 +6981,9 @@ Size (google.golang.org_genproto_@v_v0.0.0-20210602131652-f16073e35f0c.mod) = 27
 BLAKE2s (google.golang.org_genproto_@v_v0.0.0-20210630183607-d20f26d13c79.mod) = 2bfb2a0711616487ab39040c9597f4d0f238cb84a03c44248be6e13eb055d0fc
 SHA512 (google.golang.org_genproto_@v_v0.0.0-20210630183607-d20f26d13c79.mod) = 1b4467303a5fbda81de012e71092124c242ec12e5fb4e4b3a32a7e273ab1a7b50e4dafe233294a7a49edc3fb6158133c571e8f3f8946e0e6ed246df833edb73d
 Size (google.golang.org_genproto_@v_v0.0.0-20210630183607-d20f26d13c79.mod) = 278 bytes
+BLAKE2s (google.golang.org_genproto_@v_v0.0.0-20211008145708-270636b82663.mod) = 9426b1a7815bd0c5e070fe8c9cb3eb44599d0df0b39a54fd7f32b91f535c9563
+SHA512 (google.golang.org_genproto_@v_v0.0.0-20211008145708-270636b82663.mod) = d9c46bcb8546f671cc357a13b336eeef2ef6d2f5a9241397b56e29c66e9bcccad754dda28b47d8beaea0d2453c4370bc4d7d941411aca3d7fbab0b4545c04f0d
+Size (google.golang.org_genproto_@v_v0.0.0-20211008145708-270636b82663.mod) = 327 bytes
 BLAKE2s (google.golang.org_genproto_@v_v0.0.0-20211021150943-2b146023228c.mod) = 9426b1a7815bd0c5e070fe8c9cb3eb44599d0df0b39a54fd7f32b91f535c9563
 SHA512 (google.golang.org_genproto_@v_v0.0.0-20211021150943-2b146023228c.mod) = d9c46bcb8546f671cc357a13b336eeef2ef6d2f5a9241397b56e29c66e9bcccad754dda28b47d8beaea0d2453c4370bc4d7d941411aca3d7fbab0b4545c04f0d
 Size (google.golang.org_genproto_@v_v0.0.0-20211021150943-2b146023228c.mod) = 327 bytes
@@ -7563,6 +7608,6 @@ Size (sigs.k8s.io_yaml_@v_v1.2.0.mod) = 106 bytes
 BLAKE2s (sigs.k8s.io_yaml_@v_v1.2.0.zip) = 196614bfe35a861524f0dd2e2e0b63fbd650b889bab18114f167720f05506b70
 SHA512 (sigs.k8s.io_yaml_@v_v1.2.0.zip) = 52a52b3d380ae6e2cbe1b2c849d3089f74aa876fb3fadfbd02eada97446e0f2cf387f10ddb527f2dfefd57dccba8c82b0b349efbecaa0e6e3d00dc2b5d4fc21e
 Size (sigs.k8s.io_yaml_@v_v1.2.0.zip) = 20937 bytes
-BLAKE2s (vault-1.9.4.tar.gz) = 7494027ce0711202b72f1816fdcb6ff0273dcc1f5f0df835c31b90b61442adfd
-SHA512 (vault-1.9.4.tar.gz) = 5e20a4b1368e9901b180c50f3b386b676899b5d840d03e20fea0d399e81b851ef4f6450673d2886718fb794782613f6911c81104bf9e8f771689a85a4d623b95
-Size (vault-1.9.4.tar.gz) = 23473843 bytes
+BLAKE2s (vault-1.10.0.tar.gz) = 88ec94890786d19a4f0208a3cdf8b9fc130eb97622642c9604b2c7848a8c5940
+SHA512 (vault-1.10.0.tar.gz) = 3afce0d94435982ec31b53ff75bc86b6f6030cee28ab2743c3fbbb34314043f511506f51e19d5a536860f020f4f5bd72e1b0e42a1cf4fd9759b9e3a333cc785a
+Size (vault-1.10.0.tar.gz) = 26202612 bytes
diff --git a/vault/go-modules.mk b/vault/go-modules.mk
index 4c07105020..8e00630f2b 100644
--- a/vault/go-modules.mk
+++ b/vault/go-modules.mk
@@ -212,6 +212,8 @@ GO_MODULE_FILES+=	github.com/aliyun/alibaba-cloud-sdk-go/@v/v0.0.0-2019062016092
 GO_MODULE_FILES+=	github.com/aliyun/alibaba-cloud-sdk-go/@v/v0.0.0-20190620160927-9418d7b0cd0f.zip
 GO_MODULE_FILES+=	github.com/aliyun/aliyun-oss-go-sdk/@v/v0.0.0-20190307165228-86c17b95fcd5.mod
 GO_MODULE_FILES+=	github.com/aliyun/aliyun-oss-go-sdk/@v/v0.0.0-20190307165228-86c17b95fcd5.zip
+GO_MODULE_FILES+=	github.com/andybalholm/brotli/@v/v1.0.1.mod
+GO_MODULE_FILES+=	github.com/andybalholm/brotli/@v/v1.0.1.zip
 GO_MODULE_FILES+=	github.com/antihax/optional/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/antihax/optional/@v/v1.0.0.zip
 GO_MODULE_FILES+=	github.com/apache/arrow/go/arrow/@v/v0.0.0-20210818145353-234c94e4ce64.mod
@@ -231,8 +233,6 @@ GO_MODULE_FILES+=	github.com/armon/go-metrics/@v/v0.3.10.mod
 GO_MODULE_FILES+=	github.com/armon/go-metrics/@v/v0.3.10.zip
 GO_MODULE_FILES+=	github.com/armon/go-metrics/@v/v0.3.4.mod
 GO_MODULE_FILES+=	github.com/armon/go-metrics/@v/v0.3.9.mod
-GO_MODULE_FILES+=	github.com/armon/go-proxyproto/@v/v0.0.0-20210323213023-7e956b284f0a.mod
-GO_MODULE_FILES+=	github.com/armon/go-proxyproto/@v/v0.0.0-20210323213023-7e956b284f0a.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
@@ -579,8 +579,8 @@ GO_MODULE_FILES+=	github.com/docker/spdystream/@v/v0.0.0-20160310174837-449fdfce
 GO_MODULE_FILES+=	github.com/docker/spdystream/@v/v0.0.0-20160310174837-449fdfce4d96.zip
 GO_MODULE_FILES+=	github.com/docopt/docopt-go/@v/v0.0.0-20180111231733-ee0de3bc6815.mod
 GO_MODULE_FILES+=	github.com/docopt/docopt-go/@v/v0.0.0-20180111231733-ee0de3bc6815.zip
-GO_MODULE_FILES+=	github.com/dsnet/compress/@v/v0.0.1.mod
-GO_MODULE_FILES+=	github.com/dsnet/compress/@v/v0.0.1.zip
+GO_MODULE_FILES+=	github.com/dsnet/compress/@v/v0.0.2-0.20210315054119-f66993602bf5.mod
+GO_MODULE_FILES+=	github.com/dsnet/compress/@v/v0.0.2-0.20210315054119-f66993602bf5.zip
 GO_MODULE_FILES+=	github.com/dsnet/golib/@v/v0.0.0-20171103203638-1ea166775780.mod
 GO_MODULE_FILES+=	github.com/dsnet/golib/@v/v0.0.0-20171103203638-1ea166775780.zip
 GO_MODULE_FILES+=	github.com/duosecurity/duo_api_golang/@v/v0.0.0-20190308151101-6c680f768e74.mod
@@ -933,8 +933,8 @@ GO_MODULE_FILES+=	github.com/hashicorp/cap/@v/v0.1.1.mod
 GO_MODULE_FILES+=	github.com/hashicorp/cap/@v/v0.1.1.zip
 GO_MODULE_FILES+=	github.com/hashicorp/consul-template/@v/v0.27.2-0.20211014231529-4ff55381f1c4.mod
 GO_MODULE_FILES+=	github.com/hashicorp/consul-template/@v/v0.27.2-0.20211014231529-4ff55381f1c4.zip
-GO_MODULE_FILES+=	github.com/hashicorp/consul/api/@v/v1.11.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/consul/api/@v/v1.11.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/consul/api/@v/v1.12.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/consul/api/@v/v1.12.0.zip
 GO_MODULE_FILES+=	github.com/hashicorp/consul/api/@v/v1.4.0.mod
 GO_MODULE_FILES+=	github.com/hashicorp/consul/sdk/@v/v0.1.1.mod
 GO_MODULE_FILES+=	github.com/hashicorp/consul/sdk/@v/v0.4.0.mod
@@ -972,8 +972,8 @@ 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.3.0.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-immutable-radix/@v/v1.3.1.mod
 GO_MODULE_FILES+=	github.com/hashicorp/go-immutable-radix/@v/v1.3.1.zip
-GO_MODULE_FILES+=	github.com/hashicorp/go-kms-wrapping/@v/v0.6.8.mod
-GO_MODULE_FILES+=	github.com/hashicorp/go-kms-wrapping/@v/v0.6.8.zip
+GO_MODULE_FILES+=	github.com/hashicorp/go-kms-wrapping/@v/v0.7.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/go-kms-wrapping/@v/v0.7.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.3.2.mod
@@ -1058,10 +1058,12 @@ 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.0.mod
 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.4.mod
+GO_MODULE_FILES+=	github.com/hashicorp/mdns/@v/v1.0.4.zip
 GO_MODULE_FILES+=	github.com/hashicorp/memberlist/@v/v0.1.3.mod
 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/memberlist/@v/v0.3.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/memberlist/@v/v0.3.0.zip
 GO_MODULE_FILES+=	github.com/hashicorp/nomad/api/@v/v0.0.0-20211006193434-215bf04bc650.mod
 GO_MODULE_FILES+=	github.com/hashicorp/nomad/api/@v/v0.0.0-20211006193434-215bf04bc650.zip
 GO_MODULE_FILES+=	github.com/hashicorp/raft-autopilot/@v/v0.1.3.mod
@@ -1080,54 +1082,54 @@ GO_MODULE_FILES+=	github.com/hashicorp/raft/@v/v1.3.3.mod
 GO_MODULE_FILES+=	github.com/hashicorp/raft/@v/v1.3.3.zip
 GO_MODULE_FILES+=	github.com/hashicorp/serf/@v/v0.8.2.mod
 GO_MODULE_FILES+=	github.com/hashicorp/serf/@v/v0.9.4.mod
-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-plugin-auth-alicloud/@v/v0.10.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-alicloud/@v/v0.10.0.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-azure/@v/v0.9.4.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-azure/@v/v0.9.4.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-centrify/@v/v0.10.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-centrify/@v/v0.10.0.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-cf/@v/v0.10.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-cf/@v/v0.10.0.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-gcp/@v/v0.11.3.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-gcp/@v/v0.11.3.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-jwt/@v/v0.11.4.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-jwt/@v/v0.11.4.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-kerberos/@v/v0.5.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-kerberos/@v/v0.5.0.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-kubernetes/@v/v0.11.7.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-kubernetes/@v/v0.11.7.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-oci/@v/v0.9.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-oci/@v/v0.9.0.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-couchbase/@v/v0.5.1.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-couchbase/@v/v0.5.1.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-elasticsearch/@v/v0.9.1.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-elasticsearch/@v/v0.9.1.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-mongodbatlas/@v/v0.5.1.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-mongodbatlas/@v/v0.5.1.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-snowflake/@v/v0.3.1.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-snowflake/@v/v0.3.1.zip
+GO_MODULE_FILES+=	github.com/hashicorp/serf/@v/v0.9.6.mod
+GO_MODULE_FILES+=	github.com/hashicorp/serf/@v/v0.9.6.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-alicloud/@v/v0.11.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-alicloud/@v/v0.11.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-azure/@v/v0.10.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-azure/@v/v0.10.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-centrify/@v/v0.11.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-centrify/@v/v0.11.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-cf/@v/v0.11.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-cf/@v/v0.11.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-gcp/@v/v0.12.1.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-gcp/@v/v0.12.1.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-jwt/@v/v0.12.1.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-jwt/@v/v0.12.1.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-kerberos/@v/v0.6.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-kerberos/@v/v0.6.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-kubernetes/@v/v0.12.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-kubernetes/@v/v0.12.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-oci/@v/v0.10.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-auth-oci/@v/v0.10.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-couchbase/@v/v0.6.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-couchbase/@v/v0.6.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-elasticsearch/@v/v0.10.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-elasticsearch/@v/v0.10.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-mongodbatlas/@v/v0.6.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-mongodbatlas/@v/v0.6.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-snowflake/@v/v0.4.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-database-snowflake/@v/v0.4.0.zip
 GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-mock/@v/v0.16.1.mod
 GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-mock/@v/v0.16.1.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-ad/@v/v0.11.1.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-ad/@v/v0.11.1.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-alicloud/@v/v0.10.2.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-alicloud/@v/v0.10.2.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-azure/@v/v0.11.4.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-azure/@v/v0.11.4.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-gcp/@v/v0.11.2.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-gcp/@v/v0.11.2.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-gcpkms/@v/v0.10.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-gcpkms/@v/v0.10.0.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-kv/@v/v0.10.1.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-kv/@v/v0.10.1.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-mongodbatlas/@v/v0.5.1.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-mongodbatlas/@v/v0.5.1.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-openldap/@v/v0.6.1.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-openldap/@v/v0.6.1.zip
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-terraform/@v/v0.3.0.mod
-GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-terraform/@v/v0.3.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-ad/@v/v0.12.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-ad/@v/v0.12.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-alicloud/@v/v0.11.1.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-alicloud/@v/v0.11.1.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-azure/@v/v0.12.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-azure/@v/v0.12.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-gcp/@v/v0.12.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-gcp/@v/v0.12.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-gcpkms/@v/v0.11.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-gcpkms/@v/v0.11.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-kv/@v/v0.11.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-kv/@v/v0.11.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-mongodbatlas/@v/v0.6.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-mongodbatlas/@v/v0.6.0.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-openldap/@v/v0.7.1.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-openldap/@v/v0.7.1.zip
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-terraform/@v/v0.4.0.mod
+GO_MODULE_FILES+=	github.com/hashicorp/vault-plugin-secrets-terraform/@v/v0.4.0.zip
 GO_MODULE_FILES+=	github.com/hashicorp/vault-testing-stepwise/@v/v0.1.1.mod
 GO_MODULE_FILES+=	github.com/hashicorp/vault-testing-stepwise/@v/v0.1.2.mod
 GO_MODULE_FILES+=	github.com/hashicorp/vault-testing-stepwise/@v/v0.1.2.zip
@@ -1154,8 +1156,8 @@ GO_MODULE_FILES+=	github.com/imdario/mergo/@v/v0.3.6.mod
 GO_MODULE_FILES+=	github.com/imdario/mergo/@v/v0.3.8.mod
 GO_MODULE_FILES+=	github.com/inconshreveable/mousetrap/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/inconshreveable/mousetrap/@v/v1.0.0.zip
-GO_MODULE_FILES+=	github.com/influxdata/influxdb/@v/v0.0.0-20190411212539-d24b7ba8c4c4.mod
-GO_MODULE_FILES+=	github.com/influxdata/influxdb/@v/v0.0.0-20190411212539-d24b7ba8c4c4.zip
+GO_MODULE_FILES+=	github.com/influxdata/influxdb1-client/@v/v0.0.0-20200827194710-b269163b24ab.mod
+GO_MODULE_FILES+=	github.com/influxdata/influxdb1-client/@v/v0.0.0-20200827194710-b269163b24ab.zip
 GO_MODULE_FILES+=	github.com/j-keck/arping/@v/v0.0.0-20160618110441-2cf9dc699c56.mod
 GO_MODULE_FILES+=	github.com/j-keck/arping/@v/v0.0.0-20160618110441-2cf9dc699c56.zip
 GO_MODULE_FILES+=	github.com/jackc/fake/@v/v0.0.0-20150926172116-812a484cc733.mod
@@ -1239,6 +1241,7 @@ GO_MODULE_FILES+=	github.com/kisielk/gotool/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/kisielk/gotool/@v/v1.0.0.zip
 GO_MODULE_FILES+=	github.com/klauspost/compress/@v/v1.11.13.mod
 GO_MODULE_FILES+=	github.com/klauspost/compress/@v/v1.11.3.mod
+GO_MODULE_FILES+=	github.com/klauspost/compress/@v/v1.11.4.mod
 GO_MODULE_FILES+=	github.com/klauspost/compress/@v/v1.13.1.mod
 GO_MODULE_FILES+=	github.com/klauspost/compress/@v/v1.13.4.mod
 GO_MODULE_FILES+=	github.com/klauspost/compress/@v/v1.13.6.mod
@@ -1246,6 +1249,8 @@ GO_MODULE_FILES+=	github.com/klauspost/compress/@v/v1.13.6.zip
 GO_MODULE_FILES+=	github.com/klauspost/compress/@v/v1.4.1.mod
 GO_MODULE_FILES+=	github.com/klauspost/cpuid/@v/v1.2.0.mod
 GO_MODULE_FILES+=	github.com/klauspost/cpuid/@v/v1.2.0.zip
+GO_MODULE_FILES+=	github.com/klauspost/pgzip/@v/v1.2.5.mod
+GO_MODULE_FILES+=	github.com/klauspost/pgzip/@v/v1.2.5.zip
 GO_MODULE_FILES+=	github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.mod
 GO_MODULE_FILES+=	github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.2.mod
 GO_MODULE_FILES+=	github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.3.mod
@@ -1317,8 +1322,8 @@ GO_MODULE_FILES+=	github.com/matttproud/golang_protobuf_extensions/@v/v1.0.2-0.2
 GO_MODULE_FILES+=	github.com/matttproud/golang_protobuf_extensions/@v/v1.0.2-0.20181231171920-c182affec369.zip
 GO_MODULE_FILES+=	github.com/maxbrunsfeld/counterfeiter/v6/@v/v6.2.2.mod
 GO_MODULE_FILES+=	github.com/maxbrunsfeld/counterfeiter/v6/@v/v6.2.2.zip
-GO_MODULE_FILES+=	github.com/mholt/archiver/@v/v3.1.1+incompatible.mod
-GO_MODULE_FILES+=	github.com/mholt/archiver/@v/v3.1.1+incompatible.zip
+GO_MODULE_FILES+=	github.com/mholt/archiver/v3/@v/v3.5.1.mod
+GO_MODULE_FILES+=	github.com/mholt/archiver/v3/@v/v3.5.1.zip
 GO_MODULE_FILES+=	github.com/michaelklishin/rabbit-hole/v2/@v/v2.11.0.mod
 GO_MODULE_FILES+=	github.com/michaelklishin/rabbit-hole/v2/@v/v2.11.0.zip
 GO_MODULE_FILES+=	github.com/miekg/dns/@v/v1.0.14.mod
@@ -1327,6 +1332,8 @@ GO_MODULE_FILES+=	github.com/miekg/dns/@v/v1.1.41.mod
 GO_MODULE_FILES+=	github.com/miekg/dns/@v/v1.1.41.zip
 GO_MODULE_FILES+=	github.com/miekg/pkcs11/@v/v1.0.3.mod
 GO_MODULE_FILES+=	github.com/miekg/pkcs11/@v/v1.0.3.zip
+GO_MODULE_FILES+=	github.com/mikesmitty/edkey/@v/v0.0.0-20170222072505-3356ea4e686a.mod
+GO_MODULE_FILES+=	github.com/mikesmitty/edkey/@v/v0.0.0-20170222072505-3356ea4e686a.zip
 GO_MODULE_FILES+=	github.com/mistifyio/go-zfs/@v/v2.1.2-0.20190413222219-f784269be439+incompatible.mod
 GO_MODULE_FILES+=	github.com/mistifyio/go-zfs/@v/v2.1.2-0.20190413222219-f784269be439+incompatible.zip
 GO_MODULE_FILES+=	github.com/mitchellh/cli/@v/v1.0.0.mod
@@ -1417,6 +1424,7 @@ GO_MODULE_FILES+=	github.com/nicolai86/scaleway-sdk/@v/v1.10.2-0.20180628010248-
 GO_MODULE_FILES+=	github.com/nicolai86/scaleway-sdk/@v/v1.10.2-0.20180628010248-798f60e20bb2.zip
 GO_MODULE_FILES+=	github.com/niemeyer/pretty/@v/v0.0.0-20200227124842-a10e7caefd8e.mod
 GO_MODULE_FILES+=	github.com/niemeyer/pretty/@v/v0.0.0-20200227124842-a10e7caefd8e.zip
+GO_MODULE_FILES+=	github.com/nwaples/rardecode/@v/v1.1.0.mod
 GO_MODULE_FILES+=	github.com/nwaples/rardecode/@v/v1.1.2.mod
 GO_MODULE_FILES+=	github.com/nwaples/rardecode/@v/v1.1.2.zip
 GO_MODULE_FILES+=	github.com/nxadm/tail/@v/v1.4.4.mod
@@ -1522,8 +1530,11 @@ GO_MODULE_FILES+=	github.com/pierrec/lz4/@v/v2.2.6+incompatible.mod
 GO_MODULE_FILES+=	github.com/pierrec/lz4/@v/v2.5.2+incompatible.mod
 GO_MODULE_FILES+=	github.com/pierrec/lz4/@v/v2.6.1+incompatible.mod
 GO_MODULE_FILES+=	github.com/pierrec/lz4/@v/v2.6.1+incompatible.zip
+GO_MODULE_FILES+=	github.com/pierrec/lz4/v4/@v/v4.1.2.mod
 GO_MODULE_FILES+=	github.com/pierrec/lz4/v4/@v/v4.1.8.mod
 GO_MODULE_FILES+=	github.com/pierrec/lz4/v4/@v/v4.1.8.zip
+GO_MODULE_FILES+=	github.com/pires/go-proxyproto/@v/v0.6.1.mod
+GO_MODULE_FILES+=	github.com/pires/go-proxyproto/@v/v0.6.1.zip
 GO_MODULE_FILES+=	github.com/pkg/browser/@v/v0.0.0-20180916011732-0a3d74bf9ce4.mod
 GO_MODULE_FILES+=	github.com/pkg/browser/@v/v0.0.0-20210706143420-7d21f8c997e2.mod
 GO_MODULE_FILES+=	github.com/pkg/browser/@v/v0.0.0-20210911075715-681adbf594b8.mod
@@ -1551,7 +1562,8 @@ GO_MODULE_FILES+=	github.com/prometheus/client_golang/@v/v0.9.3.mod
 GO_MODULE_FILES+=	github.com/prometheus/client_golang/@v/v1.0.0.mod
 GO_MODULE_FILES+=	github.com/prometheus/client_golang/@v/v1.1.0.mod
 GO_MODULE_FILES+=	github.com/prometheus/client_golang/@v/v1.11.0.mod
-GO_MODULE_FILES+=	github.com/prometheus/client_golang/@v/v1.11.0.zip
+GO_MODULE_FILES+=	github.com/prometheus/client_golang/@v/v1.11.1.mod
+GO_MODULE_FILES+=	github.com/prometheus/client_golang/@v/v1.11.1.zip
 GO_MODULE_FILES+=	github.com/prometheus/client_golang/@v/v1.4.0.mod
 GO_MODULE_FILES+=	github.com/prometheus/client_golang/@v/v1.7.1.mod
 GO_MODULE_FILES+=	github.com/prometheus/client_model/@v/v0.0.0-20171117100541-99fa1f4be8e5.mod
@@ -1730,7 +1742,8 @@ GO_MODULE_FILES+=	github.com/ugorji/go/codec/@v/v0.0.0-20181204163529-d75b2dcb6b
 GO_MODULE_FILES+=	github.com/ugorji/go/codec/@v/v0.0.0-20181204163529-d75b2dcb6bc8.zip
 GO_MODULE_FILES+=	github.com/ulikunitz/xz/@v/v0.5.10.mod
 GO_MODULE_FILES+=	github.com/ulikunitz/xz/@v/v0.5.10.zip
-GO_MODULE_FILES+=	github.com/ulikunitz/xz/@v/v0.5.6.mod
+GO_MODULE_FILES+=	github.com/ulikunitz/xz/@v/v0.5.8.mod
+GO_MODULE_FILES+=	github.com/ulikunitz/xz/@v/v0.5.9.mod
 GO_MODULE_FILES+=	github.com/urfave/cli/@v/v0.0.0-20171014202726-7bc6a0acffa5.mod
 GO_MODULE_FILES+=	github.com/urfave/cli/@v/v1.20.0.mod
 GO_MODULE_FILES+=	github.com/urfave/cli/@v/v1.22.1.mod
@@ -1978,6 +1991,7 @@ GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20201110031124-69a78807bb2b.mod
 GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20201224014010-6772e930b67b.mod
 GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20210226172049-e18ecbb05110.mod
 GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20210405180319-a5a99cb37ef4.mod
+GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20210410081132-afb366fc7cd1.mod
 GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20210428140749-89ef3d95e781.mod
 GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20210503060351-7fd8e65b6420.mod
 GO_MODULE_FILES+=	golang.org/x/net/@v/v0.0.0-20210505024714-0287a6fb4125.mod
@@ -2313,6 +2327,7 @@ GO_MODULE_FILES+=	google.golang.org/genproto/@v/v0.0.0-20201019141844-1ed22bb0c1
 GO_MODULE_FILES+=	google.golang.org/genproto/@v/v0.0.0-20201110150050-8816d57aaa9a.mod
 GO_MODULE_FILES+=	google.golang.org/genproto/@v/v0.0.0-20210602131652-f16073e35f0c.mod
 GO_MODULE_FILES+=	google.golang.org/genproto/@v/v0.0.0-20210630183607-d20f26d13c79.mod
+GO_MODULE_FILES+=	google.golang.org/genproto/@v/v0.0.0-20211008145708-270636b82663.mod
 GO_MODULE_FILES+=	google.golang.org/genproto/@v/v0.0.0-20211021150943-2b146023228c.mod
 GO_MODULE_FILES+=	google.golang.org/genproto/@v/v0.0.0-20220207185906-7721543eae58.mod
 GO_MODULE_FILES+=	google.golang.org/genproto/@v/v0.0.0-20220207185906-7721543eae58.zip


Home | Main Index | Thread Index | Old Index