Skip to content

Commit 3cd98e9

Browse files
committed
bump build and program deps
1 parent 410f14f commit 3cd98e9

4 files changed

Lines changed: 435 additions & 119 deletions

File tree

CHANGELOG.md

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

15+
## v0.4.2 - TBD December 2020
16+
### Changed
17+
- build with golang 1.15.6
18+
- use latest azure build agent
19+
- bump project dependencies
20+
### Removed
21+
- viper alias in config
22+
1523
## v0.4.1 - 18 December 2019
1624
### Changed
1725
- build with golang 1.13.5

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ trigger:
77
- master
88

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

1313
jobs:
1414
- job: linux
1515
pool:
16-
vmImage: 'ubuntu-16.04'
16+
vmImage: 'ubuntu-latest'
1717
variables:
1818
CGO_ENABLED: '0'
1919
GOOS: 'linux'
@@ -80,7 +80,7 @@ jobs:
8080

8181
- job: windows
8282
pool:
83-
vmImage: 'vs2017-win2016'
83+
vmImage: 'windows-latest'
8484
variables:
8585
CGO_ENABLED: '0'
8686
GOOS: 'windows'

go.mod

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

3-
go 1.13
3+
go 1.15
44

55
require (
6-
github.com/Azure/azure-amqp-common-go/v3 v3.0.0
7-
github.com/Azure/azure-event-hubs-go/v3 v3.0.0
8-
github.com/Azure/azure-sdk-for-go v37.2.0+incompatible // indirect
9-
github.com/Azure/go-autorest/autorest v0.9.3
10-
github.com/cespare/xxhash/v2 v2.1.1 // indirect
11-
github.com/gin-gonic/gin v1.5.0
12-
github.com/go-playground/universal-translator v0.17.0 // indirect
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
1310
github.com/gogo/protobuf v1.3.1
14-
github.com/golang/snappy v0.0.1
15-
github.com/grpc-ecosystem/grpc-gateway v1.12.1 // indirect
16-
github.com/jpillora/backoff v1.0.0 // indirect
17-
github.com/json-iterator/go v1.1.8 // indirect
18-
github.com/leodido/go-urn v1.2.0 // indirect
19-
github.com/linkedin/goavro/v2 v2.9.7
20-
github.com/mattn/go-isatty v0.0.11 // indirect
21-
github.com/pelletier/go-toml v1.6.0 // indirect
22-
github.com/prometheus/client_golang v1.2.1
23-
github.com/prometheus/client_model v0.0.0-20191202183732-d1d2010b5bee // indirect
24-
github.com/prometheus/common v0.7.0
25-
github.com/prometheus/procfs v0.0.8 // indirect
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
2615
github.com/prometheus/prometheus v2.5.0+incompatible
27-
github.com/rs/zerolog v1.17.2
28-
github.com/spf13/afero v1.2.2 // indirect
29-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
16+
github.com/rs/zerolog v1.20.0
3017
github.com/spf13/pflag v1.0.5
31-
github.com/spf13/viper v1.4.0
32-
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 // indirect
33-
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect
34-
google.golang.org/genproto v0.0.0-20191216205247-b31c10ee225f // indirect
35-
google.golang.org/grpc v1.26.0 // indirect
36-
gopkg.in/go-playground/validator.v9 v9.30.2 // indirect
37-
gopkg.in/yaml.v2 v2.2.7 // indirect
18+
github.com/spf13/viper v1.7.1
3819
)

0 commit comments

Comments
 (0)