diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 70cbdea06..5dc1b3c4e 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -19,6 +19,7 @@ The following tip changes can be tested by building VictoriaMetrics components f * BUGFIX: [MetricsQL](https://docs.victoriametrics.com/MetricsQL.html): do not return values from [label_value()](https://docs.victoriametrics.com/MetricsQL.html#label_value) function if the original time series has no values at the selected timestamps. * BUGFIX: [VictoriaMetrics cluster](https://docs.victoriametrics.com/Cluster-VictoriaMetrics.html): limit the number of concurrently established connections from vmselect to vmstorage. This should prevent from potentially high spikes in the number of established connections after temporary slowdown in connection handshake procedure between vmselect and vmstorage because of spikes in workload. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/2552). +* BUGFIX: [vmctl](https://docs.victoriametrics.com/vmctl.html): fix build for Solaris / SmartOS. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1322#issuecomment-1120276146). ## [v1.77.1](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.77.1) diff --git a/go.mod b/go.mod index 38cafc815..605aaa3fe 100644 --- a/go.mod +++ b/go.mod @@ -13,6 +13,10 @@ require ( github.com/VictoriaMetrics/metricsql v0.43.0 github.com/aws/aws-sdk-go v1.44.9 github.com/cespare/xxhash/v2 v2.1.2 + + // TODO: switch back to https://github.com/cheggaaa/pb/v3 when v3-pooling branch + // is merged into main branch. + // See https://github.com/cheggaaa/pb/pull/192#issuecomment-1121285954 for details. github.com/dmitryk-dk/pb/v3 v3.0.9 github.com/golang/snappy v0.0.4 github.com/influxdata/influxdb v1.9.6