Skip to content

Commit

Permalink
upgrade x/net
Browse files Browse the repository at this point in the history
  • Loading branch information
rajatgoel committed Dec 19, 2024
1 parent 550e7b5 commit cc8802d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
connectrpc.com/grpchealth v1.3.0
connectrpc.com/grpcreflect v1.2.0
github.com/stretchr/testify v1.10.0
golang.org/x/net v0.32.0
golang.org/x/net v0.33.0
google.golang.org/protobuf v1.35.1
modernc.org/sqlite v1.31.1
)
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,8 @@ golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=
golang.org/x/net v0.16.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE=
golang.org/x/net v0.32.0 h1:ZqPmj8Kzc+Y6e0+skZsuACbx+wzMgo5MQsJh9Qd6aYI=
golang.org/x/net v0.32.0/go.mod h1:CwU0IoeOlnQQWJ6ioyFrfRuomB8GKF6KbYXZVyeXNfs=
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
Expand Down
10 changes: 5 additions & 5 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
gen:
go run github.com/bufbuild/buf/cmd/buf generate proto
find . -name sqlc.yaml | xargs go run github.com/sqlc-dev/sqlc/cmd/sqlc generate -f
go tool buf generate proto
find . -name sqlc.yaml | xargs go tool sqlc generate -f

lint: gen
go run github.com/bufbuild/buf/cmd/buf lint proto
go run github.com/bufbuild/buf/cmd/buf breaking proto --against '.git#branch=main,subdir=proto'
go run github.com/golangci/golangci-lint/cmd/golangci-lint run ./...
go tool buf lint proto
go tool buf breaking proto --against '.git#branch=main,subdir=proto'
go tool golangci-lint run ./...

test: lint
go vet ./...
Expand Down

0 comments on commit cc8802d

Please sign in to comment.