Skip to content
This repository was archived by the owner on Mar 8, 2023. It is now read-only.

Commit 54e37f7

Browse files
author
Julien Pivotto
authored
Merge pull request #251 from roidelapluie/rel0140
Update exporter toolkit and release 0.14.0
2 parents 575d68c + 43b22ba commit 54e37f7

File tree

5 files changed

+321
-41
lines changed

5 files changed

+321
-41
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.14.0 / 2023-11-29
2+
3+
* [SECURITY] Update Exporter Toolkit (CVE-2022-46146) #251
4+
* [FEATURE] Support multiple Listen Addresses and systemd socket activation #251
5+
16
## 0.13.0 / 2021-11-26
27

38
* [FEATURE] Add TLS and Basic authentication #205

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.13.0
1+
0.14.0

go.mod

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,35 @@ module github.com/prometheus/haproxy_exporter
33
go 1.17
44

55
require (
6-
github.com/go-kit/log v0.2.0
7-
github.com/prometheus/client_golang v1.12.1
8-
github.com/prometheus/common v0.34.0
9-
github.com/prometheus/exporter-toolkit v0.7.1
6+
github.com/go-kit/log v0.2.1
7+
github.com/prometheus/client_golang v1.14.0
8+
github.com/prometheus/common v0.37.0
9+
github.com/prometheus/exporter-toolkit v0.8.2
1010
gopkg.in/alecthomas/kingpin.v2 v2.2.6
1111
)
1212

1313
require (
1414
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
15-
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
15+
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
1616
github.com/beorn7/perks v1.0.1 // indirect
1717
github.com/cespare/xxhash/v2 v2.1.2 // indirect
18+
github.com/coreos/go-systemd/v22 v22.4.0 // indirect
19+
github.com/davecgh/go-spew v1.1.1 // indirect
1820
github.com/go-logfmt/logfmt v0.5.1 // indirect
1921
github.com/golang/protobuf v1.5.2 // indirect
2022
github.com/jpillora/backoff v1.0.0 // indirect
2123
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
2224
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
23-
github.com/pkg/errors v0.9.1 // indirect
24-
github.com/prometheus/client_model v0.2.0 // indirect
25-
github.com/prometheus/procfs v0.7.3 // indirect
26-
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect
27-
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
28-
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
29-
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
25+
github.com/prometheus/client_model v0.3.0 // indirect
26+
github.com/prometheus/procfs v0.8.0 // indirect
27+
golang.org/x/crypto v0.0.0-20221012134737-56aed061732a // indirect
28+
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
29+
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1 // indirect
30+
golang.org/x/sync v0.1.0 // indirect
31+
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
3032
golang.org/x/text v0.3.7 // indirect
31-
google.golang.org/appengine v1.6.6 // indirect
32-
google.golang.org/protobuf v1.26.0 // indirect
33+
google.golang.org/appengine v1.6.7 // indirect
34+
google.golang.org/protobuf v1.28.1 // indirect
3335
gopkg.in/yaml.v2 v2.4.0 // indirect
36+
gopkg.in/yaml.v3 v3.0.1 // indirect
3437
)

0 commit comments

Comments
 (0)