Skip to content

Commit 15bc956

Browse files
chore: Update dependencies pt2 (#4567)
* chore: Update dependencies pt2 * Update sony/gobreaker * Update github.com/samber/lo * Update go version and gnostic * Remove GO_MOD_VERSION to reduce maintenance burden
1 parent cb69e8d commit 15bc956

File tree

20 files changed

+67
-2868
lines changed

20 files changed

+67
-2868
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ BIN := $(CURDIR)/.tmp/bin
1010
COPYRIGHT_YEARS := 2021-2022
1111
LICENSE_IGNORE := -e /testdata/
1212
GO_TEST_FLAGS ?= -v -race -cover
13-
GO_MOD_VERSION := 1.24.0
1413

1514
GOOS ?= $(shell go env GOOS)
1615
GOARCH ?= $(shell go env GOARCH)
@@ -197,12 +196,12 @@ go/mod_tidy_root:
197196
# doesn't work for go workspace
198197
# GO111MODULE=on go mod verify
199198
go work sync
200-
GO111MODULE=on go mod tidy -go $(GO_MOD_VERSION)
199+
GO111MODULE=on go mod tidy
201200

202201
.PHONY: go/mod_tidy/%
203202
go/mod_tidy/%: go/mod_tidy_root
204203
cd "$*" && GO111MODULE=on go mod download
205-
cd "$*" && GO111MODULE=on go mod tidy -go $(GO_MOD_VERSION)
204+
cd "$*" && GO111MODULE=on go mod tidy
206205

207206
.PHONY: fmt
208207
fmt: $(BIN)/golangci-lint $(BIN)/buf $(BIN)/tk ## Automatically fix some lint errors

api/go.mod

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/grafana/pyroscope/api
22

3-
go 1.24.0
3+
go 1.24.6
44

55
toolchain go1.24.8
66

77
require (
88
connectrpc.com/connect v1.19.1
9-
github.com/google/gnostic v0.7.0
9+
github.com/google/gnostic v0.7.1
1010
github.com/gorilla/mux v1.8.1
1111
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3
1212
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
@@ -19,10 +19,11 @@ require (
1919

2020
require (
2121
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
22-
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
22+
github.com/google/gnostic-models v0.7.0 // indirect
2323
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
2424
github.com/rogpeppe/go-internal v1.13.1 // indirect
2525
go.opentelemetry.io/otel v1.38.0 // indirect
26+
go.yaml.in/yaml/v3 v3.0.4 // indirect
2627
golang.org/x/net v0.46.0 // indirect
2728
golang.org/x/sys v0.37.0 // indirect
2829
golang.org/x/text v0.30.0 // indirect

api/go.sum

Lines changed: 6 additions & 1508 deletions
Large diffs are not rendered by default.

examples/golang-pgo/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module rideshare
22

3-
go 1.24.0
3+
go 1.24.6
44

55
toolchain go1.24.8
66

examples/golang-pgo/go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.24.0
1+
go 1.24.6
22

33

44
use .

examples/language-sdk-instrumentation/golang-push/rideshare-alloy/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module rideshare
22

3-
go 1.24.0
3+
go 1.24.6
44

55
toolchain go1.24.8
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.24.0
1+
go 1.24.6
22

33

44
use .

examples/language-sdk-instrumentation/golang-push/rideshare-k6/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module rideshare
22

3-
go 1.24.0
3+
go 1.24.6
44

55
toolchain go1.24.8
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.24.0
1+
go 1.24.6
22

33

44
use .

examples/language-sdk-instrumentation/golang-push/rideshare/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module rideshare
22

3-
go 1.24.0
3+
go 1.24.6
44

55
toolchain go1.24.8
66

0 commit comments

Comments
 (0)