Skip to content

Commit 88b8c2e

Browse files
committed
Update deps
1 parent d0eb6fd commit 88b8c2e

File tree

3 files changed

+80
-1458
lines changed

3 files changed

+80
-1458
lines changed

Diff for: .circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
executors:
44
golang:
55
docker:
6-
- image: cimg/go:1.18
6+
- image: cimg/go:1.20
77
jobs:
88
test:
99
executor: golang
@@ -18,7 +18,7 @@ jobs:
1818
- restore_cache:
1919
keys:
2020
- v5-crossbuild-cache
21-
- run: go install github.com/goreleaser/goreleaser@v1.7.0
21+
- run: go install github.com/goreleaser/goreleaser@v1.15.2
2222
- run: git reset --hard
2323
- run: make crossbuild
2424
- run: mkdir artifacts
@@ -40,7 +40,7 @@ jobs:
4040
- v5-crossbuild-cache
4141
- run: docker login docker.io -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
4242
- run: docker login quay.io -u $QUAY_LOGIN -p $QUAY_PASSWORD
43-
- run: cd ..; GO111MODULE=on go get github.com/goreleaser/goreleaser@v0.131.1
43+
- run: cd ..; GO111MODULE=on go get github.com/goreleaser/goreleaser@v1.15.2
4444
- run: git reset --hard
4545
- run: make release
4646
check_repo_consistency:
@@ -104,4 +104,4 @@ workflows:
104104
tags:
105105
only: /v[0-9]+(\.[0-9]+)*(-.*)*/
106106
orbs:
107-
prometheus: prometheus/prometheus@0.11.0
107+
prometheus: prometheus/prometheus@0.17.1

Diff for: go.mod

+34-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,46 @@
11
module github.com/prometheus-community/promql-langserver
22

3-
go 1.13
3+
go 1.20
44

55
require (
6-
github.com/blang/semver v3.5.1+incompatible
6+
github.com/blang/semver v2.2.0+incompatible
77
github.com/go-kit/kit v0.12.0
88
github.com/google/uuid v1.3.0
9-
github.com/hashicorp/errwrap v1.1.0 // indirect
109
github.com/kelseyhightower/envconfig v1.4.0
1110
github.com/pkg/errors v0.9.1
12-
github.com/prometheus/client_golang v1.12.2
13-
github.com/prometheus/common v0.35.0
14-
github.com/prometheus/prometheus v0.36.2
11+
github.com/prometheus/client_golang v1.14.0
12+
github.com/prometheus/common v0.39.0
13+
github.com/prometheus/prometheus v0.42.0
1514
github.com/rakyll/statik v0.1.7
1615
github.com/sahilm/fuzzy v0.1.0
17-
github.com/stretchr/testify v1.8.0
18-
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f
16+
github.com/stretchr/testify v1.8.1
17+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
1918
gopkg.in/yaml.v3 v3.0.1
2019
)
20+
21+
require (
22+
github.com/beorn7/perks v1.0.1 // indirect
23+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
24+
github.com/davecgh/go-spew v1.1.1 // indirect
25+
github.com/dennwc/varint v1.0.0 // indirect
26+
github.com/go-kit/log v0.2.1 // indirect
27+
github.com/go-logfmt/logfmt v0.5.1 // indirect
28+
github.com/gogo/protobuf v1.3.2 // indirect
29+
github.com/golang/protobuf v1.5.2 // indirect
30+
github.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd // indirect
31+
github.com/json-iterator/go v1.1.12 // indirect
32+
github.com/julienschmidt/httprouter v1.3.0 // indirect
33+
github.com/kr/text v0.2.0 // indirect
34+
github.com/kylelemons/godebug v1.1.0 // indirect
35+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
36+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
37+
github.com/modern-go/reflect2 v1.0.2 // indirect
38+
github.com/pmezard/go-difflib v1.0.0 // indirect
39+
github.com/prometheus/client_model v0.3.0 // indirect
40+
github.com/prometheus/procfs v0.8.0 // indirect
41+
go.uber.org/atomic v1.10.0 // indirect
42+
go.uber.org/goleak v1.2.0 // indirect
43+
golang.org/x/exp v0.0.0-20230124195608-d38c7dcee874 // indirect
44+
golang.org/x/sys v0.4.0 // indirect
45+
google.golang.org/protobuf v1.28.1 // indirect
46+
)

0 commit comments

Comments
 (0)