Skip to content

Commit 36daa12

Browse files
authored
3rd party lib updates (#36)
* update proto/otlp x/sys mods * simplify makefile
1 parent 3a804a6 commit 36daa12

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Variables
2-
PACKAGES := $(shell go list ./...)
3-
41
.PHONY: all
52
all: help
63

@@ -16,7 +13,7 @@ help: Makefile
1613
## test: Run tests with race detection and coverage
1714
.PHONY: test
1815
test: go-generate
19-
go test -race -cover $(PACKAGES)
16+
go test -race -cover ./...
2017

2118
## bench: Run performance benchmarks and create reports
2219
.PHONY: bench
@@ -26,7 +23,7 @@ bench: go-generate
2623
## bench-quick: Run benchmarks without creating reports
2724
.PHONY: bench-quick
2825
bench-quick: go-generate
29-
go test -run=^$$ -bench=. -benchmem $(PACKAGES)
26+
go test -run=^$$ -bench=. -benchmem ./...
3027

3128
## lint: Run golangci-lint code quality checks
3229
.PHONY: lint

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ require (
1919
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
2020
github.com/stretchr/objx v0.5.2 // indirect
2121
github.com/tetratelabs/wabin v0.0.0-20230304001439-f6f874872834 // indirect
22-
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
23-
golang.org/x/sys v0.32.0 // indirect
22+
go.opentelemetry.io/proto/otlp v1.7.0 // indirect
23+
golang.org/x/sys v0.33.0 // indirect
2424
google.golang.org/protobuf v1.36.6 // indirect
2525
gopkg.in/yaml.v3 v3.0.1 // indirect
2626
)

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ github.com/tetratelabs/wabin v0.0.0-20230304001439-f6f874872834 h1:ZF+QBjOI+tILZ
2929
github.com/tetratelabs/wabin v0.0.0-20230304001439-f6f874872834/go.mod h1:m9ymHTgNSEjuxvw8E7WWe4Pl4hZQHXONY8wE6dMLaRk=
3030
github.com/tetratelabs/wazero v1.9.0 h1:IcZ56OuxrtaEz8UYNRHBrUa9bYeX9oVY93KspZZBf/I=
3131
github.com/tetratelabs/wazero v1.9.0/go.mod h1:TSbcXCfFP0L2FGkRPxHphadXPjo1T6W+CseNNY7EkjM=
32-
go.opentelemetry.io/proto/otlp v1.5.0 h1:xJvq7gMzB31/d406fB8U5CBdyQGw4P399D1aQWU/3i4=
33-
go.opentelemetry.io/proto/otlp v1.5.0/go.mod h1:keN8WnHxOy8PG0rQZjJJ5A2ebUoafqWp0eVQ4yIXvJ4=
32+
go.opentelemetry.io/proto/otlp v1.7.0 h1:jX1VolD6nHuFzOYso2E73H85i92Mv8JQYk0K9vz09os=
33+
go.opentelemetry.io/proto/otlp v1.7.0/go.mod h1:fSKjH6YJ7HDlwzltzyMj036AJ3ejJLCgCSHGj4efDDo=
3434
go.starlark.net v0.0.0-20250603171236-27fdb1d4744d h1:FubZUgwT1cKKeI+fybmPehRDxqv/SurjGzaCXv5IeLs=
3535
go.starlark.net v0.0.0-20250603171236-27fdb1d4744d/go.mod h1:YKMCv9b1WrfWmeqdV5MAuEHWsu5iC+fe6kYl2sQjdI8=
36-
golang.org/x/sys v0.32.0 h1:s77OFDvIQeibCmezSnk/q6iAfkdiQaJi4VzroCFrN20=
37-
golang.org/x/sys v0.32.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
36+
golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
37+
golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
3838
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
3939
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
4040
google.golang.org/protobuf v1.36.6 h1:z1NpPI8ku2WgiWnf+t9wTPsn6eP1L7ksHUlkfLvd9xY=

0 commit comments

Comments
 (0)