Skip to content

Commit 67b6113

Browse files
authored
Merge pull request #571 from prometheus/beorn7/release
Update deps and cut v1.6.1
2 parents fbfa3aa + 63a2ef2 commit 67b6113

File tree

6 files changed

+13
-500
lines changed

6 files changed

+13
-500
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ executors:
66
# Whenever the Go version is updated here, .promu.yml should also be updated.
77
golang:
88
docker:
9-
- image: cimg/go:1.20
9+
- image: cimg/go:1.21
1010
jobs:
1111
test:
1212
executor: golang

.promu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
go:
33
# Whenever the Go version is updated here, .circle/config.yml should also
44
# be updated.
5-
version: 1.20
5+
version: 1.21
66
repository:
77
path: github.com/prometheus/pushgateway
88
build:

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.6.1 / 2023-09-05
2+
3+
* [SECURITY] Build precompiled binaries with current Go version (1.21.0) to avoid known bugs in older Go versions.
4+
* [BUGFIX] Update dependencies to pull in possibly relevant bugfixes.
5+
16
## 1.6.0 / 2023-05-25
27

38
* [FEATURE] Add snappy encoding support for `/metrics` endpoint. #518

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.0
1+
1.6.1

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
module github.com/prometheus/pushgateway
22

3+
go 1.19
4+
35
require (
46
github.com/alecthomas/kingpin/v2 v2.3.2
57
github.com/go-kit/log v0.2.1
@@ -10,7 +12,7 @@ require (
1012
github.com/prometheus/client_model v0.4.0
1113
github.com/prometheus/common v0.44.0
1214
github.com/prometheus/exporter-toolkit v0.10.0
13-
github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546
15+
github.com/shurcooL/vfsgen v0.0.0-20230704071429-0000e147ea92
1416
google.golang.org/protobuf v1.31.0
1517
)
1618

@@ -36,5 +38,3 @@ require (
3638
google.golang.org/appengine v1.6.7 // indirect
3739
gopkg.in/yaml.v2 v2.4.0 // indirect
3840
)
39-
40-
go 1.17

0 commit comments

Comments
 (0)