RedHatInsights / yggdrasil

GNU General Public License v3.0
21 stars 37 forks source link

Update gRPC #167

Closed subpop closed 1 year ago

subpop commented 1 year ago

Update gRPC versions to 1.58.3. The update to grpc 1.58.3 requires updating the minimum Go version to 1.19. Updating the Go version to 1.19 requires removing the usage of the deprecated ioutils package, replacing the golang.org/x/crypto/ssh/terminal package with golang.org/x/term, and replacing grpc.WithInsecure() with grpc.WIthTransportCredentials(insecure.NewCredentials()). This PR includes commits that fulfill those requirements.

ehelms commented 1 year ago

Thanks for this @subpop ! From a high level overview the changes look good.