Skip to content

Commit e36994c

Browse files
committed
update deps
1 parent 77c9c5f commit e36994c

6 files changed

Lines changed: 542 additions & 299 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ Template:
1212
### Fixed
1313
```
1414

15+
## v0.4.4 - 6 December 2021
16+
### Changed
17+
- Recreate hub on send error
18+
- Bump golang and dependency versions
19+
1520
## v0.4.3 - 25 October 2021
1621
### Changed
1722
- Remove hardcoded listen_address in container

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ Encodes events as JSON using the goavro library. The Avro-JSON data model is the
168168

169169
Requirements:
170170

171-
* [Go](https://golang.org/dl/) 1.13.x or higher
171+
* [Go](https://golang.org/dl/) 1.17.x or higher
172172
* Go [modules](https://github.com/golang/go/wiki/Modules) is used for dependency management
173173

174174
```bash

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ trigger:
77
- master
88

99
variables:
10-
GOVERSION: '1.15.6'
10+
GOVERSION: '1.17.4'
1111
LDFLAGS: "-w -s -X main.Version=$(Build.SourceBranchName) -X main.Commit=$(Build.SourceVersion) -X main.Build=$(Build.BuildNumber)"
1212

1313
jobs:

go.mod

Lines changed: 62 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,69 @@
11
module github.com/bryanklewis/prometheus-eventhubs-adapter
22

3-
go 1.15
3+
go 1.17
44

55
require (
6-
github.com/Azure/azure-amqp-common-go/v3 v3.1.0
7-
github.com/Azure/azure-event-hubs-go/v3 v3.3.4
8-
github.com/Azure/go-autorest/autorest v0.11.13
9-
github.com/gin-gonic/gin v1.6.3
10-
github.com/gogo/protobuf v1.3.1
11-
github.com/golang/snappy v0.0.2
12-
github.com/linkedin/goavro/v2 v2.10.0
13-
github.com/prometheus/client_golang v1.8.0
14-
github.com/prometheus/common v0.15.0
6+
github.com/Azure/azure-amqp-common-go/v3 v3.2.2
7+
github.com/Azure/azure-event-hubs-go/v3 v3.3.16
8+
github.com/Azure/go-autorest/autorest v0.11.22
9+
github.com/gin-gonic/gin v1.7.7
10+
github.com/gogo/protobuf v1.3.2
11+
github.com/golang/snappy v0.0.4
12+
github.com/linkedin/goavro/v2 v2.10.1
13+
github.com/prometheus/client_golang v1.11.0
14+
github.com/prometheus/common v0.32.1
1515
github.com/prometheus/prometheus v2.5.0+incompatible
16-
github.com/rs/zerolog v1.20.0
16+
github.com/rs/zerolog v1.26.0
1717
github.com/spf13/pflag v1.0.5
18-
github.com/spf13/viper v1.7.1
18+
github.com/spf13/viper v1.9.0
19+
)
20+
21+
require (
22+
github.com/Azure/azure-sdk-for-go v51.1.0+incompatible // indirect
23+
github.com/Azure/go-amqp v0.16.0 // indirect
24+
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
25+
github.com/Azure/go-autorest/autorest/adal v0.9.14 // indirect
26+
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
27+
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
28+
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
29+
github.com/Azure/go-autorest/logger v0.2.1 // indirect
30+
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
31+
github.com/beorn7/perks v1.0.1 // indirect
32+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
33+
github.com/devigned/tab v0.1.1 // indirect
34+
github.com/form3tech-oss/jwt-go v3.2.2+incompatible // indirect
35+
github.com/fsnotify/fsnotify v1.5.1 // indirect
36+
github.com/gin-contrib/sse v0.1.0 // indirect
37+
github.com/go-playground/locales v0.13.0 // indirect
38+
github.com/go-playground/universal-translator v0.17.0 // indirect
39+
github.com/go-playground/validator/v10 v10.4.1 // indirect
40+
github.com/golang/protobuf v1.5.2 // indirect
41+
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
42+
github.com/hashicorp/hcl v1.0.0 // indirect
43+
github.com/jpillora/backoff v1.0.0 // indirect
44+
github.com/json-iterator/go v1.1.11 // indirect
45+
github.com/leodido/go-urn v1.2.0 // indirect
46+
github.com/magiconair/properties v1.8.5 // indirect
47+
github.com/mattn/go-isatty v0.0.12 // indirect
48+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
49+
github.com/mitchellh/mapstructure v1.4.2 // indirect
50+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
51+
github.com/modern-go/reflect2 v1.0.1 // indirect
52+
github.com/pelletier/go-toml v1.9.4 // indirect
53+
github.com/prometheus/client_model v0.2.0 // indirect
54+
github.com/prometheus/procfs v0.6.0 // indirect
55+
github.com/spf13/afero v1.6.0 // indirect
56+
github.com/spf13/cast v1.4.1 // indirect
57+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
58+
github.com/subosito/gotenv v1.2.0 // indirect
59+
github.com/ugorji/go/codec v1.1.7 // indirect
60+
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
61+
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect
62+
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect
63+
golang.org/x/text v0.3.6 // indirect
64+
google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71 // indirect
65+
google.golang.org/grpc v1.40.0 // indirect
66+
google.golang.org/protobuf v1.27.1 // indirect
67+
gopkg.in/ini.v1 v1.63.2 // indirect
68+
gopkg.in/yaml.v2 v2.4.0 // indirect
1969
)

0 commit comments

Comments
 (0)