File tree Expand file tree Collapse file tree 5 files changed +322
-15
lines changed Expand file tree Collapse file tree 5 files changed +322
-15
lines changed Original file line number Diff line number Diff line change 9
9
parameters :
10
10
go_version :
11
11
type : string
12
- run_style :
12
+ run_style_and_unused :
13
13
type : boolean
14
14
default : false
15
15
run_lint :
@@ -28,15 +28,15 @@ jobs:
28
28
steps :
29
29
- go/load-cache :
30
30
key : v1-go<< parameters.go_version >>
31
- - run : make check_license unused test
31
+ - run : make check_license test
32
32
- when :
33
33
condition : << parameters.run_lint >>
34
34
steps :
35
35
- run : make lint
36
36
- when :
37
- condition : << parameters.run_style >>
37
+ condition : << parameters.run_style_and_unused >>
38
38
steps :
39
- - run : make style
39
+ - run : make style unused
40
40
- when :
41
41
condition : << parameters.use_gomod_cache >>
42
42
steps :
@@ -78,5 +78,6 @@ workflows:
78
78
name : go-1-15
79
79
go_version : " 1.15"
80
80
run_lint : true
81
- # Style is only checked against the latest supported Go version.
82
- run_style : true
81
+ # Style and unused/missing packages are only checked against
82
+ # the latest supported Go version.
83
+ run_style_and_unused : true
Original file line number Diff line number Diff line change
1
+ ## 1.8.0 / 2020-10-15
2
+
3
+ * [ CHANGE] API client: Use ` time.Time ` rather than ` string ` for timestamps in ` RuntimeinfoResult ` . #777
4
+ * [ FEATURE] Export ` MetricVec ` to facilitate implementation of vectors of custom ` Metric ` types. #803
5
+ * [ FEATURE API client: Support ` /status/tsdb ` endpoint. #773
6
+ * [ ENHANCEMENT] API client: Enable GET fallback on status code 501. #802
7
+ * [ ENHANCEMENT] Remove ` Metric ` references after reslicing to free up more memory. #784
8
+
1
9
## 1.7.1 / 2020-06-23
2
10
3
11
* [ BUGFIX] API client: Actually propagate start/end parameters of ` LabelNames ` and ` LabelValues ` . #771
Original file line number Diff line number Diff line change 1
- 1.7.1
1
+ 1.8.0
Original file line number Diff line number Diff line change @@ -3,16 +3,12 @@ module github.com/prometheus/client_golang
3
3
require (
4
4
github.com/beorn7/perks v1.0.1
5
5
github.com/cespare/xxhash/v2 v2.1.1
6
- github.com/golang/protobuf v1.4.2
6
+ github.com/golang/protobuf v1.4.3
7
7
github.com/json-iterator/go v1.1.10
8
- github.com/kr/pretty v0.1.0 // indirect
9
8
github.com/prometheus/client_model v0.2.0
10
- github.com/prometheus/common v0.10.0
11
- github.com/prometheus/procfs v0.1.3
12
- github.com/stretchr/testify v1.4.0 // indirect
13
- golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1
14
- gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
15
- gopkg.in/yaml.v2 v2.2.5 // indirect
9
+ github.com/prometheus/common v0.14.0
10
+ github.com/prometheus/procfs v0.2.0
11
+ golang.org/x/sys v0.0.0-20201015000850-e3ed0017c211
16
12
)
17
13
18
14
go 1.11
You can’t perform that action at this time.
0 commit comments