-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The build failed as the buf.gen.yaml file didn't pin to a specific plugin version, which caused generation checks to fail as the generated code updated since the latest time it was run. Other minor fixes: - Enable dependabot for Go modules. - Update to go 1.23. - Update golangci-lint. - Pin the buf CLI version used in the Makefile for reproducible builds. - Update the 'upgrade' make target to only update direct dependencies and update the protocolbuffers/go plugin in buf.gen.yaml to match the version found in go.mod. - Regenerate the protobuf code and golden input (it changed after upgrading protovalidate).
- Loading branch information
Showing
13 changed files
with
146 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,34 @@ | ||
module github.com/bufbuild/protoschema-plugins | ||
|
||
go 1.22 | ||
go 1.23.0 | ||
|
||
require ( | ||
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.34.2-20240508200655-46a4cf4ba109.2 | ||
github.com/bufbuild/buf v1.34.0 | ||
github.com/bufbuild/protoplugin v0.0.0-20240323223605-e2735f6c31ee | ||
github.com/jhump/protoreflect v1.16.0 | ||
github.com/stretchr/testify v1.9.0 | ||
google.golang.org/protobuf v1.34.2 | ||
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.35.2-20241127180247-a33202765966.1 | ||
github.com/bufbuild/buf v1.47.2 | ||
github.com/bufbuild/protoplugin v0.0.0-20240911180120-7bb73e41a54a | ||
github.com/jhump/protoreflect v1.17.0 | ||
github.com/stretchr/testify v1.10.0 | ||
google.golang.org/protobuf v1.35.2 | ||
) | ||
|
||
require ( | ||
buf.build/go/protoyaml v0.2.0 // indirect | ||
cel.dev/expr v0.18.0 // indirect | ||
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect | ||
github.com/bufbuild/protocompile v0.14.0 // indirect | ||
github.com/bufbuild/protovalidate-go v0.6.2 // indirect | ||
github.com/bufbuild/protoyaml-go v0.1.9 // indirect | ||
github.com/bufbuild/protocompile v0.14.1 // indirect | ||
github.com/bufbuild/protovalidate-go v0.7.3-0.20241015162221-1446f1e1d576 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/gofrs/uuid/v5 v5.2.0 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/cel-go v0.20.1 // indirect | ||
github.com/google/cel-go v0.22.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/stoewer/go-strcase v1.3.0 // indirect | ||
go.opentelemetry.io/otel v1.27.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.27.0 // indirect | ||
go.uber.org/atomic v1.11.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/crypto v0.24.0 // indirect | ||
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.21.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d // indirect | ||
golang.org/x/crypto v0.29.0 // indirect | ||
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f // indirect | ||
golang.org/x/sync v0.9.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.