pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www/hugo hugo: Update to 0.96.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5c441ac572c3
branches:  trunk
changeset: 376655:5c441ac572c3
user:      nikita <nikita%pkgsrc.org@localhost>
date:      Sun Apr 10 21:16:34 2022 +0000

description:
hugo: Update to 0.96.0

Changelog taken from https://github.com/gohugoio/hugo/releases

v0.96.0

Vertical merging of content mounts. The main topic of this release is
about file mounts (see #9693). We have had a powerful and well defined
merge strategy for the union filesystems for the Hugo Modules tree on
the horizontal axis (left to right), but not so much for the vertical
configuration within each module (e.g. multiple content mounts for the
same language). It was @jmooring who pointed out how useful this could
be, and even provided this example where missing translations gets
filled in from other language(s):

#------------------------------------------------------------------------------
# Content mounts
#------------------------------------------------------------------------------

# EN content
[[module.mounts]]
source = 'content/en'
target = 'content'
lang = 'en'

# DE content
[[module.mounts]]
source = 'content/de'
target = 'content'
lang = 'de'

# NL content
[[module.mounts]]
source = 'content/nl'
target = 'content'
lang = 'nl'

#------------------------------------------------------------------------------
# Fill in the missing translations
#------------------------------------------------------------------------------

# This fills in the gaps in DE content with EN content
[[module.mounts]]
source = 'content/en'
target = 'content'
lang = 'de'

# This fills in the gaps in NL content with EN content.
[[module.mounts]]
source = 'content/en'
target = 'content'
lang = 'nl'

Also, we have added some details to the .Err object you get when
resources.GetRemote fails, which can be useful when debugging errrors
(see #9708). Not you can do something like:

{{ with $result := resources.GetRemote $url }}
  {{ with .Err }}
    {{ warnf "%s: %#v" .Error .Data}}
  {{ else }}
    {{ with .Content | unmarshal }}
      {{ warnf "%#v" . }}
    {{ end }}
  {{ end }}
{{ end }}

The .Data object above is a map and currently contains StatusCode,
Status, Body, TransferEncoding, ContentLength, and ContentType.

This release represents 23 contributions by 8 contributors to the main
Hugo code base.@bep leads the Hugo development with a significant
amount of contributions, but also a big shoutout to @jmooring,
@dependabot[bot], and @anthonyfok for their ongoing contributions.
And thanks to @digitalcraftsman for his ongoing work on keeping the
themes site in pristine condition.

Many have also been busy writing and fixing the documentation in
hugoDocs, which has received 5 contributions by 3 contributors.

Notes
    Deprecate .File.Extension 9445968 @sara-meie #9352

Changes
    docs: Regen docshelper db1562e @bep
    docs: Regen CLI docs 5b18e10 @bep
    Deprecate .File.Extension 9445968 @sara-meie #9352
    resources: Add more details to .Err 9202117 @bep #9708
    commands: Change link protocol to https a6fa290 @jmooring
    build(deps): bump github.com/getkin/kin-openapi from 0.91.0 to 0.93.0 0bbc2fb @dependabot[bot]
    tpl/crypto: Add optional encoding arg to hmac function 94e8a90 @jmooring #9709
    Fix typo a461e9d @panakour
    Fix some typos 48c98a8 @cuishuang
    Update CONTRIBUTING.md to use "go install" to install mage bbd455f @anthonyfok
    Dockerfile: Make it build with Go 1.18 8309a2b @anthonyfok
    snap: Make it build with Go 1.18 2b72310 @anthonyfok
    build(deps): bump github.com/yuin/goldmark from 1.4.10 to 1.4.11 13ff4de @dependabot[bot]
    build(deps): bump github.com/spf13/cobra from 1.3.0 to 1.4.0 c3289eb @dependabot[bot]
    commands: Improve server startup to make tests less flaky 9539069 @bep
    all: Use strings.Cut 0e305d6 @bep #9687
    Support '-u=patch' in hugo mod get 5adb81c @LukeDeWaal #9127
    Make sure file mounts higher up wins 1c0e7c1 @bep #9693
    resources/images: Require width and height for Crop, Fill, and Fit cad2d8c @jmooring #9696
    all: gofmt -w -r 'interface{} -> any' . b80853d @bep #9687
    dartsass: Enable deprecation, @warn and @debug logging 423594e @bep #9683
    Use revision etc. from debug.BuildInfo 64afb7c @bep #9680
    releaser: Prepare repository for 0.96.0-DEV 004bec2 @bep

v0.95.0

Even faster, continue and break support, short-circuit of the built-in
and/or-operators. This release upgrades to Go 1.18 which was released
yesterday. This has made Hugo even faster. How much faster will depend
on your site etc., but we have benchmarks that show significant
improvements. But the main reason we're exited about this is the
improvements in Go templates:

There are two new keywords, break and continue. These behaves like you
would expect coming from other programming languages:

{{ range $i, $p := site.RegularPages }}
  {{ if gt $i 2 }}
    {{/* Break out of range, we only want to print the first 3 pages. */}}
    {{ break }}
  {{ end }}
  {{ $p.Title }}
{{ end }}

{{ range $i, $p := site.RegularPages }}
  {{ if eq $i 2 }}
    {{/* Skip the 3rd page. */}}
    {{ continue }}
  {{ end }}
  {{ $p.Title }}
{{ end }}

Also, the two built-in operators/function and and or now
short-circuits, also in line with how && and || behave in other
programming languages. This is useful in situations where the right
side may have side effects (may be nil, is slow to execute etc.):

{{ if and .File (eq .File.Extension "html") }}
{{ end }}

Notes
    Hugo now only builds with Go versions >= 1.18. Note that you do
    not need Go installed to run Hugo, and for Hugo Modules, any
    recent Go version can be used.

Changes
    readme: Add note about Go 1.18 5930173 @bep
    tpl: Pull in Go 1.18 patch that fixes the "no space in {{ continue }} and {{ break }}" bug 3476b53 @bep
    readme: Add a contribution note e792d27 @bep
    github: Make it build with Go 1.18 9d6495d @bep
    tpl: Adjustments and an integration test for Go 1.18 42cc5f8 @bep #9677
    Remove Go 1.17 support a6488e7 @bep #9677
    tpl: Sync go_templates for Go 1.18 65a78ca @bep #9677
    build: Bump to Go 1.18 4d6d1d0 @bep #9677
    dartsass: Improve error message when no read access b60e1bb @bep #9662
    Fix and refactor typos 61cf3c9 @CathrinePaulsen
    Improve server startup/shutdown 31fbc08 @bep #9671
    commands: Improve server tests cebd886 @bep #9647

v0.94.2

This is a bug-fix release that fixes a bug introduced in the bug fix
release yesterday (some HTML comments in Markdown that made the parser
panic):

    deps: Update github.com/yuin/goldmark v1.4.9 => v1.4.10 b37183e @bep #9658

v0.94.1

There are 2 fixes in this release. The first is a fix for a regression
in Goldmark related to HTML comments in Markdown (see #9650). The
other is that we have reverted the --renderToStatic feature and flag,
as it didn't work on Windows. We didn't find any easy fix so that
feature gets pushed to the next release, and then with proper
cross-platform tests.

    docs: Regenerate CLI docs 3bc742b @bep
    deps: Fix Goldmark regression with HTML comments 1a796d7 @bep #9650
    Revert "Allow rendering static files to disk and dynamic to memory in server mode" 64b7b7a @bep #9647
    Revert "Some minor adjustments to the new static filesystem logic" 5ef8a9f @bep
    releaser: Prepare repository for 0.95.0-DEV 3bc3466 @bep


v0.94.0

Up to 20% reduction in build time and memory usage. That is the sales
pitch for this release. In reality it depends (e.g. on how big and
complex your site is), but we have benchmarks and real site tests that
show impressive improvements. It was @quasilyte (see #9386) who tipped
us about this potential. He had tested it with the digitalgov.gov
website with about 20% speedup.

Post Release Update: Hugo users are reporting tremendous speed boosts
of more than 50%.

Continuing on the performance theme, @satotake has implemented a new
hybrid static filesystem for Hugo's development server, which is great
for sites with lots of static content, as it greatly reduces memory
consumption while still keeping the fast render times by writing
dynamic content to memory (the definition of static content in Hugo is
all files mounted in /static and all files in /content that's not
content files or a member of a content bundle). With this update,
there are now 3 filesystem options when starting the server:

    hugo server (default), renders to and serves all files from memory.
    hugo server --renderToDisk, renders to and serves all files from disk.
    hugo server --renderStaticToDisk (the new hybrid mode), renders to and serves static files from disk, dynamic files from memory.

A final note goes to the new linkifyProtocol option in the Goldmark
Configuration (see #9639). The linkify extension is enabled by
default. It turns www.example.org and similar into clickable
links. But before this release, the default protocol used was
http. This is in line with the CommonMark spec, but that doesn't make
much sense in 2022, so now you get https as the default.

This release represents 38 contributions by 4 contributors to the main
Hugo code base.@bep leads the Hugo development with a significant
amount of contributions, but also a big shoutout to @dependabot[bot],
@jmooring, and @satotake for their ongoing contributions.
And thanks to @digitalcraftsman for his ongoing work on keeping the
themes site in pristine condition.

Many have also been busy writing and fixing the documentation in hugoDocs,
which has received 3 contributions by 2 contributors.

Notes
    minifiers: Make keepWhitespace = false default for HTML (note) c97fed0 @jmooring #9456
    We now fail with error when double-rendering text in markdownify/RenderString 4e14cf7 @bep #9570 #8959
    markup/goldmark: Default to https for linkify 5697348 @bep #9639

Changes
    docs: Regenerate docshelper a4ac188 @bep
    Fail with error when double-rendering text in markdownify/RenderString 4e14cf7 @bep #9570 #8959
    markup/goldmark: Default to https for linkify 5697348 @bep #9639
    Add lang attribute to internal alias template f98e570 @jmooring #9586
    minifiers: Make keepWhitespace = false default for HTML (note) c97fed0 @jmooring #9456
    markup/goldmark/codeblocks: Fix slice bounds out of range 53a6210 @bep #9627
    Cache reflect.MethodByName 4576c82 @bep
    releaser: Remove the GitHub link syntax around release contributors ff02d41 @bep #9581
    Some minor adjustments to the new static filesystem logic 63bb2a5 @bep #9625
    Allow rendering static files to disk and dynamic to memory in server mode 7d8011e @satotake #9625
    build(deps): bump github.com/kyokomi/emoji/v2 from 2.2.8 to 2.2.9 b9a1be2 @dependabot[bot]
    build(deps): bump github.com/evanw/esbuild from 0.14.23 to 0.14.25 0978245 @dependabot[bot]
    build(deps): bump github.com/niklasfasching/go-org from 1.6.0 to 1.6.2 ff37df8 @dependabot[bot]
    build(deps): bump github.com/getkin/kin-openapi from 0.90.0 to 0.91.0 5857d55 @dependabot[bot]
    Remove the decorator from the fs used in ReadDir 0e0d672 @bep #9609
    Update stale.yml 19f816f @bep
    build(deps): bump github.com/yuin/goldmark from 1.4.7 to 1.4.8 970f385 @dependabot[bot]
    Remove the examples/ folder 76c1248 @bep
    markup/goldmark: Escape image alt attribute e46e9ce @jmooring #9594
    tpl/transform: Fix it when template.HTML is passes as option to Highlight 0327da0 @bep #9591


v0.93.3

The main motivation behind this release is #9609 -- a reported site
breakage from a regression in ReadDir which with this release is back
to how it worked in 0.92.0.
    Remove the decorator from the fs used in ReadDir
    build(deps): bump github.com/yuin/goldmark from 1.4.7 to 1.4.8

diffstat:

 www/hugo/Makefile      |    6 +-
 www/hugo/distinfo      |  986 +++---------------------------------------------
 www/hugo/go-modules.mk |  328 +---------------
 3 files changed, 104 insertions(+), 1216 deletions(-)

diffs (truncated from 2398 to 300 lines):

diff -r 9978a55b602e -r 5c441ac572c3 www/hugo/Makefile
--- a/www/hugo/Makefile Sun Apr 10 20:54:58 2022 +0000
+++ b/www/hugo/Makefile Sun Apr 10 21:16:34 2022 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.56 2022/03/07 09:14:13 bsiegert Exp $
+# $NetBSD: Makefile,v 1.57 2022/04/10 21:16:34 nikita Exp $
 
-DISTNAME=      hugo-0.93.2
+DISTNAME=      hugo-0.96.0
 PKGNAME=       go-${DISTNAME}
-PKGREVISION=   2
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=gohugoio/}
 CATEGORIES=    www
 GITHUB_TAG=    v${PKGVERSION_NOREV}
@@ -14,6 +13,7 @@
 LICENSE=       apache-2.0
 
 GO_BUILD_PATTERN=      -tags "extended"
+GO_VERSION_DEFAULT=    118
 
 MAKE_ENV+=     "CGO_ENABLED=1"
 MAKE_ENV+=     "CGO_LDFLAGS=-lm"
diff -r 9978a55b602e -r 5c441ac572c3 www/hugo/distinfo
--- a/www/hugo/distinfo Sun Apr 10 20:54:58 2022 +0000
+++ b/www/hugo/distinfo Sun Apr 10 21:16:34 2022 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.15 2022/03/05 14:16:43 nikita Exp $
+$NetBSD: distinfo,v 1.16 2022/04/10 21:16:34 nikita Exp $
 
 BLAKE2s (bazil.org_fuse_@v_v0.0.0-20180421153158-65cc252bf669.mod) = ff8095283662ae2d2a1968bf429516c54586b1a6c4dc744657162e6781aa8ece
 SHA512 (bazil.org_fuse_@v_v0.0.0-20180421153158-65cc252bf669.mod) = 7b3ef87f98485bb9ec325680f57d43a9bd76e90bdcfb1e798458f28f7d3addf91dbb6a07b654749468860981413ad2267df2d5f3535c85579e9f79d9328d355c
@@ -108,9 +108,6 @@
 BLAKE2s (cloud.google.com_go_@v_v0.97.0.mod) = cfea8dddf1b7c993d5e9e28f8a3045130276e638f26f3d996ca55851dff6122e
 SHA512 (cloud.google.com_go_@v_v0.97.0.mod) = 982196dc4d90f57779d6f065688c6e96eb8159c7206876b50d6f55b3eafc42d3429c9e0b67a7c36f86fdeb74428ec5b4d8bc84338f1ad22aa2618375986655e1
 Size (cloud.google.com_go_@v_v0.97.0.mod) = 532 bytes
-BLAKE2s (cloud.google.com_go_@v_v0.98.0.mod) = dc390739b25d4963045d2674e77a96bfa0748a9d5bf6cd98395f89de3fe66deb
-SHA512 (cloud.google.com_go_@v_v0.98.0.mod) = cc36c7571696e0c8c82a07ee756f303000b04f443f86f6a798e63e72c14d5580e287e13647469fe51588e63a4d226b0eaee37fdbbe2da4840466835cc584b54a
-Size (cloud.google.com_go_@v_v0.98.0.mod) = 532 bytes
 BLAKE2s (cloud.google.com_go_@v_v0.99.0.mod) = 01bec3d7f2c0c0a58f30aa9d9e6ec81a8cd705d466e3efb4d9b1ed2ea8779583
 SHA512 (cloud.google.com_go_@v_v0.99.0.mod) = 3e3f5fa36ee01499bcbcd14d3d6ccddddcc9944eff446a2911d991126ca43425396e67811fe71704ad7ddd37c7a6bae9969f90c85b3ac671e619e42763ac015e
 Size (cloud.google.com_go_@v_v0.99.0.mod) = 532 bytes
@@ -156,12 +153,9 @@
 BLAKE2s (cloud.google.com_go_firestore_@v_v1.2.0.mod) = e7974afd60c17268e11d12e8a6d88f8dec2b75e9bd59a683e8e1d47cc87574d3
 SHA512 (cloud.google.com_go_firestore_@v_v1.2.0.mod) = 757a0382094c23828b55177c6a0bba135f0ee308030afcfc0efa48b705c6b39720ed44b60e69ce08f7c0d26bf548ac4511e2ffe7abdbb22271345dac02ab150b
 Size (cloud.google.com_go_firestore_@v_v1.2.0.mod) = 501 bytes
-BLAKE2s (cloud.google.com_go_firestore_@v_v1.6.1.mod) = 0cb904fb458bb5715439da8ecbd987480abd843c8be9b277009be193069d14b1
-SHA512 (cloud.google.com_go_firestore_@v_v1.6.1.mod) = 55e4943c7e8fc8a05858511e0daafa4a1ea9c7fe3fb8aeb86e286020a696a2bd206efb390a70719d4417792be601cf10d916d48bbc9acbec6c86aac0259b673a
-Size (cloud.google.com_go_firestore_@v_v1.6.1.mod) = 358 bytes
-BLAKE2s (cloud.google.com_go_firestore_@v_v1.6.1.zip) = 0a94943f00ce93e45c6548f4538e0fbab1bd61c609bafc434b55842b5cd0c0b8
-SHA512 (cloud.google.com_go_firestore_@v_v1.6.1.zip) = d43a43a22c23b9b84cebf580ab3f1f9a167fbaaa87269218d0b87f1e5a791b2e6dd12155fed63c190067d3f95c220846de81d3eda9eefc997e891daf1b9412b5
-Size (cloud.google.com_go_firestore_@v_v1.6.1.zip) = 343866 bytes
+BLAKE2s (cloud.google.com_go_firestore_@v_v1.2.0.zip) = 06ebb69acf95e6986b42dda50fd620417481304a3785bf5420040f471a7fac13
+SHA512 (cloud.google.com_go_firestore_@v_v1.2.0.zip) = d2fcf62f14dc2db1a79888555eeeff4ad2f8e6a04d4dfd397c4ea09ae14c2e51917400217734510c7c995c4eb8e03b4f699484c3761ec393ca070a6808765b70
+Size (cloud.google.com_go_firestore_@v_v1.2.0.zip) = 324305 bytes
 BLAKE2s (cloud.google.com_go_iam_@v_v0.2.0.mod) = c6d7426c0ee1a344f7b04b1ea25d9ba1c2c6af654928cb98b6320af5fdd488f2
 SHA512 (cloud.google.com_go_iam_@v_v0.2.0.mod) = 71383266d0d73ecfed5202bc2f6de208ff7de9c75d511a17e1dc32c4f68b8075b7c0519788a2ec6428be56ba6c09e8db957d4278f569faf3eb33312b0d2060ce
 Size (cloud.google.com_go_iam_@v_v0.2.0.mod) = 284 bytes
@@ -378,12 +372,6 @@
 BLAKE2s (github.com__burnt_sushi_xgb_@v_v0.0.0-20160522181843-27f122750802.zip) = 30a9ad04f2ed1478a1ed8be7bd686686e533c90f57cc9d1236f33f78bea8450b
 SHA512 (github.com__burnt_sushi_xgb_@v_v0.0.0-20160522181843-27f122750802.zip) = 
7bb2037721647f941eb8dec5bdcf00d72febf118b34819d6bf3cdbaae1bd2cedd867cd210acfdba5afdf48be8b315d934447aa5674901e95a7868e707d337547
 Size (github.com__burnt_sushi_xgb_@v_v0.0.0-20160522181843-27f122750802.zip) = 254689 bytes
-BLAKE2s (github.com__data_dog_datadog-go_@v_v3.2.0+incompatible.mod) = 9f10b27ac70e6999c062ebdb8a5279df142b1561df9d8e0babb2f379e0041291
-SHA512 (github.com__data_dog_datadog-go_@v_v3.2.0+incompatible.mod) = da3a3499834784b7ace8158659956206fdb113000fdc84d54b6525805727e37029bdcf263afcbabe724d8b10f6601f1f38a985e6ac10fd0466907ae56da3edd7
-Size (github.com__data_dog_datadog-go_@v_v3.2.0+incompatible.mod) = 37 bytes
-BLAKE2s (github.com__data_dog_datadog-go_@v_v3.2.0+incompatible.zip) = 4d37574fc82649e21c64ca9938c2540eb1ebb6788d7b9bf25f41ed5c224508c3
-SHA512 (github.com__data_dog_datadog-go_@v_v3.2.0+incompatible.zip) = f16a6a25abaef19382e50de8c791947ef9d65ed69c275bb20b38aa72c03e6b161b5db1974908c223cb62d393eeda0d9317f6ca9ab1db2fc5f7db5e967e3d730d
-Size (github.com__data_dog_datadog-go_@v_v3.2.0+incompatible.zip) = 34337 bytes
 BLAKE2s (github.com__google_cloud_platform_cloudsql-proxy_@v_v0.0.0-20191009163259-e802c2cb94ae.mod) = 5dad0cd1cdbe2aea10ee2826dc237be0ed99fd3deada0e0f1f4fbd097ed36edb
 SHA512 (github.com__google_cloud_platform_cloudsql-proxy_@v_v0.0.0-20191009163259-e802c2cb94ae.mod) = 
e70098303230e59faac8940def165cdd46223ce203e9ec6db498178d391b983f01b6554668fddff92aaa9e56fbc859b4a43c8f8cc5b13215d1dfa3234fb885f1
 Size (github.com__google_cloud_platform_cloudsql-proxy_@v_v0.0.0-20191009163259-e802c2cb94ae.mod) = 294 bytes
@@ -408,81 +396,18 @@
 BLAKE2s (github.com__puerkito_bio_urlesc_@v_v0.0.0-20170810143723-de5bf2ad4578.zip) = 0ca21c6e273310583f9f3ddcd9dc64583f4c69d596c7301efaa43fb8c8eac8b9
 SHA512 (github.com__puerkito_bio_urlesc_@v_v0.0.0-20170810143723-de5bf2ad4578.zip) = 
9746be89f7fc5d50acd6376f77d43754e4a40d9da173a0b3226b78b1b1fab9afd859f15332ae5a429ce1e0e85227ceef05d94f2237c4969a8e6fc5e8454937e6
 Size (github.com__puerkito_bio_urlesc_@v_v0.0.0-20170810143723-de5bf2ad4578.zip) = 8169 bytes
-BLAKE2s (github.com_alecthomas_assert_@v_v0.0.0-20170929043011-405dbfeb8e38.mod) = a6571bd3065aa7bc07607a6b5585a9e2520203fd6c264cf7303bf6d45ac78c1e
-SHA512 (github.com_alecthomas_assert_@v_v0.0.0-20170929043011-405dbfeb8e38.mod) = 
87ff97fea3e25aa903503e56fe5afc337918f7253dd7175833adb144a7296451a7d4ebd76df504737a5b4c5237b1102920728d21a587957d5d25db5d38e1217b
-Size (github.com_alecthomas_assert_@v_v0.0.0-20170929043011-405dbfeb8e38.mod) = 36 bytes
-BLAKE2s (github.com_alecthomas_assert_@v_v0.0.0-20170929043011-405dbfeb8e38.zip) = 017f8e211b3b8626ab9c8094ed983449bf9db1b151d6dde5e61f51bd96cad494
-SHA512 (github.com_alecthomas_assert_@v_v0.0.0-20170929043011-405dbfeb8e38.zip) = 
adf9a3b8bda92edd028f497ca10648900a7aac4dae9372469b511afc74e79f8b990e448f375ab2a8df651a491bab5413196c06db531adc10358865f74de6f26b
-Size (github.com_alecthomas_assert_@v_v0.0.0-20170929043011-405dbfeb8e38.zip) = 73310 bytes
 BLAKE2s (github.com_alecthomas_chroma_@v_v0.10.0.mod) = 237a44319de65df1f777ddd8c35de2e350bacc3ac62ca6aaddc5eca69a537d90
 SHA512 (github.com_alecthomas_chroma_@v_v0.10.0.mod) = d8194b2458c1fb2a3b9cee9274e1c66a0bbaf676a051ee3ef085c9bc24279d132ccfd0a62767f9fab268090c29ff88e3a74448b0eea87b58f5e0b5e4c66ddd98
 Size (github.com_alecthomas_chroma_@v_v0.10.0.mod) = 176 bytes
 BLAKE2s (github.com_alecthomas_chroma_@v_v0.10.0.zip) = 1c60978206ad1ac52ef3838391d64d1d1ee17c8a10bfe1fcc7c384c7e34a65f7
 SHA512 (github.com_alecthomas_chroma_@v_v0.10.0.zip) = cb73e1e9006935f478af1b7d217377bbab93a4c91f58e5288125cee6cbda6812b2cd6d0c253155d2b8cf40d4c02968b28a21383fdc15aef06f100aa967467be4
 Size (github.com_alecthomas_chroma_@v_v0.10.0.zip) = 1077001 bytes
-BLAKE2s (github.com_alecthomas_chroma_@v_v0.8.2.mod) = 7dc89fa1c930dc1a290899da7d2fc9acc0613cc998135f1c3de6db08d01943c8
-SHA512 (github.com_alecthomas_chroma_@v_v0.8.2.mod) = bf5c7b4933d685d90882099aa8c5bc33f8ec58e5a35138180b58771185306b6119cfaab319a43ade929b4560be9746f9155c8d55d1755df12b177613982c7617
-Size (github.com_alecthomas_chroma_@v_v0.8.2.mod) = 687 bytes
-BLAKE2s (github.com_alecthomas_colour_@v_v0.0.0-20160524082231-60882d9e2721.mod) = 3479e4a91501dadb4eb5c25300b375065cd544f62352af141efb0c3aaf002be7
-SHA512 (github.com_alecthomas_colour_@v_v0.0.0-20160524082231-60882d9e2721.mod) = 
971e35af5346054a0930f5543dc936c5f32ca801433d3ca26461ae7c1583b4f814376e8880f4d5329c46c36a3bde5ee4290b825bf19fd70c6bf2fbbab03f8ff1
-Size (github.com_alecthomas_colour_@v_v0.0.0-20160524082231-60882d9e2721.mod) = 36 bytes
-BLAKE2s (github.com_alecthomas_colour_@v_v0.0.0-20160524082231-60882d9e2721.zip) = e70072e47802532f310775468f319a54571beedd6f780e1505e242cfd6a059ef
-SHA512 (github.com_alecthomas_colour_@v_v0.0.0-20160524082231-60882d9e2721.zip) = 
7947f0ed3b2b42b8454af3cfb0fb27ec38af8234936d7cfe29017d1168b80873dbb6ac1345719fc5c405df9c814bd732a4ecf6f985da880f4ad83cf2f25b7834
-Size (github.com_alecthomas_colour_@v_v0.0.0-20160524082231-60882d9e2721.zip) = 4919 bytes
-BLAKE2s (github.com_alecthomas_kong_@v_v0.2.4.mod) = 851caa20e96403b3503878913fdb5c36b59d5185dde5975433276430787bdbb9
-SHA512 (github.com_alecthomas_kong_@v_v0.2.4.mod) = 165cb7ab17309c66d509af018c8a521bd90f9a58fec8fa9437e5b32aa2105ef1be19a1a0a1b13a51300e308c5e63c6cb74897ad938bd6f8b3bfb2d372347d02f
-Size (github.com_alecthomas_kong_@v_v0.2.4.mod) = 219 bytes
-BLAKE2s (github.com_alecthomas_kong_@v_v0.2.4.zip) = d15a1c1449d697515665ac33649f504dd3bc0ca3340f00b6d45cd12d3dfbcb2a
-SHA512 (github.com_alecthomas_kong_@v_v0.2.4.zip) = 9e19a102b7cfe10551ca6efc98b55cdf9ee2705d0c4076930ad7ee01453417bcdeadaa3350b3b8d52d3c166c17748afa477bdcb91966483ad89bb6db2e14194a
-Size (github.com_alecthomas_kong_@v_v0.2.4.zip) = 288228 bytes
-BLAKE2s (github.com_alecthomas_repr_@v_v0.0.0-20180818092828-117648cd9897.mod) = 3aefe5456390c099d42c4f2b64af0ac253734fc67cb3edb08d9455710c7055b5
-SHA512 (github.com_alecthomas_repr_@v_v0.0.0-20180818092828-117648cd9897.mod) = 
5896c9174737c300a726f70b7d6300b892e790e41598b5f82ec82aca020f93159f9ea94afb6a4db605aca196d527a7a42df9b1babb73b8d182fe6749e95975d0
-Size (github.com_alecthomas_repr_@v_v0.0.0-20180818092828-117648cd9897.mod) = 34 bytes
-BLAKE2s (github.com_alecthomas_repr_@v_v0.0.0-20180818092828-117648cd9897.zip) = 160e40512f0c85412d16f81a2cc19e296689c9a808c5073c30dafb21f220fe68
-SHA512 (github.com_alecthomas_repr_@v_v0.0.0-20180818092828-117648cd9897.zip) = 
0c048e8778641577f394433483fdd4f916c9ff16ddd4d7b1b37c4b999b5107353e6867c2b2430b183027807e53f160ebb2419ad85f1d1b2e0bc0b190efe47352
-Size (github.com_alecthomas_repr_@v_v0.0.0-20180818092828-117648cd9897.zip) = 5773 bytes
-BLAKE2s (github.com_alecthomas_template_@v_v0.0.0-20160405071501-a0175ee3bccc.mod) = 8c71d2795215f66feaac6b43b3131a21db45f020d3dcae7902d92e8037846576
-SHA512 (github.com_alecthomas_template_@v_v0.0.0-20160405071501-a0175ee3bccc.mod) = 
072ca7ba3d5ca815f58848db201002cc572d95334aeacfe44cb226505ad20d82ce06eb2ee059650912ae499db6291822c583296cb65a66e54adce62d6d850929
-Size (github.com_alecthomas_template_@v_v0.0.0-20160405071501-a0175ee3bccc.mod) = 38 bytes
-BLAKE2s (github.com_alecthomas_template_@v_v0.0.0-20190718012654-fb15b899a751.mod) = 8c71d2795215f66feaac6b43b3131a21db45f020d3dcae7902d92e8037846576
-SHA512 (github.com_alecthomas_template_@v_v0.0.0-20190718012654-fb15b899a751.mod) = 
072ca7ba3d5ca815f58848db201002cc572d95334aeacfe44cb226505ad20d82ce06eb2ee059650912ae499db6291822c583296cb65a66e54adce62d6d850929
-Size (github.com_alecthomas_template_@v_v0.0.0-20190718012654-fb15b899a751.mod) = 38 bytes
-BLAKE2s (github.com_alecthomas_template_@v_v0.0.0-20190718012654-fb15b899a751.zip) = 6e24d11bc2e821da3890d926fa16a22b5f11feea09eb0688f3a6137e0d07e15a
-SHA512 (github.com_alecthomas_template_@v_v0.0.0-20190718012654-fb15b899a751.zip) = 
d29dc8a3c82c34af07b0c393349eda79b30c988d439771e02106bf2f386ef5fc3feaebf00da3953a40bff2c5ed93880ecbf45e1607303c11a417bfffb96e2e65
-Size (github.com_alecthomas_template_@v_v0.0.0-20190718012654-fb15b899a751.zip) = 66303 bytes
-BLAKE2s (github.com_alecthomas_units_@v_v0.0.0-20151022065526-2efee857e7cf.mod) = e64dbe13d6d8f331f1c42fb13fba804eea5391b15e573a2b8dae89d925e4e7f4
-SHA512 (github.com_alecthomas_units_@v_v0.0.0-20151022065526-2efee857e7cf.mod) = 
7f23b8c5622c02b295646c7baf6f2ea3dd01e11e18ac9c263b853c7f771f5d098d8bcb75971f0cdc33d1c4765b563f3382ec5dc4bf20010065c3f1bc94e93175
-Size (github.com_alecthomas_units_@v_v0.0.0-20151022065526-2efee857e7cf.mod) = 35 bytes
-BLAKE2s (github.com_alecthomas_units_@v_v0.0.0-20190717042225-c3de453c63f4.mod) = e64dbe13d6d8f331f1c42fb13fba804eea5391b15e573a2b8dae89d925e4e7f4
-SHA512 (github.com_alecthomas_units_@v_v0.0.0-20190717042225-c3de453c63f4.mod) = 
7f23b8c5622c02b295646c7baf6f2ea3dd01e11e18ac9c263b853c7f771f5d098d8bcb75971f0cdc33d1c4765b563f3382ec5dc4bf20010065c3f1bc94e93175
-Size (github.com_alecthomas_units_@v_v0.0.0-20190717042225-c3de453c63f4.mod) = 35 bytes
-BLAKE2s (github.com_alecthomas_units_@v_v0.0.0-20190717042225-c3de453c63f4.zip) = a328ec41d553278f593250266ead775e41dc0919b618c801ca262161f34eaae3
-SHA512 (github.com_alecthomas_units_@v_v0.0.0-20190717042225-c3de453c63f4.zip) = 
eb9b80bd07a9586681ccb20b48644c404ad326e65251571531776ffb51eed20dfc79cb34dba332dea2fb4aa1a766da2cbad597b59db3c7f770b56febe1956ed4
-Size (github.com_alecthomas_units_@v_v0.0.0-20190717042225-c3de453c63f4.zip) = 5447 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
 BLAKE2s (github.com_antihax_optional_@v_v1.0.0.zip) = 13d991504807821b6a4f271b074a9a62d3d0f6f2f13cf6fc2cd849a6b807475f
 SHA512 (github.com_antihax_optional_@v_v1.0.0.zip) = bd930c8edba29cb03bfd7775337726bb7177b96da603e25ed210689432d00e34eada40332fa918908d86b639a0057087ff05a12042d6406aa513f321eca8d2ea
 Size (github.com_antihax_optional_@v_v1.0.0.zip) = 9639 bytes
-BLAKE2s (github.com_armon_circbuf_@v_v0.0.0-20150827004946-bbbad097214e.mod) = be7a72a53a4be3d5a2792c3bee0f8a6f4d4ed13395581f293abfee444fe65d2d
-SHA512 (github.com_armon_circbuf_@v_v0.0.0-20150827004946-bbbad097214e.mod) = 
a201f9c169bba0d962c2595ee8c625a2b7e39873e4bb3eb1ca646340638917dabb2309f1ba4b71d9fca4cf2da2d3684076c67ba362dd07a39538a45240f7f987
-Size (github.com_armon_circbuf_@v_v0.0.0-20150827004946-bbbad097214e.mod) = 32 bytes
-BLAKE2s (github.com_armon_circbuf_@v_v0.0.0-20150827004946-bbbad097214e.zip) = 173c23b950f857ffead94742487812eddf33236d1cad83330b27d7976d4ee545
-SHA512 (github.com_armon_circbuf_@v_v0.0.0-20150827004946-bbbad097214e.zip) = 
c73ff22440aa8f5825b7e6820c270582d5512cc096e69b6ee034ed67ec3eb87b3266b82eacf37b985e872a693256be6f377814d3cc604180ea939b42971ebe80
-Size (github.com_armon_circbuf_@v_v0.0.0-20150827004946-bbbad097214e.zip) = 3902 bytes
-BLAKE2s (github.com_armon_go-metrics_@v_v0.0.0-20180917152333-f0300d1749da.mod) = 4e8858b27d97c146624c6c2a50c5a894dbe799a87a3f3ab03a2cf908d897fa82
-SHA512 (github.com_armon_go-metrics_@v_v0.0.0-20180917152333-f0300d1749da.mod) = 
fe8dfbec1d09d7da5829af43760a4ddb5495b6a63eeb76fb3758aeb2fcf83d83ea443a15789d7042a0f5e637664babc9c388dbebc63ff7d35fb9545c7c7da991
-Size (github.com_armon_go-metrics_@v_v0.0.0-20180917152333-f0300d1749da.mod) = 35 bytes
-BLAKE2s (github.com_armon_go-metrics_@v_v0.3.10.mod) = 867df2b1c7dc5b1bda67312dfbc3894c245df947ec54ef617344b5e83300b56d
-SHA512 (github.com_armon_go-metrics_@v_v0.3.10.mod) = 7a835e1c62454a3577e71bb91a1a2ba8e135b94140e1394505678a5d628bf452de2fe8c7a9ad30c17ee462fd0d2f04967d0cc7b96010cfcd3d0fcf7dcaf4748f
-Size (github.com_armon_go-metrics_@v_v0.3.10.mod) = 607 bytes
-BLAKE2s (github.com_armon_go-metrics_@v_v0.3.10.zip) = 282511176eb8b5a908f4c20629dc0a91cb54c8d4c6a3bd1f1953b532e973187a
-SHA512 (github.com_armon_go-metrics_@v_v0.3.10.zip) = 53ffe203fb58d8445a3d0a520c6fc4a821ccb533a922d0280d20469185e719c2023402008830428193d8d4e5b44287c2ab7b14cacb8c2723122e48eec8911dc1
-Size (github.com_armon_go-metrics_@v_v0.3.10.zip) = 50064 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
 BLAKE2s (github.com_armon_go-radix_@v_v1.0.0.mod) = b6be1972ea7f268ee8bfcdc983c9a7093ac28d04dd10207e775f95b8146262c7
 SHA512 (github.com_armon_go-radix_@v_v1.0.0.mod) = 98f0f51365ecedecd1abe944a765160f99ccde69abe92a44d4f0e30f72a664b828cddb085886d8460ea7faabd0cbe7abdbde905ac758be0a3752c9a8f3600b6f
 Size (github.com_armon_go-radix_@v_v1.0.0.mod) = 33 bytes
@@ -504,18 +429,6 @@
 BLAKE2s (github.com_aws_aws-sdk-go_@v_v1.43.5.zip) = 8024a2cb4962e5ce569025f993ec991822ebb7cbb3d8dbee2977a772c6be9b57
 SHA512 (github.com_aws_aws-sdk-go_@v_v1.43.5.zip) = 06bb5ccdbb1790a6515f7419991d22cebf404ad43615f66684a165a1435b2f2a83e4af5a9436c26077abb3c760a8e20319b544b6499aa96ae6be715169160438
 Size (github.com_aws_aws-sdk-go_@v_v1.43.5.zip) = 24644533 bytes
-BLAKE2s (github.com_beorn7_perks_@v_v0.0.0-20180321164747-3a771d992973.mod) = 80cbce370fc42961ecbb334b6f3da417ee9610e71432f0f22c6776faba2468f0
-SHA512 (github.com_beorn7_perks_@v_v0.0.0-20180321164747-3a771d992973.mod) = 
f21fd002853e4435421f8396e6be016f65be1537815c60d23940caf26e3f14dd6f2caac802cb64cd586b1b1f1220b2727de347b3d1816b8e741f68d87ebcf03f
-Size (github.com_beorn7_perks_@v_v0.0.0-20180321164747-3a771d992973.mod) = 31 bytes
-BLAKE2s (github.com_beorn7_perks_@v_v1.0.0.mod) = 5c2c8e92605ce9cbec8351451a0a99d37bd60ebe057b586188ca003c96af4772
-SHA512 (github.com_beorn7_perks_@v_v1.0.0.mod) = ec4424da8e1e3849408da7bfe83d37e21ac75edb889de8ef63be897d59678679b018f4606be78500952e7eee73a6252ee6e477b1a1612e2d036dbf72c17b9c9b
-Size (github.com_beorn7_perks_@v_v1.0.0.mod) = 40 bytes
-BLAKE2s (github.com_beorn7_perks_@v_v1.0.1.mod) = 3386f8007a627917f183391cfdd8aa248c19db3340b5bd857152b8644fc9ca8e
-SHA512 (github.com_beorn7_perks_@v_v1.0.1.mod) = d0c78b8f08d177e05148ce845f8d720fe79a193a420c12ce15504af8fa3dffc4d2fcebea8030f5cca90aff5775013e2252e0c289d4ed5094e07657ea97a79570
-Size (github.com_beorn7_perks_@v_v1.0.1.mod) = 40 bytes
-BLAKE2s (github.com_beorn7_perks_@v_v1.0.1.zip) = bdc71e7834ecb6fb4d1a9d57745efb54b799b5b7c2e2e5b12601821d8c7fced2
-SHA512 (github.com_beorn7_perks_@v_v1.0.1.zip) = f973efba5ce7c651d9c3e4e467a1423b00b102034a054874d09977957b7b55557e05da06fb4c158e693db7bac01bf601f950cae0d411dc92afd0686d7e1de4cf
-Size (github.com_beorn7_perks_@v_v1.0.1.zip) = 14678 bytes
 BLAKE2s (github.com_bep_debounce_@v_v1.2.0.mod) = 4da1cf743fe56665c5b033147b28cfe8754c3e0b67228d9e845d5ed6cdcd7270
 SHA512 (github.com_bep_debounce_@v_v1.2.0.mod) = 408521f704ab6f3454c32473fd7eeb4bd8c9cd1b74db9bd69cdb822a5098354bee05b1f9cab5cba15e8445de7d3038d1b7e36b1291b05bf46ed2a9346d7c3d20
 Size (github.com_bep_debounce_@v_v1.2.0.mod) = 31 bytes
@@ -534,12 +447,12 @@
 BLAKE2s (github.com_bep_goat_@v_v0.5.0.zip) = 9090cb4102bb7d93bbdac876740062c3cb124f529e64e43022408c3baa64b24a
 SHA512 (github.com_bep_goat_@v_v0.5.0.zip) = f3f6996de67a8b44eba678331afcf5c392b127dd100c46ba53558474d0b37434b65b23eb7b817f935b1b58f647fca18710e68d9b9f1683f32eed7cd08b313263
 Size (github.com_bep_goat_@v_v0.5.0.zip) = 55339 bytes
-BLAKE2s (github.com_bep_godartsass_@v_v0.12.0.mod) = ef94d299b0297a37aba4f1c1c9f629184e86c392841d704135f44cb903025098
-SHA512 (github.com_bep_godartsass_@v_v0.12.0.mod) = fc5337dfa70de63356c3d589e979cd5c37d84e38026e411835a66fd087c5994c34621848ab99dcc838fa83f1d9e8d45e0139700598f792fc36096f3001bad991
-Size (github.com_bep_godartsass_@v_v0.12.0.mod) = 162 bytes
-BLAKE2s (github.com_bep_godartsass_@v_v0.12.0.zip) = d76d68ec2981df6832f0efa4e846704777231d37a19cb53c86f7eafac9869112
-SHA512 (github.com_bep_godartsass_@v_v0.12.0.zip) = dfb0e12fc6686919afd93015495e693038825229c4449568a43d19df154797ecc0864a02a0978a21bc39f35d11a41861a58b10bea9b537fadd1daae410425029
-Size (github.com_bep_godartsass_@v_v0.12.0.zip) = 48330 bytes
+BLAKE2s (github.com_bep_godartsass_@v_v0.14.0.mod) = ad8071180aea20d03aad83bc9a8502e542bc1f503d307499dd373b29870f6572
+SHA512 (github.com_bep_godartsass_@v_v0.14.0.mod) = 1283f1650710b5b7dcc2248b7ef621d34eee76ff72813d624ff77cd6ec32817d4eeabf7adcc9f68ac1f00137498c616ac13a8f498f7b1376417e8a105b05841d
+Size (github.com_bep_godartsass_@v_v0.14.0.mod) = 162 bytes
+BLAKE2s (github.com_bep_godartsass_@v_v0.14.0.zip) = 01cdff7c5b4716f3cb51739cb0fd142f02865f1619fee40c957fffe0d3fdf4b5
+SHA512 (github.com_bep_godartsass_@v_v0.14.0.zip) = 43b72754fdfa01e4790534361c5cb70f58a15dba528030ed7765d7be0d1bba280771dc757d99a3f8dae8b0b467d6ee1758534f5236d95bda3676dfcdf8946a32
+Size (github.com_bep_godartsass_@v_v0.14.0.zip) = 49539 bytes
 BLAKE2s (github.com_bep_golibsass_@v_v1.0.0.mod) = 9dfb01aa47ae5cd1e07cf6f75f51fd8bb298ec45edcf1be0e4bc4e25d80e27bd
 SHA512 (github.com_bep_golibsass_@v_v1.0.0.mod) = 88edf10bc2fcc343c9d07c5a2396f192d6fd734ff169f7b6302748966cec0ab972e40c64c415771493bbad04543a878ad7b9280766e5d71dce37518652169e8d
 Size (github.com_bep_golibsass_@v_v1.0.0.mod) = 87 bytes
@@ -564,24 +477,15 @@
 BLAKE2s (github.com_bep_workers_@v_v1.0.0.zip) = 709d9c2c8ecb133e6ae02991cd9fadcf567c31b576a4b813266118bc2aab60bf
 SHA512 (github.com_bep_workers_@v_v1.0.0.zip) = fb1532ff6865301f9e171356f93984454963c517e5b73f400df914f67d52c51e0bcc6c1bd912098307cc468f4793421d855e4f7af395c32a6c792cc0db3857fe
 Size (github.com_bep_workers_@v_v1.0.0.zip) = 4929 bytes
-BLAKE2s (github.com_bgentry_speakeasy_@v_v0.1.0.mod) = 708e1811dded9efc1552218a5eba1faa7f3c49fbfac85214543ee3626b35d5b5
-SHA512 (github.com_bgentry_speakeasy_@v_v0.1.0.mod) = f961ced2c3e902be60fb862fff6b1c4457c57bd7586375a18857863be63d9b3ea998b05fc0c9c3a7270387e9907861d6f9d6ce4024643ec84ea6a63e59e915c1
-Size (github.com_bgentry_speakeasy_@v_v0.1.0.mod) = 36 bytes
-BLAKE2s (github.com_bgentry_speakeasy_@v_v0.1.0.zip) = 1886f0d409eec6da7c4bec22498cdd12c96223a37ac7cf7224cd2ce03630421d
-SHA512 (github.com_bgentry_speakeasy_@v_v0.1.0.zip) = 0e52838ad73009c795d6a43d7d52d082b0ec134e0f07015fa51caab7d1dd141b19df7807a7ab146312848567f8635966c6ce7ac22b934a630e0131383caef9cf
-Size (github.com_bgentry_speakeasy_@v_v0.1.0.zip) = 9262 bytes
 BLAKE2s (github.com_census-instrumentation_opencensus-proto_@v_v0.2.0.mod) = 550d93c92229195d354aaf19f5cf79762428025962fc1798084c00ac4a53b25c
 SHA512 (github.com_census-instrumentation_opencensus-proto_@v_v0.2.0.mod) = 
23d6171dbcf339c72fe25ab7a7e70cb385dffd654998824fac0f6b6464717873332d39fe1f96101414f5e2d240faaab0b960da2e31c08ef98443aa238bbf02d4
 Size (github.com_census-instrumentation_opencensus-proto_@v_v0.2.0.mod) = 58 bytes
 BLAKE2s (github.com_census-instrumentation_opencensus-proto_@v_v0.2.1.mod) = 550d93c92229195d354aaf19f5cf79762428025962fc1798084c00ac4a53b25c
 SHA512 (github.com_census-instrumentation_opencensus-proto_@v_v0.2.1.mod) = 
23d6171dbcf339c72fe25ab7a7e70cb385dffd654998824fac0f6b6464717873332d39fe1f96101414f5e2d240faaab0b960da2e31c08ef98443aa238bbf02d4
 Size (github.com_census-instrumentation_opencensus-proto_@v_v0.2.1.mod) = 58 bytes
-BLAKE2s (github.com_census-instrumentation_opencensus-proto_@v_v0.3.0.mod) = 550d93c92229195d354aaf19f5cf79762428025962fc1798084c00ac4a53b25c
-SHA512 (github.com_census-instrumentation_opencensus-proto_@v_v0.3.0.mod) = 
23d6171dbcf339c72fe25ab7a7e70cb385dffd654998824fac0f6b6464717873332d39fe1f96101414f5e2d240faaab0b960da2e31c08ef98443aa238bbf02d4
-Size (github.com_census-instrumentation_opencensus-proto_@v_v0.3.0.mod) = 58 bytes
-BLAKE2s (github.com_census-instrumentation_opencensus-proto_@v_v0.3.0.zip) = 356df486560382e4b59f847a92965604324b3ba774e09c349c57bade1166cd6f
-SHA512 (github.com_census-instrumentation_opencensus-proto_@v_v0.3.0.zip) = 
d36c23db5214a78db7bdbcfff533716d9e53addcb1d635be608eeec8964ee1af8f5cdb0200fe33b9dd70f48bd919ae04c7bb4a94ab553f61f6273593853f4bab
-Size (github.com_census-instrumentation_opencensus-proto_@v_v0.3.0.zip) = 223236 bytes
+BLAKE2s (github.com_census-instrumentation_opencensus-proto_@v_v0.2.1.zip) = edf21b5d93d9f86cb001c6abc93724975e45d01889549c012e42a76ad8d12313
+SHA512 (github.com_census-instrumentation_opencensus-proto_@v_v0.2.1.zip) = 
4dbdefde602fa13bb1f0ab9dc6e947dc158defd284753b51bbddf9e52410dac5429e145637f155bb8703cfe8723fd2f5e4ec7898552d4a2956c8dfa01d4946cb
+Size (github.com_census-instrumentation_opencensus-proto_@v_v0.2.1.zip) = 210929 bytes
 BLAKE2s (github.com_cespare_xxhash_@v_v1.1.0.mod) = 63e461631ef2feef8d3fa956d589a273247aa3bac0e0ef9ddbfdae5a7ab48b19
 SHA512 (github.com_cespare_xxhash_@v_v1.1.0.mod) = 32c34a590e6c113a16700ef2faa5124ebb6c8773cd76594312157bd2b70d54cd939ff2c32fac47421b5615e804142cb7b393394d4745d5894f9b68392bc37ad9
 Size (github.com_cespare_xxhash_@v_v1.1.0.mod) = 146 bytes
@@ -591,18 +495,9 @@
 BLAKE2s (github.com_cespare_xxhash_v2_@v_v2.1.1.mod) = 03371e0ad30714eb81f3613e1d710ab1771554035bcf8b4cd97e7bc4f2d5eadb
 SHA512 (github.com_cespare_xxhash_v2_@v_v2.1.1.mod) = c1b9f572957bc4ed1ad0c61d22b7b5d6a4c863df2aaeb4cf914e304af21d949c9cfc53dc8eb67aacdf3dd56f339ee6f4a1f5fa464121d9db79b7b3febfb3251b
 Size (github.com_cespare_xxhash_v2_@v_v2.1.1.mod) = 45 bytes
-BLAKE2s (github.com_cespare_xxhash_v2_@v_v2.1.2.mod) = 03371e0ad30714eb81f3613e1d710ab1771554035bcf8b4cd97e7bc4f2d5eadb
-SHA512 (github.com_cespare_xxhash_v2_@v_v2.1.2.mod) = c1b9f572957bc4ed1ad0c61d22b7b5d6a4c863df2aaeb4cf914e304af21d949c9cfc53dc8eb67aacdf3dd56f339ee6f4a1f5fa464121d9db79b7b3febfb3251b
-Size (github.com_cespare_xxhash_v2_@v_v2.1.2.mod) = 45 bytes
-BLAKE2s (github.com_cespare_xxhash_v2_@v_v2.1.2.zip) = 3c871e6b49212f6f48b5d431adf583664078f5021e662449009de191db488bf3
-SHA512 (github.com_cespare_xxhash_v2_@v_v2.1.2.zip) = a13d75511ae89987df8e6ea1bff657c1b9570dc7beadda8fd282f7073136f28b6a1c1ebec484ff07c66332c3b1a70ae335d16acef1b0844bbf736777866dbf59
-Size (github.com_cespare_xxhash_v2_@v_v2.1.2.zip) = 15284 bytes
-BLAKE2s (github.com_chaseadamsio_goorgeous_@v_v2.0.0+incompatible.mod) = 62e48a9181785cb70dead6e116ddd733fd2418a5ecd8544bc79a669ea455f02d
-SHA512 (github.com_chaseadamsio_goorgeous_@v_v2.0.0+incompatible.mod) = 
cf42b508ffd327d69328fb9b9f24bf7588352dcd7cff5601bf5a4dedc7e63673008cc55e066f2d670a8318b79415f1393b8ed5a5b55ddaa1019387df1a7eca00
-Size (github.com_chaseadamsio_goorgeous_@v_v2.0.0+incompatible.mod) = 41 bytes
-BLAKE2s (github.com_chaseadamsio_goorgeous_@v_v2.0.0+incompatible.zip) = 696fea39f4c2dd73cab3cf2b27831ee033413dde2faf5e84ed0a9cbc96aff338
-SHA512 (github.com_chaseadamsio_goorgeous_@v_v2.0.0+incompatible.zip) = 
1656837cc5db9166f1b51b5285541e04dd47833037a15d207efc03f7c2dbf882b98c7943569ee273efc1f8bcc61c410677c4442f4729699c838f3977164743b4
-Size (github.com_chaseadamsio_goorgeous_@v_v2.0.0+incompatible.zip) = 36613 bytes
+BLAKE2s (github.com_cespare_xxhash_v2_@v_v2.1.1.zip) = 3f07c94be3b63a0c676d8fe9b29baaae416a2c3b28f13986e6bb0bcbfbd9dacd
+SHA512 (github.com_cespare_xxhash_v2_@v_v2.1.1.zip) = dc5efd476875fe3cfb3c5f5ce9314920bb2175be85fd1a4667faddee1b5360113b66bdc2f17e4fe889a7d104d684558744bdc6c56c8ac3afc585d7aad0114486
+Size (github.com_cespare_xxhash_v2_@v_v2.1.1.zip) = 12031 bytes
 BLAKE2s (github.com_cheekybits_is_@v_v0.0.0-20150225183255-68e9c0620927.mod) = 015185c7f669ff0a052607a4447129665b8a2980e4fef75aa9a6a66d9dac08ba
 SHA512 (github.com_cheekybits_is_@v_v0.0.0-20150225183255-68e9c0620927.mod) = 
bac95e43558eaf04fc634b9b87039bc3e7ffa17e84cd94c6be19a6ffc0fe1c90dfe67b43b5d6c4262b4fb2c6ddb30f19090320ffbc20cc75c1a1649bb4441e27
 Size (github.com_cheekybits_is_@v_v0.0.0-20150225183255-68e9c0620927.mod) = 32 bytes
@@ -627,18 +522,6 @@
 BLAKE2s (github.com_chzyer_test_@v_v0.0.0-20180213035817-a1ea475d72b1.zip) = 48ee00f9efe66eb83b53f918105a93c09c835c99a45eb71721f7d8729388006f
 SHA512 (github.com_chzyer_test_@v_v0.0.0-20180213035817-a1ea475d72b1.zip) = 
05859e1e715542b64c7d63789b447f971f7cceb6fd01bd78e661891acdd94da873ae6d3f612748fefaf9507d374b62526fcfe7db5655cc297c07208bc9f22bc2
 Size (github.com_chzyer_test_@v_v0.0.0-20180213035817-a1ea475d72b1.zip) = 5024 bytes
-BLAKE2s (github.com_circonus-labs_circonus-gometrics_@v_v2.3.1+incompatible.mod) = cdc47e796ee064f4110252cac813107a65df831c9192e1c75a1194c9d241baaf
-SHA512 (github.com_circonus-labs_circonus-gometrics_@v_v2.3.1+incompatible.mod) = 
d1c83d2dbd4e242bfa9d8b9b58cddbd4a1ad112d1f5d1ca757fc31c6a31bf460d08cc3c9bf14c977fa74d2099ec83d5e45c05fd6121f800e26da6a837d862ccd
-Size (github.com_circonus-labs_circonus-gometrics_@v_v2.3.1+incompatible.mod) = 51 bytes
-BLAKE2s (github.com_circonus-labs_circonus-gometrics_@v_v2.3.1+incompatible.zip) = 8008bf44148889b4abce1c42a48e0f63af54e1861e4364d085a57e28bfcaf830
-SHA512 (github.com_circonus-labs_circonus-gometrics_@v_v2.3.1+incompatible.zip) = 
51705b4747969ed96b7233c2c0159e8a81c6be1bd35b68e3058fcd9440185df30105293d9b936388aabf9bfefe9670cd930c608ad4058e0285f9b7d2d86352a4
-Size (github.com_circonus-labs_circonus-gometrics_@v_v2.3.1+incompatible.zip) = 148431 bytes
-BLAKE2s (github.com_circonus-labs_circonusllhist_@v_v0.1.3.mod) = 9055ae0ba3385c691a4f98f1f62a4fcf2a728d012d540d57b1c7a1e2df05674d
-SHA512 (github.com_circonus-labs_circonusllhist_@v_v0.1.3.mod) = 027b177fb04d5bcfaa0e524e6682b639bd91f7aad9ba14e22cc1b4f352e2c3bcd4d93348ed013cd839eccdb01449db40170243e7895c2cfa3f6980279faf39e3
-Size (github.com_circonus-labs_circonusllhist_@v_v0.1.3.mod) = 47 bytes
-BLAKE2s (github.com_circonus-labs_circonusllhist_@v_v0.1.3.zip) = 9777e9b97d65f9763527e1ac740d3e8709fd97651a95766ce3325b5108208c5e
-SHA512 (github.com_circonus-labs_circonusllhist_@v_v0.1.3.zip) = 2908d5b1f9beb4fed31923fdf77ab83d7c992245c4bd08b7655ba3fef1ac0ccefab66fa4c7b06f67a7960e16069f611cb44ff1d9a675bdd2750934349752a030
-Size (github.com_circonus-labs_circonusllhist_@v_v0.1.3.zip) = 10851 bytes
 BLAKE2s (github.com_clbanning_mxj_v2_@v_v2.5.5.mod) = 6063bcf316f9d84ecd265d4721c72712661dce02fedc3f764ea82220dca8c03f
 SHA512 (github.com_clbanning_mxj_v2_@v_v2.5.5.mod) = 5841b34574f60e73803d94510aa19d1d5dc7a45ab6f753b0e0d14c8176cfcc9afdd8704e2844c60bdc40f7859496aaeb9e437e557ba430ca3f4b2897ea720b53
 Size (github.com_clbanning_mxj_v2_@v_v2.5.5.mod) = 44 bytes
@@ -681,30 +564,12 @@
 BLAKE2s (github.com_cncf_xds_go_@v_v0.0.0-20210922020428-25de7278fc84.mod) = e1da5fba34df0366d5770a9c651e78cf2862be1deeae4d8a3df8770c1c55227c
 SHA512 (github.com_cncf_xds_go_@v_v0.0.0-20210922020428-25de7278fc84.mod) = 
cd8c47886f01235398b4c2538ccb516754e2bae6e9a88e0fa2bd80232f974c5f8cd79249f459c9788fcb7b0c83ced5064f1d8916869e71a15377df20077f52a6
 Size (github.com_cncf_xds_go_@v_v0.0.0-20210922020428-25de7278fc84.mod) = 169 bytes
-BLAKE2s (github.com_cncf_xds_go_@v_v0.0.0-20211001041855-01bcc9b48dfe.mod) = e1da5fba34df0366d5770a9c651e78cf2862be1deeae4d8a3df8770c1c55227c
-SHA512 (github.com_cncf_xds_go_@v_v0.0.0-20211001041855-01bcc9b48dfe.mod) = 
cd8c47886f01235398b4c2538ccb516754e2bae6e9a88e0fa2bd80232f974c5f8cd79249f459c9788fcb7b0c83ced5064f1d8916869e71a15377df20077f52a6
-Size (github.com_cncf_xds_go_@v_v0.0.0-20211001041855-01bcc9b48dfe.mod) = 169 bytes
 BLAKE2s (github.com_cncf_xds_go_@v_v0.0.0-20211011173535-cb28da3451f1.mod) = e1da5fba34df0366d5770a9c651e78cf2862be1deeae4d8a3df8770c1c55227c
 SHA512 (github.com_cncf_xds_go_@v_v0.0.0-20211011173535-cb28da3451f1.mod) = 
cd8c47886f01235398b4c2538ccb516754e2bae6e9a88e0fa2bd80232f974c5f8cd79249f459c9788fcb7b0c83ced5064f1d8916869e71a15377df20077f52a6
 Size (github.com_cncf_xds_go_@v_v0.0.0-20211011173535-cb28da3451f1.mod) = 169 bytes
-BLAKE2s (github.com_cncf_xds_go_@v_v0.0.0-20211130200136-a8f946100490.mod) = e1da5fba34df0366d5770a9c651e78cf2862be1deeae4d8a3df8770c1c55227c
-SHA512 (github.com_cncf_xds_go_@v_v0.0.0-20211130200136-a8f946100490.mod) = 
cd8c47886f01235398b4c2538ccb516754e2bae6e9a88e0fa2bd80232f974c5f8cd79249f459c9788fcb7b0c83ced5064f1d8916869e71a15377df20077f52a6
-Size (github.com_cncf_xds_go_@v_v0.0.0-20211130200136-a8f946100490.mod) = 169 bytes
-BLAKE2s (github.com_cncf_xds_go_@v_v0.0.0-20211130200136-a8f946100490.zip) = 6541371370917c8b69f24277cc3a0d56f7c08ce600020bef7143514863061b71
-SHA512 (github.com_cncf_xds_go_@v_v0.0.0-20211130200136-a8f946100490.zip) = 
54d4fc5c80b3ada675e77806b7c6c7f8f11195c70f04cdc71016ba3ff6a0ee88571fe6d64ed4ea4044736f4b01d9afd143dd0525389d961a64b82bd5df663b25
-Size (github.com_cncf_xds_go_@v_v0.0.0-20211130200136-a8f946100490.zip) = 109124 bytes
-BLAKE2s (github.com_coreos_go-semver_@v_v0.3.0.mod) = 7d49ef87bd0e0aab20d50151a5be3438be98dbb457891cc68e8d8e3a199ad23c
-SHA512 (github.com_coreos_go-semver_@v_v0.3.0.mod) = 58d88566898778823c24b5f4ff7ac50384075312e3eb332aa01233ada3ff385cd8a0e3b8727a77ecf068f13b52a304fbdb5f47a27957333dbd5a8fb1448956c2
-Size (github.com_coreos_go-semver_@v_v0.3.0.mod) = 35 bytes
-BLAKE2s (github.com_coreos_go-semver_@v_v0.3.0.zip) = 1cf29fc82fa27e8965c2ceb2035b6de397e275624e4ba867b2696eee36d2302c
-SHA512 (github.com_coreos_go-semver_@v_v0.3.0.zip) = 918009558869443193fed748b3cc807dbfc540967d60e0315c74c6a09324d7d783067e0f21c5461ebadcdec3c7e6417522565a00e33617af8a8168281a0040c3
-Size (github.com_coreos_go-semver_@v_v0.3.0.zip) = 13848 bytes
-BLAKE2s (github.com_coreos_go-systemd_v22_@v_v22.3.2.mod) = 12dcaed190b9f3d30e196bd1213a6357c43772d311ca8e8d4fab9ce1e9159377
-SHA512 (github.com_coreos_go-systemd_v22_@v_v22.3.2.mod) = 722430decd4f1022e8b035bcc7c1ed295db21a3c64f9dbdf409bd0442356664d378d4af37b7de828c02453014a5a9ddefb3397cbbbc8481c14179ecba9499a5a
-Size (github.com_coreos_go-systemd_v22_@v_v22.3.2.mod) = 91 bytes
-BLAKE2s (github.com_coreos_go-systemd_v22_@v_v22.3.2.zip) = 49395b0fa25080637d877abdba92804420e0e06e2a8c0739b2fe4b0b14205f80
-SHA512 (github.com_coreos_go-systemd_v22_@v_v22.3.2.zip) = 52b3913281e95bc58c31efab3112186e660ccd74b575f482ab6e830e7331aeec8b92778400259114816ba58648463f505de42c5aaf322a30184a8aec5a08b1e3
-Size (github.com_coreos_go-systemd_v22_@v_v22.3.2.zip) = 120397 bytes
+BLAKE2s (github.com_cncf_xds_go_@v_v0.0.0-20211011173535-cb28da3451f1.zip) = ccfafebf039000d561030f8a36099c29a8be8f3aa1fea400b82e1c1776b4c889
+SHA512 (github.com_cncf_xds_go_@v_v0.0.0-20211011173535-cb28da3451f1.zip) = 
534af6cb6553c7f5858c9375371f305d26f8b7b8807e7e11cc81656a2b998998631e2d7322c83c88b4c1ee88e83021e8f9319e362068eae9bac820834a65b7fb
+Size (github.com_cncf_xds_go_@v_v0.0.0-20211011173535-cb28da3451f1.zip) = 109136 bytes
 BLAKE2s (github.com_cpuguy83_go-md2man_v2_@v_v2.0.1.mod) = 5d28aa7bd4d3be65c094ff1eff00044ed7a895928d188f7a279b5bd9a596d393
 SHA512 (github.com_cpuguy83_go-md2man_v2_@v_v2.0.1.mod) = d39412bb14c058291d07276337f802547bfb1a682cc65199cb04334f8089b6ea5d4d73587c2765c518f9e27fa3421c276eaea616d7cfbe36a2a244326edf1cb5
 Size (github.com_cpuguy83_go-md2man_v2_@v_v2.0.1.mod) = 100 bytes
@@ -717,12 +582,6 @@
 BLAKE2s (github.com_creack_pty_@v_v1.1.9.zip) = 222ecf76733c9d8dc44c3a2942399a5af29a5719d681c646950bc547e79fce13
 SHA512 (github.com_creack_pty_@v_v1.1.9.zip) = fb756e3ca66d8968c9059e59c8488108623b536e6619454049904372f265e7dba23be6bc35f9f4c7fcd38f95c4ef20efec42fbe7b9c7148b392f94f6774921ab
 Size (github.com_creack_pty_@v_v1.1.9.zip) = 19440 bytes
-BLAKE2s (github.com_danwakefield_fnmatch_@v_v0.0.0-20160403171240-cbb64ac3d964.mod) = 32891b596028d4f47d97d9c0df7327e45094356ce60f776c32667451647a3aa8
-SHA512 (github.com_danwakefield_fnmatch_@v_v0.0.0-20160403171240-cbb64ac3d964.mod) = 
ce1047915fc0d4f3dc7148b20b90edbd878c7f0016823997aa5dc030d000f59658ddffcd911fc98a387387ac2175ddad9ceb9c8af18e0595549ea2c3859df6a9
-Size (github.com_danwakefield_fnmatch_@v_v0.0.0-20160403171240-cbb64ac3d964.mod) = 39 bytes




Home | Main Index | Thread Index | Old Index