pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/sysutils/restic-rest-server
Module Name: pkgsrc
Committed By: wiz
Date: Tue Aug 6 12:54:42 UTC 2024
Modified Files:
pkgsrc/sysutils/restic-rest-server: Makefile distinfo go-modules.mk
Log Message:
restic-rest-server: update to 0.13.0.
Changelog for rest-server 0.13.0 (2024-07-26)
============================================
The following sections list the changes in rest-server 0.13.0 relevant
to users. The changes are ordered by importance.
Summary
-------
* Chg #267: Update dependencies and require Go 1.18 or newer
* Chg #273: Shut down cleanly on TERM and INT signals
* Enh #271: Print listening address after start-up
* Enh #272: Support listening on a unix socket
Details
-------
* Change #267: Update dependencies and require Go 1.18 or newer
Most dependencies have been updated. Since some libraries require newer language
features, support for Go 1.17 has been dropped, which means that rest-server now
requires at least Go 1.18 to build.
https://github.com/restic/rest-server/pull/267
* Change #273: Shut down cleanly on TERM and INT signals
Rest-server now listens for TERM and INT signals and cleanly closes down the
http.Server and listener when receiving either of them.
This is particularly useful when listening on a unix socket, as the server will
now remove the socket file when it shuts down.
https://github.com/restic/rest-server/pull/273
* Enhancement #271: Print listening address after start-up
When started with `--listen :0`, rest-server would print `start server on :0`
The message now also includes the actual address listened on, for example `start
server on 0.0.0.0:37333`. This is useful when starting a server with an
auto-allocated free port number (port 0).
https://github.com/restic/rest-server/pull/271
* Enhancement #272: Support listening on a unix socket
It is now possible to make rest-server listen on a unix socket by prefixing the
socket filename with `unix:` and passing it to the `--listen` option, for
example `--listen unix:/tmp/foo`.
This is useful in combination with remote port forwarding to enable a remote
server to backup locally, e.g.:
```
rest-server --listen unix:/tmp/foo &
ssh -R /tmp/foo:/tmp/foo user@host restic -r rest:http+unix:///tmp/foo:/repo backup
```
https://github.com/restic/rest-server/pull/272
Changelog for rest-server 0.12.1 (2023-07-09)
============================================
The following sections list the changes in rest-server 0.12.1 relevant
to users. The changes are ordered by importance.
Summary
-------
* Fix #230: Fix erroneous warnings about unsupported fsync
* Fix #238: API: Return empty array when listing empty folders
* Enh #217: Log to stdout using the `--log -` option
Details
-------
* Bugfix #230: Fix erroneous warnings about unsupported fsync
Due to a regression in rest-server 0.12.0, it continuously printed `WARNING:
fsync is not supported by the data storage. This can lead to data loss, if the
system crashes or the storage is unexpectedly disconnected.` for systems that
support fsync. We have fixed the warning.
https://github.com/restic/rest-server/issues/230
https://github.com/restic/rest-server/pull/231
* Bugfix #238: API: Return empty array when listing empty folders
Rest-server returned `null` when listing an empty folder. This has been changed
to returning an empty array in accordance with the REST protocol specification.
This change has no impact on restic users.
https://github.com/restic/rest-server/issues/238
https://github.com/restic/rest-server/pull/239
* Enhancement #217: Log to stdout using the `--log -` option
Logging to stdout was possible using `--log /dev/stdout`. However, when the rest
server is run as a different user, for example, using
`sudo -u restic rest-server [...] --log /dev/stdout`
This did not work due to permission issues.
For logging to stdout, the `--log` option now supports the special filename `-`
which also works in these cases.
https://github.com/restic/rest-server/pull/217
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/sysutils/restic-rest-server/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/restic-rest-server/distinfo \
pkgsrc/sysutils/restic-rest-server/go-modules.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/sysutils/restic-rest-server/Makefile
diff -u pkgsrc/sysutils/restic-rest-server/Makefile:1.12 pkgsrc/sysutils/restic-rest-server/Makefile:1.13
--- pkgsrc/sysutils/restic-rest-server/Makefile:1.12 Wed Jul 3 06:59:33 2024
+++ pkgsrc/sysutils/restic-rest-server/Makefile Tue Aug 6 12:54:42 2024
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.12 2024/07/03 06:59:33 bsiegert Exp $
+# $NetBSD: Makefile,v 1.13 2024/08/06 12:54:42 wiz Exp $
-DISTNAME= rest-server-0.12.1
+DISTNAME= rest-server-0.13.0
PKGNAME= restic-${DISTNAME}
-PKGREVISION= 9
CATEGORIES= sysutils www
MASTER_SITES= ${MASTER_SITE_GITHUB:=restic/}
GITHUB_PROJECT= rest-server
Index: pkgsrc/sysutils/restic-rest-server/distinfo
diff -u pkgsrc/sysutils/restic-rest-server/distinfo:1.2 pkgsrc/sysutils/restic-rest-server/distinfo:1.3
--- pkgsrc/sysutils/restic-rest-server/distinfo:1.2 Thu Oct 19 12:57:29 2023
+++ pkgsrc/sysutils/restic-rest-server/distinfo Tue Aug 6 12:54:42 2024
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.2 2023/10/19 12:57:29 wiz Exp $
+$NetBSD: distinfo,v 1.3 2024/08/06 12:54:42 wiz Exp $
BLAKE2s (github.com_beorn7_perks_@v_v1.0.1.mod) = 3386f8007a627917f183391cfdd8aa248c19db3340b5bd857152b8644fc9ca8e
SHA512 (github.com_beorn7_perks_@v_v1.0.1.mod) = d0c78b8f08d177e05148ce845f8d720fe79a193a420c12ce15504af8fa3dffc4d2fcebea8030f5cca90aff5775013e2252e0c289d4ed5094e07657ea97a79570
@@ -18,12 +18,9 @@ Size (github.com_coreos_go-systemd_v22_@
BLAKE2s (github.com_coreos_go-systemd_v22_@v_v22.5.0.zip) = 4ee72d8564664a77dd5a818731d730e16827ebf16081014c1df222cae2c3cb2b
SHA512 (github.com_coreos_go-systemd_v22_@v_v22.5.0.zip) = f4d4e1f871703b31e17516b9b94bdfc7aa8f7dc21c526db55ed045ce2a5ede641239860088452f42bf50eb289ebd7c96cc638ed0f6a77f08a1c2cb2d0e3c3bfe
Size (github.com_coreos_go-systemd_v22_@v_v22.5.0.zip) = 126112 bytes
-BLAKE2s (github.com_cpuguy83_go-md2man_v2_@v_v2.0.2.mod) = 5d28aa7bd4d3be65c094ff1eff00044ed7a895928d188f7a279b5bd9a596d393
-SHA512 (github.com_cpuguy83_go-md2man_v2_@v_v2.0.2.mod) = d39412bb14c058291d07276337f802547bfb1a682cc65199cb04334f8089b6ea5d4d73587c2765c518f9e27fa3421c276eaea616d7cfbe36a2a244326edf1cb5
-Size (github.com_cpuguy83_go-md2man_v2_@v_v2.0.2.mod) = 100 bytes
-BLAKE2s (github.com_felixge_httpsnoop_@v_v1.0.1.mod) = 8a39c64b6c9e5a984ea9df97706a45b2b43c19a4e243129661ab98de229e4e71
-SHA512 (github.com_felixge_httpsnoop_@v_v1.0.1.mod) = 7bdc5f80046ba76d6bea23b428460edb7ae3e0837574927b22f903ad2846eca18c202cb77cfe4273b8814bacbd6ce3f28581ae3e0c7c09342622e5a582f1b691
-Size (github.com_felixge_httpsnoop_@v_v1.0.1.mod) = 45 bytes
+BLAKE2s (github.com_cpuguy83_go-md2man_v2_@v_v2.0.4.mod) = 5d28aa7bd4d3be65c094ff1eff00044ed7a895928d188f7a279b5bd9a596d393
+SHA512 (github.com_cpuguy83_go-md2man_v2_@v_v2.0.4.mod) = d39412bb14c058291d07276337f802547bfb1a682cc65199cb04334f8089b6ea5d4d73587c2765c518f9e27fa3421c276eaea616d7cfbe36a2a244326edf1cb5
+Size (github.com_cpuguy83_go-md2man_v2_@v_v2.0.4.mod) = 100 bytes
BLAKE2s (github.com_felixge_httpsnoop_@v_v1.0.3.mod) = 8a39c64b6c9e5a984ea9df97706a45b2b43c19a4e243129661ab98de229e4e71
SHA512 (github.com_felixge_httpsnoop_@v_v1.0.3.mod) = 7bdc5f80046ba76d6bea23b428460edb7ae3e0837574927b22f903ad2846eca18c202cb77cfe4273b8814bacbd6ce3f28581ae3e0c7c09342622e5a582f1b691
Size (github.com_felixge_httpsnoop_@v_v1.0.3.mod) = 45 bytes
@@ -33,27 +30,12 @@ Size (github.com_felixge_httpsnoop_@v_v1
BLAKE2s (github.com_godbus_dbus_v5_@v_v5.0.4.mod) = 14df8b500892bef1fedace1cd033fe9cd8436ebbd9d5852139270c31636539b8
SHA512 (github.com_godbus_dbus_v5_@v_v5.0.4.mod) = b9aad4f1c1d4f2c43b293b0c9ca8a600a37ca407ba8b22b0f826c8355828cb7860a96a85df84f720fe8aa2840974807ea7ea7b790790c6dafed794e761f1f26b
Size (github.com_godbus_dbus_v5_@v_v5.0.4.mod) = 42 bytes
-BLAKE2s (github.com_golang_protobuf_@v_v1.2.0.mod) = 8836436cb8d73217522d565a51dd5cade163931200a3b8638176b2238c65a87a
-SHA512 (github.com_golang_protobuf_@v_v1.2.0.mod) = e059a34363bb826bbcb8981adbfc10da90e04b86dc5376ab20bdfe1fab135953cff41ef1daa116aff10e9f3e6503168f6baf902f09aa0e8cd9a0da96b932f4b6
-Size (github.com_golang_protobuf_@v_v1.2.0.mod) = 34 bytes
-BLAKE2s (github.com_golang_protobuf_@v_v1.5.0.mod) = 0acc4b18c31f79cfba3382e00e247754a4ab48bb17f2fd03fe4ff0cebc509f99
-SHA512 (github.com_golang_protobuf_@v_v1.5.0.mod) = 467a3f6fb4c941cd55d8d4b2d6a2015966c60a8614691539c88c4bf0da2f8022055be8561cddd0e60b118f74f010be5998dd128b7b136f14edd2674e5650db2a
-Size (github.com_golang_protobuf_@v_v1.5.0.mod) = 129 bytes
-BLAKE2s (github.com_golang_protobuf_@v_v1.5.3.mod) = 40cf7971e01091dd61082a900b2339bbf92a56f6ecd271b037412785733a5a67
-SHA512 (github.com_golang_protobuf_@v_v1.5.3.mod) = 44c996ad31bf02aec42bef934d7cd65379ae5eca4d1069dab8c478be169f9479cbd55f8f72bd9567e51535d31c9f65cd1d56bbefb8b745f96cad0f5953f8c420
-Size (github.com_golang_protobuf_@v_v1.5.3.mod) = 192 bytes
-BLAKE2s (github.com_golang_protobuf_@v_v1.5.3.zip) = 15bbdfe655085fee8dbe452c1584f09494917fbff0c732f443e94cd82dc8ba57
-SHA512 (github.com_golang_protobuf_@v_v1.5.3.zip) = f0e75554f991e69424fec9d8fb18efce872793408819a94af6a701b74bafa45fcd9eb3082c2eed45811aa008c73fe693ecbc20992ccd0c0765326b8028c911b3
-Size (github.com_golang_protobuf_@v_v1.5.3.zip) = 207048 bytes
-BLAKE2s (github.com_google_go-cmp_@v_v0.5.5.mod) = 54befdbebc1a7ed8c2f5de2cc688fab3ab3337a212c5f36bde6d427830820200
-SHA512 (github.com_google_go-cmp_@v_v0.5.5.mod) = cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713
-Size (github.com_google_go-cmp_@v_v0.5.5.mod) = 105 bytes
-BLAKE2s (github.com_gorilla_handlers_@v_v1.5.1.mod) = b4c35a972c6f28cd7dffe332717e6b869e49bfb56809eb3d74cc4450917899a8
-SHA512 (github.com_gorilla_handlers_@v_v1.5.1.mod) = 8116b2c8317e0f834a0e26b15f9c978a44ce7ccc0881b7ba454e686b3cebc2615c6d86753899e8258efb81b09e5001f5f58258e47d9307f1db3d001cba857982
-Size (github.com_gorilla_handlers_@v_v1.5.1.mod) = 89 bytes
-BLAKE2s (github.com_gorilla_handlers_@v_v1.5.1.zip) = 546252bea7f4628b455a1fbb59d359b7f6f39c87be6d279dfcc24d32e573ff2f
-SHA512 (github.com_gorilla_handlers_@v_v1.5.1.zip) = 093108e3d9bb3640b73ce90cff049ac46d1469c3ddbe3564b271c915c6a1aa3d8fe1e10ee968d37a7696db9577d65ba3ac55e1dbb145c3b01eef1791b6a8cbf3
-Size (github.com_gorilla_handlers_@v_v1.5.1.zip) = 29646 bytes
+BLAKE2s (github.com_gorilla_handlers_@v_v1.5.2.mod) = 498c83fdbbd8e527a7fab58dd6402497b91865ba8fc859bf33c96b3e6d09a518
+SHA512 (github.com_gorilla_handlers_@v_v1.5.2.mod) = 52d7fd9289883a64ccb9c1c640dff50c725bf97618e44f4676d47bd0c02a3943f591a2bd3d9b48fc943341fd238d9880270cf5548c5b0d614ce0bf5e98756632
+Size (github.com_gorilla_handlers_@v_v1.5.2.mod) = 89 bytes
+BLAKE2s (github.com_gorilla_handlers_@v_v1.5.2.zip) = 006800a6197b3e2c026c5657c07e62317cebd91b44645bab44fadbf763ad6c69
+SHA512 (github.com_gorilla_handlers_@v_v1.5.2.zip) = 5577e19288861d2c63b5516f9faa6933d3c4893c47c5c5add94d715828f3ea1b9cf3a014cc7ec99d14e219deda74cd63241f9c250d0b9e5e8369dad56f8f8e22
+Size (github.com_gorilla_handlers_@v_v1.5.2.zip) = 31381 bytes
BLAKE2s (github.com_inconshreveable_mousetrap_@v_v1.1.0.mod) = 8fff520201806b7001b58363f7bfcfa3ed234c4f128af4ebb7804b421afb12b3
SHA512 (github.com_inconshreveable_mousetrap_@v_v1.1.0.mod) = 43d24d46c0d976a69a05f7b7030efdb1c904995fa16fc869c920989bcbff7cef072bc53f44bdb53bada8476ea3827bcd2134b5ce42a120c124fbc49891fa558f
Size (github.com_inconshreveable_mousetrap_@v_v1.1.0.mod) = 53 bytes
@@ -66,12 +48,12 @@ Size (github.com_klauspost_cpuid_v2_@v_v
BLAKE2s (github.com_klauspost_cpuid_v2_@v_v2.2.5.zip) = 5e9acf1d318325da6b641de3225205266f8248ed82bf229fda51da134c5f31cf
SHA512 (github.com_klauspost_cpuid_v2_@v_v2.2.5.zip) = b046d34661fb1712ff3b96945653cb3832f5e4c4c5266464a2e2baed8d7d97fae4b53598299157bae978dd5a5f12e55986cc4afc18129199bd956c2d668c33cf
Size (github.com_klauspost_cpuid_v2_@v_v2.2.5.zip) = 49137 bytes
-BLAKE2s (github.com_matttproud_golang_protobuf_extensions_@v_v1.0.4.mod) = ac1675ee2c8525a738e0337b85f9aeb411f0b6ce39add40fc2ded573755656c2
-SHA512 (github.com_matttproud_golang_protobuf_extensions_@v_v1.0.4.mod) =
e830b9801e4d9645c55dbec3750189c4070d7125dd2aa7332c58e9307917a869bd432cc628680d2e9e88ce646eea9c63ba2f8aa85c53b20bfd3758c5217f5fd9
-Size (github.com_matttproud_golang_protobuf_extensions_@v_v1.0.4.mod) = 178 bytes
-BLAKE2s (github.com_matttproud_golang_protobuf_extensions_@v_v1.0.4.zip) = 68cd3475cab60e0f6830a670b5c54f7dde4decc7f44fbe629350b9917f661df3
-SHA512 (github.com_matttproud_golang_protobuf_extensions_@v_v1.0.4.zip) =
bb3fcf129638d5a59e1ead6e89a5a069891e452dc519219ec28a4d031b63284bb6ed1f84f7e0e09210ccd37db8e7550df8dd2f95f689f2a5edec077230ad8afa
-Size (github.com_matttproud_golang_protobuf_extensions_@v_v1.0.4.zip) = 45223 bytes
+BLAKE2s (github.com_matttproud_golang_protobuf_extensions_v2_@v_v2.0.0.mod) = 4bc936aac56c5b9e04a1bcaccbcf6c768c7f70b93ad87dc1f416537eef8349ad
+SHA512 (github.com_matttproud_golang_protobuf_extensions_v2_@v_v2.0.0.mod) =
daed7aa357ade193ee149d887dc1dca3b4a1afe27a8ad1a38afdc34239b6f045a19229b787af5f445af31cf57b9e70334c8e2f41078ad8b3d5c595c2ee853952
+Size (github.com_matttproud_golang_protobuf_extensions_v2_@v_v2.0.0.mod) = 150 bytes
+BLAKE2s (github.com_matttproud_golang_protobuf_extensions_v2_@v_v2.0.0.zip) = 91773bd306ff5fddf9af4481af06824b03fcdf4bbeb8c020f7397345677b2d69
+SHA512 (github.com_matttproud_golang_protobuf_extensions_v2_@v_v2.0.0.zip) =
875a4daf61dd82c0f1a0673a36e593dbc4f4c6bf83a3834e5eb04225f25b83e2ddc3bc3c9efcdd1293d2c7a33a2825650259144b6acced1881ce3dc90857c053
+Size (github.com_matttproud_golang_protobuf_extensions_v2_@v_v2.0.0.zip) = 20463 bytes
BLAKE2s (github.com_minio_sha256-simd_@v_v1.0.1.mod) = 36f9a34b707391cb2a54a7d329f7baf224f871b8af47ce52db8a5fdf5beb310c
SHA512 (github.com_minio_sha256-simd_@v_v1.0.1.mod) = c1f3c6a4914bf8e97df3107327a81b08c838ff9da3679bd632343d928c16c6fbb3f44a0664c680dcb6f84dc78ddca72045a83913b76d7ac2e7ca19d0142c1ea6
Size (github.com_minio_sha256-simd_@v_v1.0.1.mod) = 164 bytes
@@ -84,84 +66,72 @@ Size (github.com_miolini_datacounter_@v_
BLAKE2s (github.com_miolini_datacounter_@v_v1.0.3.zip) = c936f61bba3ccaec33343221a6f51f72432ede8e2df4e1eb2e7388274c178064
SHA512 (github.com_miolini_datacounter_@v_v1.0.3.zip) = 0a813e6a10517a11df6101af3a29dde3c3e7a4f0a0d1d3bb843b25efc684d1d7c4875e22f44e128e98753f5b610e849de8ab0651b861db1e93aeda50003bf069
Size (github.com_miolini_datacounter_@v_v1.0.3.zip) = 5538 bytes
-BLAKE2s (github.com_prometheus_client_golang_@v_v1.16.0.mod) = aa0f7faed5209619c8ab713cfcc52dcb7769f949df2050c918fbb319db651886
-SHA512 (github.com_prometheus_client_golang_@v_v1.16.0.mod) = e868193eb7db86200e2bb5882334f5b058ba146921591d79cb60941a29973d401b23881ec2e52487e4a5bf3b3b76957aa0e043a01b75bdb11556b9db5fce6688
-Size (github.com_prometheus_client_golang_@v_v1.16.0.mod) = 1104 bytes
-BLAKE2s (github.com_prometheus_client_golang_@v_v1.16.0.zip) = fd9e4a170bcefd2f9a8b18012c5e75a2b6268ea6e7d405d0a7036826420bfe9e
-SHA512 (github.com_prometheus_client_golang_@v_v1.16.0.zip) = b92c86485e1a7739a492f20c95a80d3c1ee9df0dc566775052a593d3e9dd2e2e7b9756322c8c7faf524990cdf2822e27e4aab7ccac1099362e61066a49ba0485
-Size (github.com_prometheus_client_golang_@v_v1.16.0.zip) = 343324 bytes
-BLAKE2s (github.com_prometheus_client_model_@v_v0.4.0.mod) = 79710bbcbeec1e11881120f81974ce2c447f50304ebd3644a757024fd880064f
-SHA512 (github.com_prometheus_client_model_@v_v0.4.0.mod) = e41af51e96613965b55311f9821f09812bcb7ff5af14b38988421152067a2d7bd960f4f0ad11c8c88bc0dfc62820878919c33b1c6a11fecadec4693194e07897
-Size (github.com_prometheus_client_model_@v_v0.4.0.mod) = 95 bytes
-BLAKE2s (github.com_prometheus_client_model_@v_v0.4.0.zip) = b55f6573061b34408e10676bfa2b5d8c973eccd22118868242b322c4327708fe
-SHA512 (github.com_prometheus_client_model_@v_v0.4.0.zip) = 931246a46aa84630d591fe04e4a334d25bf1946d3193a21ece93aaa123a4e721c3da657c29e31de8426ae717fe3b74fcc0d2312a4f408993ab8925344d1354ac
-Size (github.com_prometheus_client_model_@v_v0.4.0.zip) = 20105 bytes
-BLAKE2s (github.com_prometheus_common_@v_v0.44.0.mod) = a173d4597a2649ffeb74bfff4c1afaf8825bb3e82e1129f87cf11fe2e0fa5522
-SHA512 (github.com_prometheus_common_@v_v0.44.0.mod) = 9f578776d7bd480d9b3ac9c064d4750fc4b2cf9bc52c142fedcc13bc839e5dd50c729d0fece92ef97cd276dffcaf81b812dc9ada11481ac2e8cff8d5080a43db
-Size (github.com_prometheus_common_@v_v0.44.0.mod) = 1172 bytes
-BLAKE2s (github.com_prometheus_common_@v_v0.44.0.zip) = 43124c67a1b2ad4e0869d296a1112815a6e92fc7d075738184b8f3f31e5d6670
-SHA512 (github.com_prometheus_common_@v_v0.44.0.zip) = cca32b3d8925733ab3f35a437ec95f766e62b27af55899556a0a51b6b97e399b416db2eb5b433e6a2905ca4c6dc72d809dc611da2a5c3bfcd20c1f31728a4bb5
-Size (github.com_prometheus_common_@v_v0.44.0.zip) = 189129 bytes
-BLAKE2s (github.com_prometheus_procfs_@v_v0.11.0.mod) = 389835df3aeca701265198b87cdcc2bb7c5f37fd2ac68ce885d5e0fc7a2d4a16
-SHA512 (github.com_prometheus_procfs_@v_v0.11.0.mod) = f5baf476c5348d826152c05d13d628a05a6f7125116c9da8ceb116d0aec477cdd213bfc379c0434e7c79d858d8bd594392f1724a68585b86484d048aa8ad5980
-Size (github.com_prometheus_procfs_@v_v0.11.0.mod) = 142 bytes
-BLAKE2s (github.com_prometheus_procfs_@v_v0.11.0.zip) = 81d17184850739d352d165ac8cafc0629b5170ac02f0f8f807de642977ef1bf7
-SHA512 (github.com_prometheus_procfs_@v_v0.11.0.zip) = 28e054f09b883a28bca59eebe0fef547d9522f1415d586c99d5ff6af8b5071ce7a7ae945219a7b8250757a4273eef8285884c7286ac0a7b39d35584d9d189e58
-Size (github.com_prometheus_procfs_@v_v0.11.0.zip) = 381678 bytes
+BLAKE2s (github.com_prometheus_client_golang_@v_v1.18.0.mod) = e0e3d3ab79c1320e69c24aa8d88af1262eadbebc7c3505076915a4f748526b82
+SHA512 (github.com_prometheus_client_golang_@v_v1.18.0.mod) = f7c663a5a3c2e93ea33b75579be578691519c6251e82a0e2d0d525663e91b58c984ebf1c431b08ab0bca81c259b9006d0062e001e1c94fef1f46505963f0d624
+Size (github.com_prometheus_client_golang_@v_v1.18.0.mod) = 1074 bytes
+BLAKE2s (github.com_prometheus_client_golang_@v_v1.18.0.zip) = 63f5a7bda7b5d8f62b43b3f0246cc04e48a1075994f3ba57c3589517d419ecd2
+SHA512 (github.com_prometheus_client_golang_@v_v1.18.0.zip) = a035a4d9a691070a740042537a1782bc330b9a32d2455d189e733761f3780a0dff4af264c53a98a92c69c2ee95328ef6b776cf58bc73b31387d99664d3cb180e
+Size (github.com_prometheus_client_golang_@v_v1.18.0.zip) = 347569 bytes
+BLAKE2s (github.com_prometheus_client_model_@v_v0.5.0.mod) = 9b6366eb3acde5b682912eab18b4a4f77a9015f1ce1e20879aaab0d606ca557f
+SHA512 (github.com_prometheus_client_model_@v_v0.5.0.mod) = b3e4c829c94d702486ea26fed6add7fe97d3a6df8a725063393a27aaa6a836084d7ef8df13a879321916e87396d7af790b8ead69bb9d17834fe6f0ab8ba3b637
+Size (github.com_prometheus_client_model_@v_v0.5.0.mod) = 95 bytes
+BLAKE2s (github.com_prometheus_client_model_@v_v0.5.0.zip) = 49673a97d231f9cb1eb24260712908da66d9416c0da2dcad4eb66b2cb855197a
+SHA512 (github.com_prometheus_client_model_@v_v0.5.0.zip) = 94c56762387460bb008c95db2668f1d202c9e7a708c1a300aad18073f79315fd0d53dabd01b4ba332092a519aeeb45b8057d3e87369795b7e735bb08a389514d
+Size (github.com_prometheus_client_model_@v_v0.5.0.zip) = 20974 bytes
+BLAKE2s (github.com_prometheus_common_@v_v0.45.0.mod) = 10206af0c6dc580cfe8d6f90a13a71537b0440db207ecbd031fbe0326c953860
+SHA512 (github.com_prometheus_common_@v_v0.45.0.mod) = 45d8e463355f439360661036e1309bbf9817ad7d417d34d5d56c90c0f99196f9c93ce6fc2ab28c920deb66a5fe04a4d74b1e30fefab4153156f622bf7687d2a8
+Size (github.com_prometheus_common_@v_v0.45.0.mod) = 1209 bytes
+BLAKE2s (github.com_prometheus_common_@v_v0.45.0.zip) = af294ddc556377527fe668c518f9e8aab08cd1eba9b127d6c5cd63318c811862
+SHA512 (github.com_prometheus_common_@v_v0.45.0.zip) = 28e06ecf3fce177bb10d7a46f6991f5d88e1c3968df88b4bd5c60701774c192e5abad4a147e1cd93deb83157226502dc2c34d5423ce7476dec9967c7e53bca3e
+Size (github.com_prometheus_common_@v_v0.45.0.zip) = 190398 bytes
+BLAKE2s (github.com_prometheus_procfs_@v_v0.12.0.mod) = 87afa899b364d3031470b06440f74da74ea79c0bdfb6dba7446daf9619c36195
+SHA512 (github.com_prometheus_procfs_@v_v0.12.0.mod) = 4eba2b12304c1ddf5edb74a6b943c9ddd3ab08c41cf68a43595282b293a6294862bc855e2398683c3717c3aeb6cf0b393b0b08f6a228ae6d181d0859ac517d94
+Size (github.com_prometheus_procfs_@v_v0.12.0.mod) = 143 bytes
+BLAKE2s (github.com_prometheus_procfs_@v_v0.12.0.zip) = c0018890e94439c1646bad337a66e9f7b260d70d0993272901b3a61652337ac9
+SHA512 (github.com_prometheus_procfs_@v_v0.12.0.zip) = eac38339089b1c76cad252bbd6ebd5e663fd175b272dd4e9307f897d996475fac2cc63e6c6d6522e25cee630ecd0fd6ecfee9b0d9528774ed3f51037db7bc33c
+Size (github.com_prometheus_procfs_@v_v0.12.0.zip) = 390351 bytes
BLAKE2s (github.com_russross_blackfriday_v2_@v_v2.1.0.mod) = f0bc812b934149988d4ab1dcc12c2c63777f0a0d18126b5cba0e35ea880b775b
SHA512 (github.com_russross_blackfriday_v2_@v_v2.1.0.mod) = ac376a387fa39fe35dc4d073d8becd74e79f52e9d36b0a6628740dfe0e7c1f4fb6533fc262212663b105afcaa104082e055fa87d20cb3068359faae6dcba7738
Size (github.com_russross_blackfriday_v2_@v_v2.1.0.mod) = 42 bytes
-BLAKE2s (github.com_spf13_cobra_@v_v1.7.0.mod) = 94da27e0a44c97d2b006f348d0e062178db9a980b606bccdf5e09cf15f3b4f43
-SHA512 (github.com_spf13_cobra_@v_v1.7.0.mod) = 07a36407943f339410cdb1368e5a475c993bca7e5cc190aca22ea9b0ab477a07e6d67de6aea1a71187e7d2705546d0751fefbc55523f99adf9344cd4a7b48117
-Size (github.com_spf13_cobra_@v_v1.7.0.mod) = 194 bytes
-BLAKE2s (github.com_spf13_cobra_@v_v1.7.0.zip) = 853547f871a83cfbc67b55a73dd2556404fadec316ec26d8709f5db29b97ab4f
-SHA512 (github.com_spf13_cobra_@v_v1.7.0.zip) = aedad1ec6629c2e0f8aeac872eb91faec0a8b7d0364caccd6ef7cece004623749ba4c09f2dcb3409b7d452e123d23c6ac60fb706ec858aacda102aa284e8174d
-Size (github.com_spf13_cobra_@v_v1.7.0.zip) = 225593 bytes
+BLAKE2s (github.com_spf13_cobra_@v_v1.8.1.mod) = 96bd527547931b753f6ce6512893ddcfc62b88e00e6b8036b8bfdc50f9525050
+SHA512 (github.com_spf13_cobra_@v_v1.8.1.mod) = b1883380508c782682d0f773e936aa92cc27236e304ad4c923fbecc123b3398fe76d92bfb54e24aaa1112d6bf664263dbed48a257685a26f069edbe0ff68977f
+Size (github.com_spf13_cobra_@v_v1.8.1.mod) = 194 bytes
+BLAKE2s (github.com_spf13_cobra_@v_v1.8.1.zip) = bf6d4a4f476322c6e2afbc3fed6b5a83582a0900480a05f947bf39dda440d387
+SHA512 (github.com_spf13_cobra_@v_v1.8.1.zip) = 2321dc70e0d9478be997692bd31fb071c63dfac9d641f1eaf66d44b0bb11eb51fe6f0a8b596e2eaa31af876ff6470e10631975440ba44026b46ca3f771f32249
+Size (github.com_spf13_cobra_@v_v1.8.1.zip) = 231907 bytes
BLAKE2s (github.com_spf13_pflag_@v_v1.0.5.mod) = 1b1abf476b994d1f08514612e3291343509d867ac0dbe4ebd4316f0e296a4486
SHA512 (github.com_spf13_pflag_@v_v1.0.5.mod) = 8071c316d33aff1d8ffcabaeb42e8f9320465d83600cb57ac5ef071569f948d5cfd69e1bd2e92855c061395c1b814e84d1705f42e37f00d5bc713b6e724f29f5
Size (github.com_spf13_pflag_@v_v1.0.5.mod) = 39 bytes
BLAKE2s (github.com_spf13_pflag_@v_v1.0.5.zip) = 4b3cdadae11a8d2432c380818c116751885b01f307e8c59fb626cc10f07dfc44
SHA512 (github.com_spf13_pflag_@v_v1.0.5.zip) = 9a81f0635ca8ac059c48a15cbf625a7c91513f95a9b402ba166d48ab72d5d38cbd941d5309446f5637bd7c23eef35b60fef2f06e8b557f415dd8409a6ddf43e9
Size (github.com_spf13_pflag_@v_v1.0.5.zip) = 88931 bytes
-BLAKE2s (golang.org_x_crypto_@v_v0.11.0.mod) = 60a8650b4aa4562025b19075db9b2752c89ef1e88cc616ee098f0857063bfe26
-SHA512 (golang.org_x_crypto_@v_v0.11.0.mod) = 309dc1ed25f0ccb79baeb1979e502a897dc0e0d25502a3a1221c66d0eeb8985e853b0e82d613650f1f9748e77a09265160832c598759f33e7fe31f3b66472f3d
-Size (golang.org_x_crypto_@v_v0.11.0.mod) = 190 bytes
-BLAKE2s (golang.org_x_crypto_@v_v0.11.0.zip) = b7adbb9e50142f623b5276702e56512e53d1452bbd615581c8874c59199cfd1d
-SHA512 (golang.org_x_crypto_@v_v0.11.0.zip) = a77c13994a86b405a5944df07f0714320409e0f3a031c5ae6f71d322f96bc8bbd681b9573aed8fa25d1547ec91891fca3997afdc7b171e167f60ad39909c174f
-Size (golang.org_x_crypto_@v_v0.11.0.zip) = 1784008 bytes
-BLAKE2s (golang.org_x_sync_@v_v0.0.0-20181221193216-37e7f081c4d4.mod) = 0524d428f3fcb8a923eb2717aacc5f3b26a68c2b9ac636b9505d1820d6b32ede
-SHA512 (golang.org_x_sync_@v_v0.0.0-20181221193216-37e7f081c4d4.mod) = a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0
-Size (golang.org_x_sync_@v_v0.0.0-20181221193216-37e7f081c4d4.mod) = 25 bytes
-BLAKE2s (golang.org_x_sys_@v_v0.10.0.mod) = 66613eb38a59b8a7f75e1aaeb294a1c4ea290d4e9ae699137566025e50ed741c
-SHA512 (golang.org_x_sys_@v_v0.10.0.mod) = 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
-Size (golang.org_x_sys_@v_v0.10.0.mod) = 33 bytes
-BLAKE2s (golang.org_x_sys_@v_v0.10.0.zip) = 70baf971e01f8c294f6a23dfc0f660d711d1beb39ddde61ffd83bc8dcbae2058
-SHA512 (golang.org_x_sys_@v_v0.10.0.zip) = 13a839684ae30506b0312a3d8260bf714b1d0e7b8cb47c01aca6881d2e2c0758092017f34b277502d6b915385218630acc90362e73a22560e59f938e737ecace
-Size (golang.org_x_sys_@v_v0.10.0.zip) = 1902132 bytes
+BLAKE2s (golang.org_x_crypto_@v_v0.25.0.mod) = b6bbd75b7852b59eeaa3160e76a9fca3d37e98846eb00df5ffc427180a14dd32
+SHA512 (golang.org_x_crypto_@v_v0.25.0.mod) = fb84cf49b67d2c099c42290be8d46de54dccbe77209cf4e9cfe1b1264600c7d023ba4135f0f88dee05bbf6b98d903da020fdc689f237c018c712e6a0ff05364b
+Size (golang.org_x_crypto_@v_v0.25.0.mod) = 190 bytes
+BLAKE2s (golang.org_x_crypto_@v_v0.25.0.zip) = 7d2839a562e637e22e6c8f9187d38d11aae580d43358b78a5d872a58e65238f0
+SHA512 (golang.org_x_crypto_@v_v0.25.0.zip) = bb0fa524ec509e451bc38722df223a047dd7647ae976bbaaf08a6d2c24e190dde566b8adcd9ca378915ec65e2ac0e063361adaf6179c3a651281577f01433e57
+Size (golang.org_x_crypto_@v_v0.25.0.zip) = 1783134 bytes
+BLAKE2s (golang.org_x_sys_@v_v0.22.0.mod) = 546db01fa3b030f3f3b5f8d3674bc29d1f026a60a57e474fff3e1cd44fe694a1
+SHA512 (golang.org_x_sys_@v_v0.22.0.mod) = ec229018bf6fa169913d0c66821fc296766b8a71720123e8d8cfcf5b8b8da110e338d03b8233b1224b8586ea9d9e4231b9720c1f806d4be2523413c521acf97b
+Size (golang.org_x_sys_@v_v0.22.0.mod) = 33 bytes
+BLAKE2s (golang.org_x_sys_@v_v0.22.0.zip) = 0e195c55b2bfc0017f2ee68e9746508bc5c1123bbda6ce3ed74728cb288d842d
+SHA512 (golang.org_x_sys_@v_v0.22.0.zip) = cf86b26be9efd54690b748e14fdf9a46cf1f118870c1605f3c3e894d5aea15e08c8fe69d0a461cfa9c7ecba7052236d1128158156ae0f004a1d1b3c004dcf464
+Size (golang.org_x_sys_@v_v0.22.0.zip) = 1959283 bytes
BLAKE2s (golang.org_x_sys_@v_v0.5.0.mod) = 66613eb38a59b8a7f75e1aaeb294a1c4ea290d4e9ae699137566025e50ed741c
SHA512 (golang.org_x_sys_@v_v0.5.0.mod) = 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
Size (golang.org_x_sys_@v_v0.5.0.mod) = 33 bytes
-BLAKE2s (golang.org_x_xerrors_@v_v0.0.0-20191204190536-9bdfabe68543.mod) = b9082cd5be0cf4d922cd04363acc12692e595a5560e43763d016b9dafa566584
-SHA512 (golang.org_x_xerrors_@v_v0.0.0-20191204190536-9bdfabe68543.mod) =
659d18a7a3a1be45ff6dc9e7475276b82ee7f11c47d39b0c237d7f872836a1dbdfff0902f21d6cd8093663997865da92e3e5a4acf1ad6129f972dc5e667b4f05
-Size (golang.org_x_xerrors_@v_v0.0.0-20191204190536-9bdfabe68543.mod) = 37 bytes
-BLAKE2s (google.golang.org_protobuf_@v_v1.26.0-rc.1.mod) = f782892e469e3758f9b25ae9ccc69ab8e30396afa00217ce47a7fe80fe3069d4
-SHA512 (google.golang.org_protobuf_@v_v1.26.0-rc.1.mod) = a7b2aad691925341e3d1f6d1d1453b68386902a4e2e1c0deb406bc157d04328c5519a01ce938a33a6e358cbd9dc0c2f862c9822bde5314d2eb9d416d7bf789d2
-Size (google.golang.org_protobuf_@v_v1.26.0-rc.1.mod) = 83 bytes
-BLAKE2s (google.golang.org_protobuf_@v_v1.26.0.mod) = f2b24bd56bedc4a2ce64501b194fd36e70af33cfd94a25fd96f8d44bf07c2440
-SHA512 (google.golang.org_protobuf_@v_v1.26.0.mod) = d618524aca1cb3e525060bb66b0c8f06c9ad6be5389be228d265dbcdb368442f4f0a7e98f8c9082916b2579d77e627a550904f0b1c058b7d5e45eb7ceb77c2e0
-Size (google.golang.org_protobuf_@v_v1.26.0.mod) = 123 bytes
-BLAKE2s (google.golang.org_protobuf_@v_v1.31.0.mod) = 5ea5971847ab94fe068838c155df7821ee573e57805733fe0808840e355508cf
-SHA512 (google.golang.org_protobuf_@v_v1.31.0.mod) = 61be8d52e39d6db167252c8833a4c2d92b0f9cd7040d44df2a805bdfa3e48784a4f0a45fbe33a64ab65c436dc59c1c4232e84427b6a0b1bd7fb29a5940c1501d
-Size (google.golang.org_protobuf_@v_v1.31.0.mod) = 124 bytes
-BLAKE2s (google.golang.org_protobuf_@v_v1.31.0.zip) = 495d1bb6972a347f4a5358bc91a378f152d986d9b43817947489d349ee48a12b
-SHA512 (google.golang.org_protobuf_@v_v1.31.0.zip) = 679340cc1403149f1dc6ad61430193564c639fafee54a98ae4e546be0ebfa1af6243fa625c850ab1daac0a80ddaa74ebd4a8f1cbd5b35babe60abd8368096d3b
-Size (google.golang.org_protobuf_@v_v1.31.0.zip) = 1613098 bytes
+BLAKE2s (google.golang.org_protobuf_@v_v1.33.0.mod) = 42d6e7709d0066b5d7ec3773295d7f2be368b3f68c98faa518062acc799d0860
+SHA512 (google.golang.org_protobuf_@v_v1.33.0.mod) = 3626e78a0ac7e0212e50ac6ea12c030024d03c4e46803f43357257a60f1a5b6c729ff27d2b3705e9d40651f8be40a66c06426a814c04514aa396fae81754ff81
+Size (google.golang.org_protobuf_@v_v1.33.0.mod) = 201 bytes
+BLAKE2s (google.golang.org_protobuf_@v_v1.33.0.zip) = 3d06c435216d48e814fd001e956e0307326f66c5227fb58fa82b8af2d0e0e701
+SHA512 (google.golang.org_protobuf_@v_v1.33.0.zip) = f6cc40af5ac081abad808a785294dc45b51b33db5c435f14a493ec132594d80ff2381e70f3c27a5875d17071eaa6ad49830f79781b18fe9f088ba6370546cd08
+Size (google.golang.org_protobuf_@v_v1.33.0.zip) = 1813552 bytes
BLAKE2s (gopkg.in_check.v1_@v_v0.0.0-20161208181325-20d25e280405.mod) = 35cd1964700502d06b8c987979fb4dbddc41a5cda3368d037211b89d3587521f
SHA512 (gopkg.in_check.v1_@v_v0.0.0-20161208181325-20d25e280405.mod) = 9ac0f80ef05881387cb2f48f81560f3207fe586ea16495383662e6d62e43d93fac01dfe72e1d0063d3ab065331dab3a8098d7da4f1830ba1aff6f27f8e1bc1b2
Size (gopkg.in_check.v1_@v_v0.0.0-20161208181325-20d25e280405.mod) = 25 bytes
BLAKE2s (gopkg.in_yaml.v3_@v_v3.0.1.mod) = 17da54ba1894b4653d4c1ab1ae6e9fe03928a96c69cdc8db6b6ea9e34d673991
SHA512 (gopkg.in_yaml.v3_@v_v3.0.1.mod) = 307ca9123efc577ca04828996ee9d8edbb51794ccb4b8d9f169ba689e7276aa5f6ae106a04b22b7fab853ffacfebcbf74468b64eaefd57445864c1fbc77fad9d
Size (gopkg.in_yaml.v3_@v_v3.0.1.mod) = 95 bytes
-BLAKE2s (rest-server-0.12.1.tar.gz) = cb16e5b40c0f1abe7d3374e34c1544ce4ea2505eab95ac9859c5c8babf36890e
-SHA512 (rest-server-0.12.1.tar.gz) = 113a1b310845bafe92fc4ee60aadd0f0dc8c5f4f1676706c89c48e291937c616ee33b57febd7a41d99dc57adb250e7f34de1c302cf685a44f009585acaccde44
-Size (rest-server-0.12.1.tar.gz) = 281233 bytes
+BLAKE2s (rest-server-0.13.0.tar.gz) = 246f335328dc34722484229112c2abe5de4d525a2b2f00ad5ed74a1d0a3dbe1c
+SHA512 (rest-server-0.13.0.tar.gz) = 145ad2da7838a695c8f076298f741b7b6a5013965741d96d766ed0082a58d8361f2bfcf42f39d775577c9d5ea909134f3a2ba5b2604c33ac6fc39d709b78d79d
+Size (rest-server-0.13.0.tar.gz) = 265324 bytes
Index: pkgsrc/sysutils/restic-rest-server/go-modules.mk
diff -u pkgsrc/sysutils/restic-rest-server/go-modules.mk:1.2 pkgsrc/sysutils/restic-rest-server/go-modules.mk:1.3
--- pkgsrc/sysutils/restic-rest-server/go-modules.mk:1.2 Thu Oct 19 12:57:29 2023
+++ pkgsrc/sysutils/restic-rest-server/go-modules.mk Tue Aug 6 12:54:42 2024
@@ -1,4 +1,4 @@
-# $NetBSD: go-modules.mk,v 1.2 2023/10/19 12:57:29 wiz Exp $
+# $NetBSD: go-modules.mk,v 1.3 2024/08/06 12:54:42 wiz Exp $
GO_MODULE_FILES+= github.com/beorn7/perks/@v/v1.0.1.mod
GO_MODULE_FILES+= github.com/beorn7/perks/@v/v1.0.1.zip
@@ -6,51 +6,41 @@ GO_MODULE_FILES+= github.com/cespare/xxh
GO_MODULE_FILES+= github.com/cespare/xxhash/v2/@v/v2.2.0.zip
GO_MODULE_FILES+= github.com/coreos/go-systemd/v22/@v/v22.5.0.mod
GO_MODULE_FILES+= github.com/coreos/go-systemd/v22/@v/v22.5.0.zip
-GO_MODULE_FILES+= github.com/cpuguy83/go-md2man/v2/@v/v2.0.2.mod
-GO_MODULE_FILES+= github.com/felixge/httpsnoop/@v/v1.0.1.mod
+GO_MODULE_FILES+= github.com/cpuguy83/go-md2man/v2/@v/v2.0.4.mod
GO_MODULE_FILES+= github.com/felixge/httpsnoop/@v/v1.0.3.mod
GO_MODULE_FILES+= github.com/felixge/httpsnoop/@v/v1.0.3.zip
GO_MODULE_FILES+= github.com/godbus/dbus/v5/@v/v5.0.4.mod
-GO_MODULE_FILES+= github.com/golang/protobuf/@v/v1.2.0.mod
-GO_MODULE_FILES+= github.com/golang/protobuf/@v/v1.5.0.mod
-GO_MODULE_FILES+= github.com/golang/protobuf/@v/v1.5.3.mod
-GO_MODULE_FILES+= github.com/golang/protobuf/@v/v1.5.3.zip
-GO_MODULE_FILES+= github.com/google/go-cmp/@v/v0.5.5.mod
-GO_MODULE_FILES+= github.com/gorilla/handlers/@v/v1.5.1.mod
-GO_MODULE_FILES+= github.com/gorilla/handlers/@v/v1.5.1.zip
+GO_MODULE_FILES+= github.com/gorilla/handlers/@v/v1.5.2.mod
+GO_MODULE_FILES+= github.com/gorilla/handlers/@v/v1.5.2.zip
GO_MODULE_FILES+= github.com/inconshreveable/mousetrap/@v/v1.1.0.mod
GO_MODULE_FILES+= github.com/inconshreveable/mousetrap/@v/v1.1.0.zip
GO_MODULE_FILES+= github.com/klauspost/cpuid/v2/@v/v2.2.5.mod
GO_MODULE_FILES+= github.com/klauspost/cpuid/v2/@v/v2.2.5.zip
-GO_MODULE_FILES+= github.com/matttproud/golang_protobuf_extensions/@v/v1.0.4.mod
-GO_MODULE_FILES+= github.com/matttproud/golang_protobuf_extensions/@v/v1.0.4.zip
+GO_MODULE_FILES+= github.com/matttproud/golang_protobuf_extensions/v2/@v/v2.0.0.mod
+GO_MODULE_FILES+= github.com/matttproud/golang_protobuf_extensions/v2/@v/v2.0.0.zip
GO_MODULE_FILES+= github.com/minio/sha256-simd/@v/v1.0.1.mod
GO_MODULE_FILES+= github.com/minio/sha256-simd/@v/v1.0.1.zip
GO_MODULE_FILES+= github.com/miolini/datacounter/@v/v1.0.3.mod
GO_MODULE_FILES+= github.com/miolini/datacounter/@v/v1.0.3.zip
-GO_MODULE_FILES+= github.com/prometheus/client_golang/@v/v1.16.0.mod
-GO_MODULE_FILES+= github.com/prometheus/client_golang/@v/v1.16.0.zip
-GO_MODULE_FILES+= github.com/prometheus/client_model/@v/v0.4.0.mod
-GO_MODULE_FILES+= github.com/prometheus/client_model/@v/v0.4.0.zip
-GO_MODULE_FILES+= github.com/prometheus/common/@v/v0.44.0.mod
-GO_MODULE_FILES+= github.com/prometheus/common/@v/v0.44.0.zip
-GO_MODULE_FILES+= github.com/prometheus/procfs/@v/v0.11.0.mod
-GO_MODULE_FILES+= github.com/prometheus/procfs/@v/v0.11.0.zip
+GO_MODULE_FILES+= github.com/prometheus/client_golang/@v/v1.18.0.mod
+GO_MODULE_FILES+= github.com/prometheus/client_golang/@v/v1.18.0.zip
+GO_MODULE_FILES+= github.com/prometheus/client_model/@v/v0.5.0.mod
+GO_MODULE_FILES+= github.com/prometheus/client_model/@v/v0.5.0.zip
+GO_MODULE_FILES+= github.com/prometheus/common/@v/v0.45.0.mod
+GO_MODULE_FILES+= github.com/prometheus/common/@v/v0.45.0.zip
+GO_MODULE_FILES+= github.com/prometheus/procfs/@v/v0.12.0.mod
+GO_MODULE_FILES+= github.com/prometheus/procfs/@v/v0.12.0.zip
GO_MODULE_FILES+= github.com/russross/blackfriday/v2/@v/v2.1.0.mod
-GO_MODULE_FILES+= github.com/spf13/cobra/@v/v1.7.0.mod
-GO_MODULE_FILES+= github.com/spf13/cobra/@v/v1.7.0.zip
+GO_MODULE_FILES+= github.com/spf13/cobra/@v/v1.8.1.mod
+GO_MODULE_FILES+= github.com/spf13/cobra/@v/v1.8.1.zip
GO_MODULE_FILES+= github.com/spf13/pflag/@v/v1.0.5.mod
GO_MODULE_FILES+= github.com/spf13/pflag/@v/v1.0.5.zip
-GO_MODULE_FILES+= golang.org/x/crypto/@v/v0.11.0.mod
-GO_MODULE_FILES+= golang.org/x/crypto/@v/v0.11.0.zip
-GO_MODULE_FILES+= golang.org/x/sync/@v/v0.0.0-20181221193216-37e7f081c4d4.mod
-GO_MODULE_FILES+= golang.org/x/sys/@v/v0.10.0.mod
-GO_MODULE_FILES+= golang.org/x/sys/@v/v0.10.0.zip
+GO_MODULE_FILES+= golang.org/x/crypto/@v/v0.25.0.mod
+GO_MODULE_FILES+= golang.org/x/crypto/@v/v0.25.0.zip
+GO_MODULE_FILES+= golang.org/x/sys/@v/v0.22.0.mod
+GO_MODULE_FILES+= golang.org/x/sys/@v/v0.22.0.zip
GO_MODULE_FILES+= golang.org/x/sys/@v/v0.5.0.mod
-GO_MODULE_FILES+= golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.mod
-GO_MODULE_FILES+= google.golang.org/protobuf/@v/v1.26.0-rc.1.mod
-GO_MODULE_FILES+= google.golang.org/protobuf/@v/v1.26.0.mod
-GO_MODULE_FILES+= google.golang.org/protobuf/@v/v1.31.0.mod
-GO_MODULE_FILES+= google.golang.org/protobuf/@v/v1.31.0.zip
+GO_MODULE_FILES+= google.golang.org/protobuf/@v/v1.33.0.mod
+GO_MODULE_FILES+= google.golang.org/protobuf/@v/v1.33.0.zip
GO_MODULE_FILES+= gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod
GO_MODULE_FILES+= gopkg.in/yaml.v3/@v/v3.0.1.mod
Home |
Main Index |
Thread Index |
Old Index