ysugimoto/grpc-graphql-gateway

Follow grpc 1.70.0

Open

#74 opened on Mar 4, 2025

View on GitHub
 (0 comments) (0 reactions) (0 assignees)Go (54 forks)github user discovery
help wanted

Repository metrics

Stars
 (422 stars)
PR merge metrics
 (PR metrics pending)

Description

Now the latest version of google.golang.org/grpc if v1.70.0. From the godoc, this version (or since old version) has some deprecated functions which we're using:

  • grpc.DialContext
  • grpc.WithInsecure

So we should migrate them for the latest syntax like:

  • grpc.NewClient
  • insecure.NewCredentials

This change affects to generated go file so need to change the mifrations are OK.

Contributor guide