Skip to content
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

go.mod: update grpc from v1.16.0 to v1.17.0 #115

Merged
merged 2 commits into from
Mar 4, 2019
Merged

go.mod: update grpc from v1.16.0 to v1.17.0 #115

merged 2 commits into from
Mar 4, 2019

Commits on Feb 28, 2019

  1. go.mod: update grpc from v1.16.0 to v1.17.0

    Update the grpc dependency to v1.17.0, which includes the fix
    to remove the invalid github.com/golang/lint module requirement
    in grpc/grpc-go#2393.
    
    This change was generated by running the following commands
    using Go 1.2:
    
    	go get google.golang.org/grpc@v1.17.0
    	go mod tidy
    
    Fixes #114
    Updates golang/lint#436
    dmitshur committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    605e888 View commit details
    Browse the repository at this point in the history
  2. go.mod: drop indirect requirement of genproto

    The currently specified pseudo-version of the genproto module, which
    is v0.0.0-20181109154231-b5d43981345b, itself requires grpc v1.16.0.
    
    Drop this indirect requirement, since it's not needed for the purposes
    of the main zipkin-go module.
    
    This change was generated by running the following commands
    using Go 1.2:
    
    	go mod edit -droprequire=google.golang.org/genproto
    	go mod tidy
    dmitshur committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    fd2c0fa View commit details
    Browse the repository at this point in the history