Skip to content

Commit aafa2f0

Browse files
authored
Release 0.11.0 (#107)
* Release 0.11.0 * Bump Go to 1.15. * [CHANGE] Do not treat failure to collect metrics as fatal #102 * [FEATURE] Add support for multiple google project IDs #105 Signed-off-by: Ben Kochie <[email protected]> * Update vendoring Signed-off-by: Ben Kochie <[email protected]> * Bump promu version. Signed-off-by: Ben Kochie <[email protected]>
1 parent 42badeb commit aafa2f0

File tree

247 files changed

+32685
-14727
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

247 files changed

+32685
-14727
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ executors:
88
# This must match .promu.yml.
99
golang:
1010
docker:
11-
- image: circleci/golang:1.14
11+
- image: circleci/golang:1.15
1212

1313
jobs:
1414
test:

.promu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
go:
22
# This must match .circle/config.yml.
3-
version: 1.14
3+
version: 1.15
44
repository:
55
path: github.com/prometheus-community/stackdriver_exporter
66
build:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## master / unreleased
22

3+
## 0.11.0 / 2020-09-02
4+
35
* [CHANGE] Do not treat failure to collect metrics as fatal #102
6+
* [FEATURE] Add support for multiple google project IDs #105
47

58
## 0.10.0 / 2020-06-28
69

Makefile.common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ ifneq ($(shell which gotestsum),)
7878
endif
7979
endif
8080

81-
PROMU_VERSION ?= 0.5.0
81+
PROMU_VERSION ?= 0.6.0
8282
PROMU_URL := https://github.com/prometheus/promu/releases/download/v$(PROMU_VERSION)/promu-$(PROMU_VERSION).$(GO_BUILD_PLATFORM).tar.gz
8383

8484
GOLANGCI_LINT :=

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.0
1+
0.11.0

go.mod

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,19 @@ module github.com/prometheus-community/stackdriver_exporter
33
go 1.13
44

55
require (
6-
cloud.google.com/go v0.57.0 // indirect
76
github.com/PuerkitoBio/rehttp v1.0.0
8-
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
97
github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0 // indirect
108
github.com/benbjohnson/clock v1.0.0 // indirect
119
github.com/dustin/go-humanize v1.0.0 // indirect
1210
github.com/fatih/camelcase v1.0.0
1311
github.com/go-kit/kit v0.10.0
14-
github.com/onsi/ginkgo v1.13.0
12+
github.com/onsi/ginkgo v1.14.0
1513
github.com/onsi/gomega v1.10.1
16-
github.com/pkg/errors v0.9.1 // indirect
1714
github.com/prometheus/client_golang v1.7.1
1815
github.com/prometheus/client_model v0.2.0
19-
github.com/prometheus/common v0.10.0
20-
golang.org/x/net v0.0.0-20200625001655-4c5254603344
16+
github.com/prometheus/common v0.13.0
17+
golang.org/x/net v0.0.0-20200822124328-c89045814202
2118
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
22-
google.golang.org/api v0.28.0
23-
google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884 // indirect
19+
google.golang.org/api v0.31.0
2420
gopkg.in/alecthomas/kingpin.v2 v2.2.6
2521
)

go.sum

Lines changed: 95 additions & 5 deletions
Large diffs are not rendered by default.

vendor/cloud.google.com/go/compute/metadata/metadata.go

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/onsi/ginkgo/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/onsi/ginkgo/config/config.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)