pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/databases/prometheus prometheus: update to 2.28.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/740e9168963e
branches:  trunk
changeset: 455013:740e9168963e
user:      tnn <tnn%pkgsrc.org@localhost>
date:      Fri Jun 25 15:25:48 2021 +0000

description:
prometheus: update to 2.28.0

While here try to make updates less painful for pkgsrc developers
by automating some of the manual steps.

2.28.0 / 2021-06-21
  [CHANGE] UI: Make the new experimental PromQL editor the default.
  [FEATURE] Linode SD: Add Linode service discovery.
  [FEATURE] HTTP SD: Add generic HTTP-based service discovery.
  [FEATURE] Kubernetes SD: Allow configuring API Server access via a kubeconfig file.
  [FEATURE] UI: Add exemplar display support to the graphing interface.
  [FEATURE] Consul SD: Add namespace support for Consul Enterprise.
  [ENHANCEMENT] Promtool: Allow silencing output when importing / backfilling data.
  [ENHANCEMENT] Consul SD: Support reading tokens from file.
  [ENHANCEMENT] Rules: Add a new .ExternalURL alert field templating variable, containing the external URL of the Prometheus server.
  [ENHANCEMENT] Scrape: Add experimental body_size_limit scrape configuration setting to limit the allowed response body size for target scrapes.
  [ENHANCEMENT] Kubernetes SD: Add ingress class name label for ingress discovery.
  [ENHANCEMENT] UI: Show a startup screen with progress bar when the TSDB is not ready yet.
  [ENHANCEMENT] SD: Add a target creation failure counter prometheus_target_sync_failed_total and improve target creation failure handling.
  [ENHANCEMENT] TSDB: Improve validation of exemplar label set length.
  [ENHANCEMENT] TSDB: Add a prometheus_tsdb_clean_start metric that indicates whether a TSDB lockfile from a previous run still existed upon startup.
  [BUGFIX] UI: In the experimental PromQL editor, fix autocompletion and parsing for special float values and improve series metadata fetching.
  [BUGFIX] TSDB: When merging chunks, split resulting chunks if they would contain more than the maximum of 120 samples.
[BUGFIX] SD: Fix the computation of the prometheus_sd_discovered_targets metric when using multiple service discoveries

2.27.0 / 2021-05-12
  [FEATURE] Promtool: Retroactive rule evaluation functionality.
  [FEATURE] Configuration: Environment variable expansion for external labels. Behind --enable-feature=expand-external-labels flag.
  [FEATURE] TSDB: Add a flag(--storage.tsdb.max-block-chunk-segment-size) to control the max chunks file size of the blocks for small Prometheus instances.
  [FEATURE] UI: Add a dark theme.
  [FEATURE] AWS Lightsail Discovery: Add AWS Lightsail Discovery.
  [FEATURE] Docker Discovery: Add Docker Service Discovery.
  [FEATURE] OAuth: Allow OAuth 2.0 to be used anywhere an HTTP client is used.
  [FEATURE] Remote Write: Send exemplars via remote write. Experimental and disabled by default.
  [ENHANCEMENT] Digital Ocean Discovery: Add __meta_digitalocean_vpc label.
  [ENHANCEMENT] Scaleway Discovery: Read Scaleway secret from a file.
  [ENHANCEMENT] Scrape: Add configurable limits for label size and count.
  [ENHANCEMENT] UI: Add 16w and 26w time range steps.
  [ENHANCEMENT] Templating: Enable parsing strings in humanize functions.
  [BUGFIX] UI: Provide errors instead of blank page on TSDB Status Page.
  [BUGFIX] TSDB: Do not panic when writing very large records to the WAL.
  [BUGFIX] TSDB: Avoid panic when mmaped memory is referenced after the file is closed.
  [BUGFIX] Scaleway Discovery: Fix nil pointer dereference.
  [BUGFIX] Consul Discovery: Restart no longer required after config update with no targets.

diffstat:

 databases/prometheus/Makefile      |    39 +-
 databases/prometheus/PLIST         |    22 +-
 databases/prometheus/distinfo      |  1970 +++++++++++++++++++++++++++--------
 databases/prometheus/go-modules.mk |   490 ++++++--
 4 files changed, 1916 insertions(+), 605 deletions(-)

diffs (truncated from 4417 to 300 lines):

diff -r 33d9f109f66c -r 740e9168963e databases/prometheus/Makefile
--- a/databases/prometheus/Makefile     Fri Jun 25 14:25:00 2021 +0000
+++ b/databases/prometheus/Makefile     Fri Jun 25 15:25:48 2021 +0000
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.50 2021/06/06 12:18:41 bsiegert Exp $
-
-# Important: UI has to be manually built. See instructions below.
+# $NetBSD: Makefile,v 1.51 2021/06/25 15:25:48 tnn Exp $
 
-DISTNAME=      prometheus-2.26.0
+# Important: UI has to be manually built when updating. See instructions below.
+
+DISTNAME=      prometheus-2.28.0
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=prometheus/}
-PKGREVISION=   2
 CATEGORIES=    databases
 GITHUB_TAG=    v${PKGVERSION_NOREV}
 
@@ -15,17 +14,29 @@
 
 .include "go-modules.mk"
 
-# To generate UI distfile, install devel/yarn, and:
-# tar zxf ${DISTNAME}${EXTRACT_SUFX}
-# cd ${DISTNAME}/web/ui/react-app
-# yarn --frozen-lockfile
-# env PUBLIC_URL=. yarn build
-# chmod -x build/favicon.ico build/manifest.json
-# mv build ../static/react
-# cd ../../../..
-# tar zcf ${DISTNAME}-react-ui.tar.gz ${DISTNAME}/web/ui/static/react
+# How to rebuild UI after bumping version:
+# 1. install devel/yarn
+# 2. comment out the DISTFILES=... line
+# 3. run "make distinfo extract update-ui"
+# 4. publish the resulting distfile on MASTER_SITE_LOCAL
+# 5. uncomment the DISTFILES=... line and regen distinfo
+.PHONY: update-ui
+update-ui:
+       cd ${WRKSRC}/web/ui/react-app &&                                \
+         ${PREFIX}/bin/yarn --frozen-lockfile &&                       \
+         env PUBLIC_URL=. yarn build &&                                \
+         chmod -x build/favicon.ico build/manifest.json &&             \
+         rm -rf ../static/react &&                                     \
+         mv build ../static/react &&                                   \
+         cd ../../../.. &&                                             \
+         tar czf ${REACT_UI_DIST} ${DISTNAME}/web/ui/static/react &&   \
+         cp ${REACT_UI_DIST} ${DISTDIR}/${REACT_UI_DIST} &&            \
+         ${ECHO} "UI built. Run this command:"  &&                     \
+         ${ECHO} "# scp ${DISTDIR}/${REACT_UI_DIST} ftp.netbsd.org:/pub/pkgsrc/distfiles/LOCAL_PORTS/."
+
 REACT_UI_DIST=         ${DISTNAME}-react-ui.tar.gz
 SITES.${REACT_UI_DIST}=        ${MASTER_SITE_LOCAL}
+# comment out this when running make update-ui
 DISTFILES=             ${DEFAULT_DISTFILES} ${REACT_UI_DIST}
 
 GO_DIST_BASE=  ${DISTNAME}
diff -r 33d9f109f66c -r 740e9168963e databases/prometheus/PLIST
--- a/databases/prometheus/PLIST        Fri Jun 25 14:25:00 2021 +0000
+++ b/databases/prometheus/PLIST        Fri Jun 25 15:25:48 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2021/04/03 18:41:31 tnn Exp $
+@comment $NetBSD: PLIST,v 1.11 2021/06/25 15:25:48 tnn Exp $
 bin/prometheus
 bin/promtool
 share/examples/prometheus/console_libraries/menu.lib
@@ -30,17 +30,17 @@
 share/prometheus/static/react/favicon.ico
 share/prometheus/static/react/index.html
 share/prometheus/static/react/manifest.json
-share/prometheus/static/react/precache-manifest.7cd392065320e04fa24e876cb0c11e0f.js
+share/prometheus/static/react/precache-manifest.f0124bd2962bf40a79d388ba1dd06475.js
 share/prometheus/static/react/service-worker.js
-share/prometheus/static/react/static/css/2.89610b22.chunk.css
-share/prometheus/static/react/static/css/2.89610b22.chunk.css.map
-share/prometheus/static/react/static/css/main.6d3c05e2.chunk.css
-share/prometheus/static/react/static/css/main.6d3c05e2.chunk.css.map
-share/prometheus/static/react/static/js/2.c17659cb.chunk.js
-share/prometheus/static/react/static/js/2.c17659cb.chunk.js.LICENSE.txt
-share/prometheus/static/react/static/js/2.c17659cb.chunk.js.map
-share/prometheus/static/react/static/js/main.99f6e27d.chunk.js
-share/prometheus/static/react/static/js/main.99f6e27d.chunk.js.map
+share/prometheus/static/react/static/css/2.068d6373.chunk.css
+share/prometheus/static/react/static/css/2.068d6373.chunk.css.map
+share/prometheus/static/react/static/css/main.d6764694.chunk.css
+share/prometheus/static/react/static/css/main.d6764694.chunk.css.map
+share/prometheus/static/react/static/js/2.381592d4.chunk.js
+share/prometheus/static/react/static/js/2.381592d4.chunk.js.LICENSE.txt
+share/prometheus/static/react/static/js/2.381592d4.chunk.js.map
+share/prometheus/static/react/static/js/main.ecce87de.chunk.js
+share/prometheus/static/react/static/js/main.ecce87de.chunk.js.map
 share/prometheus/static/react/static/js/runtime-main.7e00e584.js
 share/prometheus/static/react/static/js/runtime-main.7e00e584.js.map
 share/prometheus/static/react/static/media/codicon.22349029.ttf
diff -r 33d9f109f66c -r 740e9168963e databases/prometheus/distinfo
--- a/databases/prometheus/distinfo     Fri Jun 25 14:25:00 2021 +0000
+++ b/databases/prometheus/distinfo     Fri Jun 25 15:25:48 2021 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.26 2021/04/03 18:41:31 tnn Exp $
+$NetBSD: distinfo,v 1.27 2021/06/25 15:25:48 tnn Exp $
 
 SHA1 (cloud.google.com_go_@v_v0.26.0.mod) = 8293f3ba79a69f4176a8f80fba7311b4f03e179e
 RMD160 (cloud.google.com_go_@v_v0.26.0.mod) = 072627a02c6b01bbb485da13d664567e3064d7ab
@@ -80,10 +80,18 @@
 RMD160 (cloud.google.com_go_@v_v0.79.0.mod) = 566da05c180085ddde9eea7b922c234f4382d448
 SHA512 (cloud.google.com_go_@v_v0.79.0.mod) = 2da8ed0a65a4825e939e8a35733d9cd828f102c531e322f233fb65d441ab566421f259f1e562743f982518f27334b4e1bffb6a22f8f7b4a3097df904f1e4aa03
 Size (cloud.google.com_go_@v_v0.79.0.mod) = 734 bytes
-SHA1 (cloud.google.com_go_@v_v0.79.0.zip) = 9e4ffa47f8617ecbcbda385e8b89d4b9e85dd9ec
-RMD160 (cloud.google.com_go_@v_v0.79.0.zip) = d2908698c6fdb1ba341983a6f41277b536973f7f
-SHA512 (cloud.google.com_go_@v_v0.79.0.zip) = bad708e42de89666433064cf3f018e354fe9d180e133cff2d740c65d4379587567f1a382b0c022f6873d79cb0c2d3563172013adf694e5321fdd11009c2f0253
-Size (cloud.google.com_go_@v_v0.79.0.zip) = 2127808 bytes
+SHA1 (cloud.google.com_go_@v_v0.81.0.mod) = 97b925c53bc94a0d9057a679f3d36a46efd52170
+RMD160 (cloud.google.com_go_@v_v0.81.0.mod) = e5ba4becb135f45fb606024f016aaae815699020
+SHA512 (cloud.google.com_go_@v_v0.81.0.mod) = 0f20f17224815d31006304ee27cd0c79e25f3d83e962e1fff3e61483126b950dc21ecb7494dc585410b2ab7fa72f5c40c14d577ad85b50702d5b07758b2225a5
+Size (cloud.google.com_go_@v_v0.81.0.mod) = 734 bytes
+SHA1 (cloud.google.com_go_@v_v0.83.0.mod) = 292135228dc0b42da522870a8b4b14690557e308
+RMD160 (cloud.google.com_go_@v_v0.83.0.mod) = 7328313d5725c888fcbab297923b7acf9956f171
+SHA512 (cloud.google.com_go_@v_v0.83.0.mod) = 1ff1b33b078484f834924b6c10c2d840749411314f56afbffc07f0ad4f97fc1b603aaac9293ff44e08600e56adbcf68398837eb5480b7b7b247de0ef4d1a30f1
+Size (cloud.google.com_go_@v_v0.83.0.mod) = 717 bytes
+SHA1 (cloud.google.com_go_@v_v0.83.0.zip) = 9c7c88c8efab3f08293d1881ea85b19d3a9afa86
+RMD160 (cloud.google.com_go_@v_v0.83.0.zip) = f09d410c36b8d5d6d70344a1aacf81276b2fcd90
+SHA512 (cloud.google.com_go_@v_v0.83.0.zip) = 931d04fc10d6721b8b71df54c7aa2d497813f9f04813cf8797fa1161c7437072900fb272f91d5718aa5c38076e8e963d2790725df7a89c758ac60f3560c202ef
+Size (cloud.google.com_go_@v_v0.83.0.zip) = 2504977 bytes
 SHA1 (cloud.google.com_go_bigquery_@v_v1.0.1.mod) = 436c210b6a9ea246d627c2253fbcee88bfaa2445
 RMD160 (cloud.google.com_go_bigquery_@v_v1.0.1.mod) = 97e387e101e6262541185ae2d984f798a57e5448
 SHA512 (cloud.google.com_go_bigquery_@v_v1.0.1.mod) = 338a067f7ad15d8549da11ac146b65657923ae4fee3caf2eff888c104c0df0edcdf0d98f5be6a67a764aa39210d5cad811ebd9d604084a67049b753246fbf89a
@@ -116,10 +124,14 @@
 RMD160 (cloud.google.com_go_bigtable_@v_v1.2.0.mod) = bdfb93ba91dec929b6d3844932fc12981d795161
 SHA512 (cloud.google.com_go_bigtable_@v_v1.2.0.mod) = 850d2892d1be55d674990de6cad2b778372473f03fdbbe8d3fa61c0a87ba32a349d5f98a52aae006e079986c84a5ed56256629a1bfbabf65b89c0f068e7f9975
 Size (cloud.google.com_go_bigtable_@v_v1.2.0.mod) = 617 bytes
-SHA1 (cloud.google.com_go_bigtable_@v_v1.2.0.zip) = 835fcd18ffc5faede41fb217fbc8c926592cff54
-RMD160 (cloud.google.com_go_bigtable_@v_v1.2.0.zip) = 8f20ec970aee2456fcce06eeed1afb7b3511d564
-SHA512 (cloud.google.com_go_bigtable_@v_v1.2.0.zip) = a4c51a88470174919fdb4fab1528f10684aafbd11e8c32780feacf38178df6c28cc9f53a917fd483d0a5484c42685699cc4770dd82fab075e328227180b3f90f
-Size (cloud.google.com_go_bigtable_@v_v1.2.0.zip) = 143408 bytes
+SHA1 (cloud.google.com_go_bigtable_@v_v1.3.0.mod) = 5725ce88064ecd4c8dc4389a6b06a06c2842e090
+RMD160 (cloud.google.com_go_bigtable_@v_v1.3.0.mod) = 40522d55acfea25baa8c3fcf017bcb2a8b76aa2c
+SHA512 (cloud.google.com_go_bigtable_@v_v1.3.0.mod) = a2cb7d9cb7a09ad9a45d897cb14b8d4d316d3ac3d05a775971415c1f1b8d808a85ab611efc396e6e8b051cee85263ce5fb0244b84a205f70f588e0f9fcd05466
+Size (cloud.google.com_go_bigtable_@v_v1.3.0.mod) = 681 bytes
+SHA1 (cloud.google.com_go_bigtable_@v_v1.3.0.zip) = 258cf9082afa1542068bd8e44b7235228e0c6cb4
+RMD160 (cloud.google.com_go_bigtable_@v_v1.3.0.zip) = 986146cf8c77993cd59f34d7ab73e2053a58f086
+SHA512 (cloud.google.com_go_bigtable_@v_v1.3.0.zip) = 1bc66ec0b548078a10bdc907e4f88d33389208ad175d333508f4c18678dfe7e0a2272b58657296cb3fe25680a67e2b4bc03a14b39ca572eb78c5f762c037739e
+Size (cloud.google.com_go_bigtable_@v_v1.3.0.zip) = 144726 bytes
 SHA1 (cloud.google.com_go_datastore_@v_v1.0.0.mod) = a1fb9d0f4c5e4f314e410970f73af17082aa36dd
 RMD160 (cloud.google.com_go_datastore_@v_v1.0.0.mod) = dcffebd9e4093bbc5baaf88a440d5f070b0112cc
 SHA512 (cloud.google.com_go_datastore_@v_v1.0.0.mod) = 8082ab039764aa6abd6615b1cf3a1830f2813dd5b791a27b7f0ebf5fa1ee68fe040a5e12988e6c91ba5d032a0a6666d384d6eceff12165d394a75ba56b744382
@@ -192,14 +204,18 @@
 RMD160 (dmitri.shuralyov.com_gpu_mtl_@v_v0.0.0-20190408044501-666a987793e9.zip) = 2ac41a0dfc955576512c0c9d63707dea1a89005b
 SHA512 (dmitri.shuralyov.com_gpu_mtl_@v_v0.0.0-20190408044501-666a987793e9.zip) = 
4206fa50ea8f056656804388954562efcc78a14ed8f249801c601ccd399f70ea101e5299e07bd9b86e6e137a3cd2103209ef186193a1129e108b224ee5497432
 Size (dmitri.shuralyov.com_gpu_mtl_@v_v0.0.0-20190408044501-666a987793e9.zip) = 33828 bytes
-SHA1 (github.com__azure_azure-sdk-for-go_@v_v52.5.0+incompatible.mod) = f9109627fbe12f64f8eb8833bd5b229a66ce0b23
-RMD160 (github.com__azure_azure-sdk-for-go_@v_v52.5.0+incompatible.mod) = 23f84f3bda5e834ca479cd36203a4490457181a8
-SHA512 (github.com__azure_azure-sdk-for-go_@v_v52.5.0+incompatible.mod) = 
be976846ed78cec5b19618c7364c47e66c3475519bed166ad1e6b666399ea08028fa621869ab4980981fc70256acc9a7dd1c1e52c8d3d44cb0ac75f9907b6d3e
-Size (github.com__azure_azure-sdk-for-go_@v_v52.5.0+incompatible.mod) = 41 bytes
-SHA1 (github.com__azure_azure-sdk-for-go_@v_v52.5.0+incompatible.zip) = 2dccd4950f5aefc5fd3e772268e5dba5f911d8fc
-RMD160 (github.com__azure_azure-sdk-for-go_@v_v52.5.0+incompatible.zip) = 53c40a467205c42f453521ea6ad7dfd1d7ab5c43
-SHA512 (github.com__azure_azure-sdk-for-go_@v_v52.5.0+incompatible.zip) = 
cf146d15a6baedcc6f52d0cfe45dd1bd540e56a5de00c5e12317ba9ec74e0a00e7b898590de284ef8025ebc4f1dfdaa09a64f4907ae835723f44be4db07e2948
-Size (github.com__azure_azure-sdk-for-go_@v_v52.5.0+incompatible.zip) = 54271017 bytes
+SHA1 (github.com__azure_azure-sdk-for-go_@v_v41.3.0+incompatible.mod) = f9109627fbe12f64f8eb8833bd5b229a66ce0b23
+RMD160 (github.com__azure_azure-sdk-for-go_@v_v41.3.0+incompatible.mod) = 23f84f3bda5e834ca479cd36203a4490457181a8
+SHA512 (github.com__azure_azure-sdk-for-go_@v_v41.3.0+incompatible.mod) = 
be976846ed78cec5b19618c7364c47e66c3475519bed166ad1e6b666399ea08028fa621869ab4980981fc70256acc9a7dd1c1e52c8d3d44cb0ac75f9907b6d3e
+Size (github.com__azure_azure-sdk-for-go_@v_v41.3.0+incompatible.mod) = 41 bytes
+SHA1 (github.com__azure_azure-sdk-for-go_@v_v55.2.0+incompatible.mod) = f9109627fbe12f64f8eb8833bd5b229a66ce0b23
+RMD160 (github.com__azure_azure-sdk-for-go_@v_v55.2.0+incompatible.mod) = 23f84f3bda5e834ca479cd36203a4490457181a8
+SHA512 (github.com__azure_azure-sdk-for-go_@v_v55.2.0+incompatible.mod) = 
be976846ed78cec5b19618c7364c47e66c3475519bed166ad1e6b666399ea08028fa621869ab4980981fc70256acc9a7dd1c1e52c8d3d44cb0ac75f9907b6d3e
+Size (github.com__azure_azure-sdk-for-go_@v_v55.2.0+incompatible.mod) = 41 bytes
+SHA1 (github.com__azure_azure-sdk-for-go_@v_v55.2.0+incompatible.zip) = 197441fd8617321d1c11b7b62fcf4b09991de64f
+RMD160 (github.com__azure_azure-sdk-for-go_@v_v55.2.0+incompatible.zip) = 2769b5ab47b077cb8d873d833dba08268d43f76d
+SHA512 (github.com__azure_azure-sdk-for-go_@v_v55.2.0+incompatible.zip) = 
bd9373e5ab1361fdab95fc8ba1e22249ccc614e371b2b13f5ab7ee089e10247553978fe9498a64167df458db76ea069d1a15f7ca298cb26c06c14da41ffc4889
+Size (github.com__azure_azure-sdk-for-go_@v_v55.2.0+incompatible.zip) = 55130461 bytes
 SHA1 (github.com__azure_go-ansiterm_@v_v0.0.0-20170929234023-d6e3b3328b78.mod) = cf05d4ff8c15d59077448a34bb7e1a6cf2268cf1
 RMD160 (github.com__azure_go-ansiterm_@v_v0.0.0-20170929234023-d6e3b3328b78.mod) = 01887e3eb4034556b0a7e4b314066bf2a185cb36
 SHA512 (github.com__azure_go-ansiterm_@v_v0.0.0-20170929234023-d6e3b3328b78.mod) = 
350a16c68553738ce8c2f4a6ac8beba66a7dcf2386a42aff938ebaa3bdc526bda8e5c51c493331eda4666cbcf8411ee7ca3aeb0768cc4f557f34585960f9eb84
@@ -216,34 +232,94 @@
 RMD160 (github.com__azure_go-autorest_@v_v14.2.0+incompatible.zip) = 6758ea05027a5ee3b68239abc0f0ee1e367142d8
 SHA512 (github.com__azure_go-autorest_@v_v14.2.0+incompatible.zip) = b5615d6e8b8e3d1550218258027891063d3296af88918fd63559d2c108a5faad4ee1281c57dbbe51057f1c417ba94895a59e969550acc0ed276a7cf648ff6ac7
 Size (github.com__azure_go-autorest_@v_v14.2.0+incompatible.zip) = 24733 bytes
-SHA1 (github.com__azure_go-autorest_autorest_@v_v0.11.1.mod) = c532bfa8ccab3b455bcc0e0954501d15fe04efae
-RMD160 (github.com__azure_go-autorest_autorest_@v_v0.11.1.mod) = ba8dc4d6f330bcb583f7361642e3df893b7c376a
-SHA512 (github.com__azure_go-autorest_autorest_@v_v0.11.1.mod) = bfb202512ad2101bd0d0bf6bd3e712f528a5f3b280ccaabe96c54ae06e5deb474cc0bdef0be5f3faae1dee6ca676531acfb4c4e53a5c34022a718e73f457c9e7
-Size (github.com__azure_go-autorest_autorest_@v_v0.11.1.mod) = 366 bytes
-SHA1 (github.com__azure_go-autorest_autorest_@v_v0.11.18.mod) = 50aee0364458dd06af5cdd4c2fac7edb35690f6f
-RMD160 (github.com__azure_go-autorest_autorest_@v_v0.11.18.mod) = 36cbc3d0f8e35080c18ba10ed18e0d76f914675c
-SHA512 (github.com__azure_go-autorest_autorest_@v_v0.11.18.mod) = 87bf6ed1a08ab82817e95baa6b605c56d368bfcc859edbc3b16200700beacfc92a413f59052ae59988d24fbffa66aa5acc20d5f0b1c0f784b3ecf0e6179d893f
-Size (github.com__azure_go-autorest_autorest_@v_v0.11.18.mod) = 367 bytes
-SHA1 (github.com__azure_go-autorest_autorest_@v_v0.11.18.zip) = b8cb323a2bac2d72b83e7314ac2155dbfffc17c3
-RMD160 (github.com__azure_go-autorest_autorest_@v_v0.11.18.zip) = 486be28edeed9505081a2a749ea71d68b248d74d
-SHA512 (github.com__azure_go-autorest_autorest_@v_v0.11.18.zip) = 1083a5f773d78d0f79f121222d2853b9ffa5cbbbe80538a4c14217bf67d551918e9f35ff0d2b446113db60756c6d0d6676604171426ded48d93f122d49c4b9dc
-Size (github.com__azure_go-autorest_autorest_@v_v0.11.18.zip) = 112025 bytes
-SHA1 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.0.mod) = c60a0c1205a08916beebc596b1a3a6555ae6633e
-RMD160 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.0.mod) = 5949119d46df6900c796c28ba9e9ca989fa9d4e7
-SHA512 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.0.mod) = 684a7c8f51caebd1bb90c7eac482ebf9a52228c57a5b31ea1b3d3019864bf669688742bf5f9159995e5a6ddb3786aad9dd10c37925767ce9f38641c9a7448e3b
-Size (github.com__azure_go-autorest_autorest_adal_@v_v0.9.0.mod) = 376 bytes
+SHA1 (github.com__azure_go-autorest_autorest_@v_v0.10.0.mod) = bda3cd24d5958dcc15ce070469e31cdcf34115b0
+RMD160 (github.com__azure_go-autorest_autorest_@v_v0.10.0.mod) = adde1238d91b6a2bc1bde0ca37b9ec897c22463f
+SHA512 (github.com__azure_go-autorest_autorest_@v_v0.10.0.mod) = eca3516d2491afa621522aae14e0e5c8632b984d8c6daff3a69df9b2b46416eeacdbd11de8cbc2247fb1119051466d24a4c178b065b630a684be8476be1ef15c
+Size (github.com__azure_go-autorest_autorest_@v_v0.10.0.mod) = 315 bytes
+SHA1 (github.com__azure_go-autorest_autorest_@v_v0.10.1.mod) = bda3cd24d5958dcc15ce070469e31cdcf34115b0
+RMD160 (github.com__azure_go-autorest_autorest_@v_v0.10.1.mod) = adde1238d91b6a2bc1bde0ca37b9ec897c22463f
+SHA512 (github.com__azure_go-autorest_autorest_@v_v0.10.1.mod) = eca3516d2491afa621522aae14e0e5c8632b984d8c6daff3a69df9b2b46416eeacdbd11de8cbc2247fb1119051466d24a4c178b065b630a684be8476be1ef15c
+Size (github.com__azure_go-autorest_autorest_@v_v0.10.1.mod) = 315 bytes
+SHA1 (github.com__azure_go-autorest_autorest_@v_v0.11.12.mod) = b768f6e02f8cfc85a9861d38fd4e172eadd02ea1
+RMD160 (github.com__azure_go-autorest_autorest_@v_v0.11.12.mod) = 08d233ca1c0c64a257ef261dc6568ebd4b5f1663
+SHA512 (github.com__azure_go-autorest_autorest_@v_v0.11.12.mod) = 67b890270798e538335a74754514d4f2fde7e012f1201d30d3450087866612b88c5613185a5dbc899af84d65fb4265fec59ea064eec3e9362aeecd1187dbfd30
+Size (github.com__azure_go-autorest_autorest_@v_v0.11.12.mod) = 366 bytes
+SHA1 (github.com__azure_go-autorest_autorest_@v_v0.11.19.mod) = 50aee0364458dd06af5cdd4c2fac7edb35690f6f
+RMD160 (github.com__azure_go-autorest_autorest_@v_v0.11.19.mod) = 36cbc3d0f8e35080c18ba10ed18e0d76f914675c
+SHA512 (github.com__azure_go-autorest_autorest_@v_v0.11.19.mod) = 87bf6ed1a08ab82817e95baa6b605c56d368bfcc859edbc3b16200700beacfc92a413f59052ae59988d24fbffa66aa5acc20d5f0b1c0f784b3ecf0e6179d893f
+Size (github.com__azure_go-autorest_autorest_@v_v0.11.19.mod) = 367 bytes
+SHA1 (github.com__azure_go-autorest_autorest_@v_v0.11.19.zip) = 6f6ea765147b0306ae8766e587870fcf468388a5
+RMD160 (github.com__azure_go-autorest_autorest_@v_v0.11.19.zip) = 3011627fff9995510b8ecf211cea804a8b01de52
+SHA512 (github.com__azure_go-autorest_autorest_@v_v0.11.19.zip) = b625fc794a405ffe3fdf96afcd172c18800aec936f951aecd0d849d49bf214babdcc10a10dc3c65c09367fb2ebd83c7a83f4ae5a318fa816215b80218e7f5e6a
+Size (github.com__azure_go-autorest_autorest_@v_v0.11.19.zip) = 112742 bytes
+SHA1 (github.com__azure_go-autorest_autorest_@v_v0.9.0.mod) = e3ba7088e546dcb9d5da3598d236caffe799507d
+RMD160 (github.com__azure_go-autorest_autorest_@v_v0.9.0.mod) = 33a11fb97276d868e8e857c74cfe51814246b50e
+SHA512 (github.com__azure_go-autorest_autorest_@v_v0.9.0.mod) = 72bb5cdb3b87c148cf4b613f3976076ffa0f8406d0d85b92b8f0311ca260e643c7855a939292dd82c66a71d4c5a1419a90b13f886bd65c7138062c34eaeae0b8
+Size (github.com__azure_go-autorest_autorest_@v_v0.9.0.mod) = 315 bytes
+SHA1 (github.com__azure_go-autorest_autorest_@v_v0.9.3.mod) = 841af7d222389d6f5d9a7968d5bc88a8557a1241
+RMD160 (github.com__azure_go-autorest_autorest_@v_v0.9.3.mod) = 228f6b9bf3a22bf55f2400c0bfa7d74a02060278
+SHA512 (github.com__azure_go-autorest_autorest_@v_v0.9.3.mod) = 72629745cdd14c9c66a696700baecb37589b565862873cbdb9711545df08c7af659aeb4dc4725c7ef9c19af9889b9007935487530a87ff97267f98811b701924
+Size (github.com__azure_go-autorest_autorest_@v_v0.9.3.mod) = 315 bytes
+SHA1 (github.com__azure_go-autorest_autorest_adal_@v_v0.5.0.mod) = 32bca1623cd6168bdfb7e5fbf616e7a655d50e6b
+RMD160 (github.com__azure_go-autorest_autorest_adal_@v_v0.5.0.mod) = 76e617d1bb04f5645a8a4b2a9caa2867ae737453
+SHA512 (github.com__azure_go-autorest_autorest_adal_@v_v0.5.0.mod) = 61c06f593c1759bb078042d461319db2f91afcbddf50186d09195021eab865159ca5c017eb078d354d7db590365846e401ec3f91a2cbbf753bc32d7111683bd2
+Size (github.com__azure_go-autorest_autorest_adal_@v_v0.5.0.mod) = 325 bytes
+SHA1 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.0.mod) = 942a42a77a706900dcab632577133d074252f5b0
+RMD160 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.0.mod) = c31cff4797ea193dfb49ee8f7949ac944a7e261d
+SHA512 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.0.mod) = 6c4daa23efdfe8ba8d2a9e31cbffade7636519c56af858f24c7ab154924fb5915c13030e5ce1aff2a7f23e99b0b48dc692744109fce7da66e77ab12fe45980c6
+Size (github.com__azure_go-autorest_autorest_adal_@v_v0.8.0.mod) = 371 bytes
+SHA1 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.1.mod) = d6b5e107627f418a60fead3c60df8c63ce028ee0
+RMD160 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.1.mod) = 035167786adb328068edbd0c06498e3ef60a0f41
+SHA512 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.1.mod) = 02605c296a8277e72074a0b3049ef0ee87597b67ba8d1e008d17746ee2dfc2551e2517e60f972135d368b27b899452e1c768c3b13afb9315da48173733450fe7
+Size (github.com__azure_go-autorest_autorest_adal_@v_v0.8.1.mod) = 371 bytes
+SHA1 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.2.mod) = d6b5e107627f418a60fead3c60df8c63ce028ee0
+RMD160 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.2.mod) = 035167786adb328068edbd0c06498e3ef60a0f41
+SHA512 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.2.mod) = 02605c296a8277e72074a0b3049ef0ee87597b67ba8d1e008d17746ee2dfc2551e2517e60f972135d368b27b899452e1c768c3b13afb9315da48173733450fe7
+Size (github.com__azure_go-autorest_autorest_adal_@v_v0.8.2.mod) = 371 bytes
+SHA1 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.3.mod) = d6b5e107627f418a60fead3c60df8c63ce028ee0
+RMD160 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.3.mod) = 035167786adb328068edbd0c06498e3ef60a0f41
+SHA512 (github.com__azure_go-autorest_autorest_adal_@v_v0.8.3.mod) = 02605c296a8277e72074a0b3049ef0ee87597b67ba8d1e008d17746ee2dfc2551e2517e60f972135d368b27b899452e1c768c3b13afb9315da48173733450fe7
+Size (github.com__azure_go-autorest_autorest_adal_@v_v0.8.3.mod) = 371 bytes
 SHA1 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.13.mod) = 25d95448945cc29e2b30ef296a29bd3434270e3d
 RMD160 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.13.mod) = d6a1e2b653b58c6fcde6d12d0ac3e13122581d03
 SHA512 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.13.mod) = 873698094ff3f392a54d01ae2b5744cbdce84e10b7c28b930aa7366d72dde4ece9636e168b003c46f8a21eeebddab150e687626338f6d938798b99c35bb62ced
 Size (github.com__azure_go-autorest_autorest_adal_@v_v0.9.13.mod) = 424 bytes
-SHA1 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.13.zip) = 7b3c0708726f842342759b5da52e451376fab667
-RMD160 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.13.zip) = 5a0935f7011fdb96fbb48d54c393dab188a75b0f
-SHA512 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.13.zip) = 2c78eb875092f1cd18289c1e5f0585324bac3e534dfc0967c3f5c14dc1063b0b1ed3e602a121a750cc24110dffc6eba8d738a4f2055c1730221418857aa8d484
-Size (github.com__azure_go-autorest_autorest_adal_@v_v0.9.13.zip) = 47890 bytes
+SHA1 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.14.mod) = 25d95448945cc29e2b30ef296a29bd3434270e3d
+RMD160 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.14.mod) = d6a1e2b653b58c6fcde6d12d0ac3e13122581d03
+SHA512 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.14.mod) = 873698094ff3f392a54d01ae2b5744cbdce84e10b7c28b930aa7366d72dde4ece9636e168b003c46f8a21eeebddab150e687626338f6d938798b99c35bb62ced
+Size (github.com__azure_go-autorest_autorest_adal_@v_v0.9.14.mod) = 424 bytes
+SHA1 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.14.zip) = f12c54b815a9ed73692844f8d54196243bb92c77
+RMD160 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.14.zip) = 4a4417ebf0ddf2d1a63c3e2543ba4c4900937927
+SHA512 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.14.zip) = 6f407cd44ea93583e926e7ef6f9d9e8a5a9c003d2cfb84b2c95281d52b3fbbcb6385e94fe1310f4d4a0dbee66349a45bb9ce3fcf58abb6db93d933a3fd49420a
+Size (github.com__azure_go-autorest_autorest_adal_@v_v0.9.14.zip) = 47896 bytes
 SHA1 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.5.mod) = a320f058769c6b3506bed1ef031389f787f951ba
 RMD160 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.5.mod) = 8127070eff1e442e98a6d5f3f19d7e3992fda4e3
 SHA512 (github.com__azure_go-autorest_autorest_adal_@v_v0.9.5.mod) = 63536f9954ee05c36e35abee4e91f9791fa97e10a945bb51c710cb2aeaf3a567d999193f968ce54e8d530be617fb55dd6e3a0c0b88f8edc96d1f92d348b13cac
 Size (github.com__azure_go-autorest_autorest_adal_@v_v0.9.5.mod) = 380 bytes
+SHA1 (github.com__azure_go-autorest_autorest_azure_auth_@v_v0.4.2.mod) = dc10774247281960c80246d21530e502ede37c28
+RMD160 (github.com__azure_go-autorest_autorest_azure_auth_@v_v0.4.2.mod) = 8427605504129aa63fad213a28db7c38fa9beb71
+SHA512 (github.com__azure_go-autorest_autorest_azure_auth_@v_v0.4.2.mod) = 
bd16fa0408713689dead4e6ef5503a83489512de98535a55dc0662f626840bcae0373f19379ee0489c32531350383dbee7c645071c5d5e83552053be564d283a
+Size (github.com__azure_go-autorest_autorest_azure_auth_@v_v0.4.2.mod) = 324 bytes
+SHA1 (github.com__azure_go-autorest_autorest_azure_auth_@v_v0.4.2.zip) = 302730c9718bc8e6218847a72aa2100ffcaeae5d
+RMD160 (github.com__azure_go-autorest_autorest_azure_auth_@v_v0.4.2.zip) = 179662d6a5d8f171b10f633b204404784b0801d1
+SHA512 (github.com__azure_go-autorest_autorest_azure_auth_@v_v0.4.2.zip) = 
b659673f500abf7bc23531764165e86e5a17209cc59098b0cbbd8c2b44c8b63e3fc54c10cc4346fe94f2fa451b8c6054b8d9e974b857f7893238b806b066de61
+Size (github.com__azure_go-autorest_autorest_azure_auth_@v_v0.4.2.zip) = 16255 bytes
+SHA1 (github.com__azure_go-autorest_autorest_azure_cli_@v_v0.3.1.mod) = 06a2d452f91d26ca80efc33a43ac183d982bba79
+RMD160 (github.com__azure_go-autorest_autorest_azure_cli_@v_v0.3.1.mod) = 2c5f4bf16f9c05e05b6ae63e7dbb6042b63bebe5
+SHA512 (github.com__azure_go-autorest_autorest_azure_cli_@v_v0.3.1.mod) = 
09e11d4655a40002fff8472827035f1834881b689f84aaebcbe3a9795f94bb9ce8b281a6a5bd02fa0e310912822f2c3dee5da2fc794bc5c34cdc9afe1000e306
+Size (github.com__azure_go-autorest_autorest_azure_cli_@v_v0.3.1.mod) = 302 bytes
+SHA1 (github.com__azure_go-autorest_autorest_azure_cli_@v_v0.3.1.zip) = 5ee8063229dc3493698e97e5b8547f5495716c83
+RMD160 (github.com__azure_go-autorest_autorest_azure_cli_@v_v0.3.1.zip) = 96e4beba21a1ad419f1662f7cf7a22ec813cbd6c
+SHA512 (github.com__azure_go-autorest_autorest_azure_cli_@v_v0.3.1.zip) = 
76125df9d1ee4e858c0935c32cbc3e4b8992d52a9d1ffa558383e3b884b80ea2f1a50f5399d7ab0a440fc247f8522aa34d8d4c6284656c353eabcbaac412eeac
+Size (github.com__azure_go-autorest_autorest_azure_cli_@v_v0.3.1.zip) = 10691 bytes
+SHA1 (github.com__azure_go-autorest_autorest_date_@v_v0.1.0.mod) = 2f310cc02555cee08e3a3b36311bfaf275c9f561
+RMD160 (github.com__azure_go-autorest_autorest_date_@v_v0.1.0.mod) = f1cd11be6f645cef64169e34cdaafcc9fe4c50f8
+SHA512 (github.com__azure_go-autorest_autorest_date_@v_v0.1.0.mod) = d5eb17738399f8b8e1a1be409ba5b24520b848b3be5fced46c726499f9df5bf5a54233c6c0c9b8fe896834bcf5132f39ba0b91bac0ce6347b9aef7c8bf93f912
+Size (github.com__azure_go-autorest_autorest_date_@v_v0.1.0.mod) = 59 bytes
+SHA1 (github.com__azure_go-autorest_autorest_date_@v_v0.2.0.mod) = 04f381e395de6046a94c51919e87daae1ae55d0c
+RMD160 (github.com__azure_go-autorest_autorest_date_@v_v0.2.0.mod) = 22f8f661f938a27821c6b67ab7e2e1f8aef8b7db
+SHA512 (github.com__azure_go-autorest_autorest_date_@v_v0.2.0.mod) = 08860dbcc27a83f322c07cb64b9fb1dad3810f8a7dda4ad5914b3fb8dcdc14fd20640e5aa78ad5dbd220c6dd95b8c9ab6e15c4bd75dc476db743f1c5df1fac95
+Size (github.com__azure_go-autorest_autorest_date_@v_v0.2.0.mod) = 113 bytes
 SHA1 (github.com__azure_go-autorest_autorest_date_@v_v0.3.0.mod) = 7006c7e553c619b713f3fd42808f0fea5a6e991c
 RMD160 (github.com__azure_go-autorest_autorest_date_@v_v0.3.0.mod) = 6d2f2c5e7de65141830990de5005c3d0eb27a4c3
 SHA512 (github.com__azure_go-autorest_autorest_date_@v_v0.3.0.mod) = d48c483ef76bb5ec8d721ba828cade25defd91bb2c0dfc3b44df36742b86e8e0650a2d010bc7843a0b4317633676c393f4044998cf7f953125bed93bb7fb9375
@@ -252,10 +328,18 @@
 RMD160 (github.com__azure_go-autorest_autorest_date_@v_v0.3.0.zip) = 7f809c40d871c5d23b1cc30ba9024dc57e085d61
 SHA512 (github.com__azure_go-autorest_autorest_date_@v_v0.3.0.zip) = 9e4a0d741c735d4e285ce8b0fbb7f19e98424593cadc64a5b958e273bab208e8102140c4570069ee4e35ae3c1f5bcddba3cda854f7a6df6b50f736008a5a34a5
 Size (github.com__azure_go-autorest_autorest_date_@v_v0.3.0.zip) = 18297 bytes
-SHA1 (github.com__azure_go-autorest_autorest_mocks_@v_v0.4.0.mod) = 4f48215f009a0185d2b258f450ed9175c44c24f1
-RMD160 (github.com__azure_go-autorest_autorest_mocks_@v_v0.4.0.mod) = f3744ab56458f3c77081bd4dfaf00361d76d3029
-SHA512 (github.com__azure_go-autorest_autorest_mocks_@v_v0.4.0.mod) = 6a9196afd0b5bcafef72c001742e1c8e45ffd0d7f53ad64ff33a8388b71d90917cff08687ffdcc80f5f64806269c120ffd3ae7d0d718c6fb8b2810b2fc2b5e28
-Size (github.com__azure_go-autorest_autorest_mocks_@v_v0.4.0.mod) = 119 bytes
+SHA1 (github.com__azure_go-autorest_autorest_mocks_@v_v0.1.0.mod) = 659b1f6ade047706dfcd2f5a207ad54f14e92c45
+RMD160 (github.com__azure_go-autorest_autorest_mocks_@v_v0.1.0.mod) = ef1e33ba2e9a2bdfb2fdd056063cd0654811385f
+SHA512 (github.com__azure_go-autorest_autorest_mocks_@v_v0.1.0.mod) = 98a8b2ccac214ef2a701c0bca2bb3512acdab19294d516ae6c8fe028d87393b055aa2e589cb273704ea4f612a1c949194014394aeb7d8ecd92233401e6ca35a6
+Size (github.com__azure_go-autorest_autorest_mocks_@v_v0.1.0.mod) = 60 bytes
+SHA1 (github.com__azure_go-autorest_autorest_mocks_@v_v0.2.0.mod) = 659b1f6ade047706dfcd2f5a207ad54f14e92c45



Home | Main Index | Thread Index | Old Index