-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backport PR #2664 to release/v1.7 for Refactor grpc/status.withDetails function for performance #2668
Backport PR #2664 to release/v1.7 for Refactor grpc/status.withDetails function for performance #2668
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,6 +1,6 @@ | ||||||
module github.com/vdaas/vald/example/client | ||||||
|
||||||
go 1.23.1 | ||||||
go 1.23.2 | ||||||
|
||||||
replace ( | ||||||
github.com/envoyproxy/protoc-gen-validate => github.com/envoyproxy/protoc-gen-validate v1.1.0 | ||||||
|
@@ -11,10 +11,10 @@ replace ( | |||||
golang.org/x/crypto => golang.org/x/crypto v0.27.0 | ||||||
golang.org/x/net => golang.org/x/net v0.29.0 | ||||||
golang.org/x/text => golang.org/x/text v0.18.0 | ||||||
google.golang.org/genproto => google.golang.org/genproto v0.0.0-20240924160255-9d4c2d233b61 | ||||||
google.golang.org/genproto/googleapis/api => google.golang.org/genproto/googleapis/api v0.0.0-20240924160255-9d4c2d233b61 | ||||||
google.golang.org/genproto/googleapis/rpc => google.golang.org/genproto/googleapis/rpc v0.0.0-20240924160255-9d4c2d233b61 | ||||||
google.golang.org/grpc => google.golang.org/grpc v1.67.0 | ||||||
google.golang.org/genproto => google.golang.org/genproto v0.0.0-20240930140551-af27646dc61f | ||||||
google.golang.org/genproto/googleapis/api => google.golang.org/genproto/googleapis/api v0.0.0-20240930140551-af27646dc61f | ||||||
google.golang.org/genproto/googleapis/rpc => google.golang.org/genproto/googleapis/rpc v0.0.0-20240930140551-af27646dc61f | ||||||
google.golang.org/grpc => google.golang.org/grpc v1.67.1 | ||||||
google.golang.org/protobuf => google.golang.org/protobuf v1.34.2 | ||||||
gopkg.in/yaml.v2 => gopkg.in/yaml.v2 v2.4.0 | ||||||
gopkg.in/yaml.v3 => gopkg.in/yaml.v3 v3.0.1 | ||||||
|
@@ -37,6 +37,6 @@ require ( | |||||
golang.org/x/sys v0.25.0 // indirect | ||||||
golang.org/x/text v0.18.0 // indirect | ||||||
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect | ||||||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||||||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240924160255-9d4c2d233b61 // indirect | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Potential version mismatch in genproto packages The version of google.golang.org/genproto/googleapis/rpc in the require section (v0.0.0-20240924160255-9d4c2d233b61) is different from the version specified in the replace section (v0.0.0-20240930140551-af27646dc61f). This could potentially lead to compatibility issues. Consider aligning these versions to ensure consistency: -google.golang.org/genproto/googleapis/rpc v0.0.0-20240924160255-9d4c2d233b61 // indirect
+google.golang.org/genproto/googleapis/rpc v0.0.0-20240930140551-af27646dc61f // indirect Alternatively, you may want to update the replace directive to match this version if it's more recent and compatible with your project. 📝 Committable suggestion
Suggested change
|
||||||
google.golang.org/protobuf v1.34.2 // indirect | ||||||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incorrect Go version specified
The Go version specified (1.23.2) does not exist. As of October 2024, the latest stable version of Go is in the 1.22.x series. Please update this to the correct version, likely 1.22.x or the latest available stable version.
Consider updating the Go version to the latest stable release:
Replace 'x' with the latest minor version available.