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

fix(deps): update module google.golang.org/grpc to v1.47.0 #121

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 26, 2020

Mend Renovate

This PR contains the following updates:

Package Type Update Change
google.golang.org/grpc require minor v1.26.0 -> v1.47.0
google.golang.org/grpc replace minor v1.26.0 -> v1.47.0

Release Notes

grpc/grpc-go

v1.47.0

Compare Source

New Features

  • xds: add support for RBAC metadata invert matchers (#​5345)

Bug Fixes

  • client: fix a context leaked if a connection to an address is lost before it is fully established (#​5337)
  • client: fix potential panic during RPC retries (#​5323)
  • xds/client: fix a potential concurrent map read/write in load reporting (#​5331)
  • client/SubConn: do not recreate addrConn if UpdateAddresses is called with the same addresses (#​5373)
  • xds/eds: resources containing duplicate localities with the same priority will be rejected (#​5303)
  • server: return Canceled or DeadlineExceeded status code when writing headers to a stream that is already closed (#​5292)

Behavior Changes

  • xds/priority: start the init timer when a child switches to Connecting from non-failure states (#​5334)
  • server: respond with HTTP Status 405 and gRPC status INTERNAL if the method sent to server is not POST (#​5364)

Documentation

  • server: clarify documentation around setting and sending headers and ServerStream errors (#​5302)

v1.46.2

Compare Source

Bug Fixes

  • client: fix potential panic during RPC retries (#​5323)
  • xds: fix leak of deleted CDS resources from CSDS view (#​5339)

v1.46.1

Compare Source

v1.46.0

Compare Source

New Features

  • server: Support setting TCP_USER_TIMEOUT on grpc.Server connections using keepalive.ServerParameters.Time (#​5219)
  • client: perform graceful switching of LB policies in the ClientConn by default (#​5285)
  • all: improve logging by including channelz identifier in log messages (#​5192)

API Changes

  • grpc: delete WithBalancerName() API, deprecated over 4 years ago in #​1697 (#​5232)
  • balancer: change BuildOptions.ChannelzParentID to an opaque identifier instead of int (#​5192)
    • Note: the balancer package is labeled as EXPERIMENTAL, and we don't believe users were using this field.

Behavior Changes

  • client: change connectivity state to TransientFailure in pick_first LB policy when all addresses are removed (#​5274)
    • This is a minor change that brings grpc-go's behavior in line with the intended behavior and how C and Java behave.
  • metadata: add client-side validation of HTTP-invalid metadata before attempting to send (#​4886)

Bug Fixes

  • metadata: make a copy of the value slices in FromContext() functions so that modifications won't be made to the original copy (#​5267)
  • client: handle invalid service configs by applying the default, if applicable (#​5238)
  • xds: the xds client will now apply a 1 second backoff before recreating ADS or LRS streams (#​5280)

Dependencies

v1.45.0

Compare Source

Bug Fixes

  • xds/clusterresolver: pass cluster name to DNS child policy to be used in creds handshake (#​5119)
  • reflection: support dynamic messages (#​5180)

Performance Improvements

Behavior Changes

  • server: convert context errors returned by service handlers to status with the correct status code (Canceled or DeadlineExceeded), instead of Unknown (#​5156)

New Features

  • reflection: add NewServer(ServerOptions) for creating a reflection server with advanced customizations (#​5197)
  • xds: support federation (#​5128)
  • xds/resource: accept Self as LDS's RDS config source and CDS's EDS config source (#​5152)
  • xds/bootstrap: add plugin system for credentials specified in bootstrap file (#​5136)

v1.44.0

Compare Source

New Features

  • balancer: add RLS load balancing policy (#​5046)
  • xds: add RLS Cluster Specifier Plugin (#​5004)
  • insecure: remove experimental notice (#​5069)

Bug Fixes

  • internal/balancergroup: eliminate race in exitIdle (#​5012)
  • authz: fix regex expression match (#​5035)

Documentation

  • grpc: minor improvement on WithInsecure() document (#​5068)
  • attributes: document that some value types (e.g. maps) must implement Equal (#​5109)
  • dialoptions.go: Fix WithBlock godoc (#​5073)
  • grpclog.DepthLoggerV2: Correct comment: formats like fmt.Println (#​5038)

v1.43.0

Compare Source

API Changes

Behavior Changes

  • status: support wrapped errors in FromContextError (#​4977)
  • config: remove the environment variable to disable retry support (#​4922)

New Features

  • balancer: new field Authority in BuildOptions for server name to use in the authentication handshake with a remote load balancer (#​4969)

Bug Fixes

  • xds/resolver: fix possible ClientConn leak upon resolver initialization failure (#​4900)
  • client: fix nil panic in rare race conditions with the pick first LB policy (#​4971)
  • xds: improve RPC error messages when xDS connection errors occur (#​5032, #​5054)
  • transport: do not create stream object in the face of illegal stream IDs (#​4873)

Documentation

  • client: clarify errors to indicate whether compressed or uncompressed messages exceeded size limits (#​4918)

v1.42.0

Compare Source

Behavior Changes

  • grpc: Dial("unix://relative-path") no longer works (#​4817)
    • use "unix://absolute-path" or "unix:relative-path" instead in accordance with our documentation
  • xds/csds: use new field GenericXdsConfig instead of PerXdsConfig (#​4898)
  • transport: server transport will reject requests with connection header (#​4803)

New Features

  • grpc: support grpc.WithAuthority when secure credentials are used (#​4817)
  • creds/google: add NewDefaultCredentialsWithOptions() to support custom per-RPC creds (#​4767, #​4830)
  • authz: create file watcher interceptor for gRPC SDK API (#​4760)
  • attributes: add Equal method (#​4855)
  • resolver: add AddressMap and State.BalancerAttributes (#​4855)
  • resolver: Add URL field to Target to store parsed dial target (#​4817)
  • grpclb: add a target_name field to lb config to specify target when used as a child policy (#​4847)
  • grpclog: support formatting log output as JSON (#​4854)

Bug Fixes

  • server: add missing conn.Close if the connection dies before reading the HTTP/2 preface (#​4837)
  • grpclb: recover if addresses are received after an empty server list was received previously (#​4879)
  • authz: support empty principals and fix rbac authenticated matcher (#​4883)
  • xds/rds: NACK the RDS response if it contains unknown cluster specifier (#​4788)
  • xds/priority: do not switch to low priority when high priority is in Idle (e.g. ringhash) (#​4889)

Documentation

  • grpc: stabilize WithDefaultServiceConfig and improve godoc (#​4888)
  • status: clarify FromError docstring (#​4880)
  • examples: add example illustrating the use of unix abstract sockets (#​4848)
  • examples: update load balancing example to use loadBalancingConfig (#​4887)
  • doc: promote WithDisableRetry to stable; clarify retry is enabled by default (#​4901)

API Changes

  • credentials: Mark TransportCredentials.OverrideServerName method as deprecated (#​4817)

v1.41.1

Compare Source

  • creds/google: add NewDefaultCredentialsWithOptions() to support custom per-RPC creds (#​4767, #​4830)
  • pickfirst: check b.sc before calling Connect (#​4971)

v1.41.0

Compare Source

API Changes

  • xds: Promote xds server and creds APIs to stable (#​4753)
  • balancer: add ExitIdle interface to instruct the balancer to attempt to leave the IDLE state by connecting SubConns if appropriate. (#​4673)
    • NOTICE: This method will be required by the Balancer interface in the future

Behavior Changes

  • xds: update xdsclient to keep valid resources from the response even if it has invalid responses and is NACK'ed (see gRFC 260) (#​4743)
  • balancer: SubConns no longer automatically reconnect after READY; instead they transition to IDLE on connection loss (#​4613)

New Features

  • xds: add support for RINGHASH lb-policy and affinity (#​4741)
  • xds: add support for retry policy in VirtualHosts and Routes (#​4738)
  • stats: support stats for all retry attempts; support transparent retry (#​4749)
  • authz: create interceptors for gRPC security policy API (#​4664)

Bug Fixes

  • transport: fix race in transport stream accessing s.recvCompress (#​4641)
  • client: fix transparent retries when per-RPC credentials are in use (#​4785)
  • server: fix bug that net.Conn is leaked if the connection is closed (io.EOF) immediately with no traffic (#​4633)
  • oauth: Allow access to Google API regional endpoints via Google Default Credentials (#​4713)

v1.40.1

Compare Source

  • creds/google: add NewDefaultCredentialsWithOptions() to support custom per-RPC creds (#​4767, #​4830)

v1.40.0

Compare Source

Behavior Changes

  • balancer: client channel no longer connects to idle subchannels that are returned by the pickers; LB policy should call SubConn.Connect instead. (#​4579)
    • This change is in line with existing documentation stating the balancer must call Connect on idle SubConns in order for them to connect, and is preparation for an upcoming change that transitions SubConns to the idle state when connections are lost. See https://pkg.go.dev/google.golang.org/grpc/balancer#SubConn for more details.

Bug Fixes

  • transport: fail RPCs without HTTP status 200 (OK), according to the gRPC spec (#​4474)
  • binarylog: fail the Write() method if proto marshaling fails (#​4582)
  • binarylog: exit the flusher goroutine upon closing the bufferedSink (#​4583)

New Features

  • metadata: add Delete method to MD to encapsulate lowercasing (#​4549)
  • xds/cds: support logical DNS cluster and aggregated cluster (#​4594)
  • stats: add stats.Begin.IsClientStream and IsServerStream to indicate the type of RPC invoked (#​4533)

Performance Improvements

v1.39.1

Compare Source

  • server: fix bug that net.Conn is leaked if the connection is closed (io.EOF) immediately with no traffic (#​4642)
  • transport: fix race in transport stream accessing s.recvCompress (#​4627)

v1.39.0

Compare Source

Behavior Changes

  • csds: return empty response if xds client is not set (#​4505)
  • metadata: convert keys to lowercase in FromContext() (#​4416)

New Features

  • xds: add GetServiceInfo to GRPCServer (#​4507)
  • xds: add test-only injection of xds config to client and server (#​4476)
  • server: allow PreparedMsgs to work for server streams (#​3480)

Performance Improvements

  • transport: remove decodeState from client & server to reduce allocations (#​4423)

Bug Fixes

  • server: return UNIMPLEMENTED on receipt of malformed method name (#​4464)
  • xds/rds: use 100 as default weighted cluster totalWeight instead of 0 (#​4439)
  • transport: unblock read throttling when controlbuf exits (#​4447)
  • client: fix status code to return Unavailable for servers shutting down instead of Unknown (#​4561)

Documentation

  • doc: fix broken benchmark dashboard link in README.md (#​4503)
  • example: improve hello world server with starting msg (#​4468)
  • client: Clarify that WaitForReady will block for CONNECTING channels (#​4477)

v1.38.1

Compare Source

internal/transport: do not mask ConnectionError (#​4561)

v1.38.0

Compare Source

API Changes

  • reflection: accept interface instead of grpc.Server struct in Register() (#​4340)
  • resolver: add error return value from ClientConn.UpdateState (#​4270)

Behavior Changes

  • client: do not poll name resolver when errors or bad updates are reported (#​4270)
  • transport: InTapHandle may return RPC status errors; no longer RST_STREAMs (#​4365)

New Features

  • client: propagate connection error causes to RPC status (#​4311, #​4316)
  • xds: support inline RDS resource from LDS response (#​4299)
  • xds: server side support is now experimentally available
  • server: add ForceServerCodec() to set a custom encoding.Codec on the server (#​4205)

Performance Improvements

Bug Fixes

  • xds/balancergroup: fix rare memory leak after closing ClientConn (#​4308)

Documentation

  • examples: update xds examples for PSM security (#​4256)
  • grpc: improve docs on StreamDesc (#​4397)

v1.37.1

Compare Source

  • client: fix rare panic when shutting down client while receiving the first name resolver update (#​4398)
  • client: fix leaked addrConn struct when addresses are updated (#​4347)
  • xds/resolver: prevent panic when two LDS updates are receives without RDS in between (#​4327)

v1.37.0

Compare Source

API Changes

  • balancer: Add UpdateAddresses() to balancer.ClientConn interface (#​4215)
    • NOTICE: balancer.SubConn.UpdateAddresses() is now deprecated and will be REMOVED in gRPC-Go 1.39

Behavior Changes

New Features

  • xds: add support for csds (#​4226, #​4217, #​4243)
  • admin: create admin package for conveniently registering standard admin services (#​4274)
  • xds: add support for HTTP filters (gRFC A39) (#​4206, #​4221)
  • xds: implement fault injection HTTP filter (A33) (#​4236)
  • xds: enable timeout, circuit breaking, and fault injection by default (#​4286)
  • xds: implement a priority based load balancer (#​4070)
  • xds/creds: support all SAN matchers on client-side (#​4246)

Bug Fixes

  • xds: add env var protection for client-side security (#​4247)
  • circuit breaking: update picker inline when there's a counter update (#​4212)
  • server: fail RPCs without POST HTTP method (#​4241)

v1.36.1

Compare Source

  • xds: add env var protection for client-side security (#​4247)

v1.36.0

Compare Source

New Features

  • xds bootstrap: support config content in env variable (#​4153)

Bug Fixes

  • encoding/proto: do not panic when types do not match (#​4218)

Documentation

v1.35.1

Compare Source

  • encoding/proto: do not panic when types do not match (#​4218)
  • xds: add env var protection for client-side security (#​4247)

v1.35.0

Compare Source

Behavior Changes

  • roundrobin: strip attributes from addresses (#​4024)
  • balancer: set RPC metadata in address attributes, instead of Metadata field (#​4041)

New Features

  • support unix-abstract schema (#​4079)
  • xds: implement experimental RouteAction timeout support (#​4116)
  • xds: Implement experimental circuit breaking support. (#​4050)

Bug Fixes

  • xds: server_features should be a child of xds_servers and not a sibling (#​4087)
  • xds: NACK more invalid RDS responses (#​4120)

v1.34.2

Compare Source

  • encoding/proto: do not panic when types do not match (#​4218)
  • xds: add env var protection for client-side security (#​4247)

v1.34.1

Compare Source

  • xds client: Updated v3 type for http connection manager (#​4137)
  • lrs: use JSON for locality's String representation (#​4135)
  • eds/lrs: handle nil when LRS is disabled (#​4086)
  • client: fix "unix" scheme handling for some corner cases (#​4021)

v1.34.0

Compare Source

New Features

  • client: implement support for "unix" resolver scheme (#​3890)
  • rds: allow case_insensitive path matching (#​3997)
  • credentials/insecure: implement insecure credentials. (#​3964)
  • lrs: handle multiple clusters in LRS stream (#​3935)

Performance Improvements

  • encoding/proto: simplify & optimize proto codec (#​3958)

Bug Fixes

  • internal/transport: fix a bug causing -bin metadata to be incorrectly encoded (#​3985)
  • grpclb: consider IDLE SubConns as connecting (#​4031)
  • grpclb: send custom user-agent (#​4011)
  • client: use "localhost:port" as authority if target is ":port" (#​4017)
  • credentials: fix PerRPCCredentials w/RequireTransportSecurity and security levels (#​3995)

Documentation

v1.33.3

Compare Source

  • xds client: Updated v3 type for http connection manager (#​4137)
  • lrs: use JSON for locality's String representation (#​4135)
  • eds/lrs: handle nil when LRS is disabled (#​4086)

v1.33.2

Compare Source

  • protobuf: update all generated code to google.golang.org/protobuf (#​3932)
  • xdsclient: populate error details for NACK (#​3975)
  • internal/credentials: fix a bug and add one more helper function SPIFFEIDFromCert (#​3929)

v1.33.1

API Changes

  • connectivity: remove unused, experimental Reporter interface (#​3875)

New Features

  • xds bootstrap: support insecure and make Creds required (#​3881)
  • xds: add bootstrap support for certificate providers. (#​3901)
  • lrs: add a layer for clusters in load store (#​3880)
  • credentials/xds: implementation of client-side xDS credentials. (#​3888)

Bug Fixes

  • http2_client: fix reader segfault on PROTOCOL_ERRORs (#​3926)
  • internal/transport: handle h2 errcode on header decoding (#​3872)
  • xds: exit from run() goroutine when resolver is closed. (#​3882)
  • credentials/alts: ClientAuthorizationCheck to case-fold compare of peer SA (#​3792)
  • service reflection: include transitive closure for a file (#​3851)
  • stats: include message header in stats.InPayload.WireLength (#​3886)
  • binarylog: export Sink (#​3879)
  • service reflection: include transitive closure for a file (#​3851)

v1.32.0

Compare Source

Dependencies

  • Remove Go 1.9 support; assume go1.12 build tag (#​3767)

New Features

  • grpc: add ServiceRegistrar interface; bump up support package version. (#​3816; #​3818)
  • xds: add LRS balancing policy (#​3799)

Bug Fixes

  • server: prevent hang in Go HTTP transport in some error cases (#​3833)
  • server: respond correctly to client headers with END_STREAM flag set (#​3803)
  • eds: fix priority timeout failure when EDS removes all priorities (#​3830)

v1.31.1

Compare Source

  • eds: fix priority timeout failure when EDS removes all priorities (#​3839)

v1.31.0

Compare Source

API Changes

  • balancer: remove deprecated type aliases (#​3742)

New Features

  • The following new xDS functionalities are added in this release (xDS features supported in a given release are documented here):
    • Requests matching based on path (prefix, full path and safe regex) and headers
    • Requests routing to multiple clusters based on weights
  • service config: add default method config support (#​3684)
  • credentials/sts: PerRPCCreds Implementation (#​3696)
  • credentials: check and expose SPIFFE ID (#​3626)
  • protoc-gen-go-grpc: support for proto3 field presence (#​3752)

Bug Fixes

  • client: set auth header to localhost for unix target (#​3730)

Documentation

v1.30.1

Compare Source

  • eds: fix priority timeout failure when EDS removes all priorities (#​3840)

v1.30.0

Compare Source

API Changes

  • This release adds an xDS URI scheme called xds. This is the stable version of the scheme xds-experimental that was introduced in v1.28.0. xds-experimental scheme will be removed in subsequent releases so you must switch to xds scheme instead. xds scheme is a client side implementation of xDSv2 APIs. This allows a gRPC client written in Go to receive configuration from an xDSv2 API compatible server and use that configuration to load balance RPCs. In this release, only the virtual host matching, default path (“” or “/”) matching and cluster route action are supported. The features supported in a given release are documented here.
  • balancer: move Balancer and Picker to V2; delete legacy API (#​3180, #​3431)
    • Replace balancer.Balancer and balancer.Picker with the V2Balancer and V2Picker versions.
    • Remove balancer.ClientConn.UpdateBalancerState.
    • Remove the original balancer plugin API, based on grpc.Balancer, and all related functionality.
    • Remove the deprecated naming package.

Behavior Changes

  • grpclb, dns: pass balancer addresses via resolver.State (#​3614)

New Features

  • balancer: support hierarchical paths in addresses (#​3494)
  • client: option to surface connection errors to callers (#​3430)
  • credentials: pass address attributes from balancer to creds handshaker. (#​3548)
  • credentials: local creds implementation (#​3517)
  • advancedtls: add fine-grained verification levels in XXXOptions (#​3454)
  • xds: handle weighted cluster as route action (#​3613)
  • xds: add weighted_target balancer (#​3541)

Performance Improvements

  • transport: move append of header and data down to http2 write loop to save garbage (#​3568)
  • server.go: use worker goroutines for fewer stack allocations (#​3204)

Bug Fixes

  • stream: fix calloption.After() race in finish (#​3672)
  • retry: prevent per-RPC creds error from being transparently retried (#​3677, #​3691)
  • cache: callback without cache's mutex (#​3603)
  • client: properly check GRPC_GO_IGNORE_TXT_ERRORS environment variable (#​3532)
  • balancergroup: fix connectivity state (#​3585)
  • xds: use google default creds (#​3673)
  • xds: accept either "" or "/" as the prefix for the default route (#​3535)
  • xds: reject RDS response containing match with case-sensitive false (#​3592)

Documentation

  • examples: add go.mod to make examples a separate module (#​3546)
  • doc: update README for supported Go versions and travis for tests (#​3516)

v1.29.1

Compare Source

  • status: remove Error method accidentally added to *Status (#​3561)

v1.29.0

Compare Source

New Features

Bug Fixes

  • xds: update nonce even if the ACK/NACK is not sent on wire (#​3497)
  • xds: add temporary logging to LRS (#​3490)
  • wrr: make random wrr thread safe (#​3470)
  • transport: fix handling of header metadata in serverHandler (#​3484)
  • balancer: change roundrobin to accept empty address list (#​3491)
  • stats: set response compression codec on stats.InHeader and stats.OutHeader (#​3390)

Documentation

  • credentials: Update doc strings for NewClientTLSFromCert et. al. (#​3508)
  • examples: add example to show how to use the health service (#​3381)

v1.28.1

Compare Source

  • xds: update nonce even if the ACK/NACK is not sent on wire (#​3497)
  • balancer: change roundrobin to accept empty address list (#​3491)
  • xds: add logging to LRS (#​3490)

v1.28.0

Compare Source

New Features

  • This release adds an experimental client side implementation of xDSv2 APIs. This allows a gRPC client written in Go to receive configuration from an xDSv2 API compatible server and use that configuration to load balance RPCs. In this release, only the virtual host matching and cluster route action is supported. More features will be added in future.
  • grpclb: support explicit fallback signal (#​3351)
  • interceptor: new APIs for chaining server interceptors. (#​3336)
  • stats: add client side user agent to outgoing header (#​3331)

API Changes

  • credentials: deprecate ProtocolInfo.SecurityVersion (#​3372)

Bug Fixes

  • interop: Build grpclb_fallback/client.go only for linux. (#​3375)
  • internal: Update service_config.pb.go (#​3365)
  • internal: Move parseTarget function into internal package and export it. (#​3368)
  • balancer/base: keep bad SubConns in TransientFailure until Ready (#​3366)
  • balancer/base: consider an empty address list an error (#​3361)

Dependencies

  • protobuf: update protoc-gen-go version and generated code (#​3345)

v1.27.1

Compare Source

  • balancer/base: consider an empty address list an error

v1.27.0

Compare Source

API Changes

  • balancer/resolver: remove temporary backward-compatibility type aliases (#​3309)

Behavior Changes

  • dns: ignore TXT errors unless GRPC_GO_IGNORE_TXT_ERRORS=false (#​3299)

New Features

  • client: add interface for ClientConn to be accepted by generated code (#​3334)
  • client: add WithResolvers option for specifying client-local resolvers (#​3320)
  • advancedtls: add new module for advanced TLS handshaker (#​3187)
  • credentials: create API for transport security level information (#​3214)

Bug Fixes


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch from 6149f23 to a8bf3ae Compare May 27, 2020 04:35
@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch 28 times, most recently from 06d15ef to 0a169d9 Compare June 13, 2020 22:43
@sonarcloud
Copy link

sonarcloud bot commented Dec 9, 2020

Kudos, SonarCloud Quality Gate passed!

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch from d8f0253 to 7f1b0c2 Compare January 24, 2021 22:57
@renovate renovate bot changed the title chore(deps): update module google.golang.org/grpc to v1.34.0 chore(deps): update module google.golang.org/grpc to v1.35.0 Jan 24, 2021
@sonarcloud
Copy link

sonarcloud bot commented Jan 24, 2021

Kudos, SonarCloud Quality Gate passed!

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch from 7f1b0c2 to 6e7efe5 Compare April 26, 2021 17:37
@renovate renovate bot changed the title chore(deps): update module google.golang.org/grpc to v1.35.0 fix(deps): update module google.golang.org/grpc to v1.37.0 Apr 26, 2021
@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch from 6e7efe5 to 49620e6 Compare May 15, 2021 19:11
@renovate renovate bot changed the title fix(deps): update module google.golang.org/grpc to v1.37.0 fix(deps): update module google.golang.org/grpc to v1.37.1 May 15, 2021
@renovate
Copy link
Author

renovate bot commented May 15, 2021

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻️ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you check the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: docker run --rm --name=renovate_go --label=renovate_child -v "/mnt/renovate/gh/xmlking/micro-starter-kit":"/mnt/renovate/gh/xmlking/micro-starter-kit" -v "/tmp/renovate-cache":"/tmp/renovate-cache" -v "/tmp/renovate-cache/others/go":"/tmp/renovate-cache/others/go" -e GOPATH -e GOFLAGS -e CGO_ENABLED -w "/mnt/renovate/gh/xmlking/micro-starter-kit" docker.io/renovate/go:1.16.3 bash -l -c "git config --global url.\"https://**redacted**@github.com/\".insteadOf \"https://github.com/\" && go get -d ./... && go mod tidy && go mod tidy"
go: downloading google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013
go: downloading google.golang.org/grpc v1.37.1
go: downloading google.golang.org/protobuf v1.25.0
go: downloading github.com/google/uuid v1.1.2
go: downloading golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2
go: downloading golang.org/x/sys v0.0.0-20200523222454-059865788121
go: downloading golang.org/x/text v0.3.2
go: downloading golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37
go: downloading golang.org/x/tools v0.0.0-20191216173652-a0e659d51361
go get: upgraded google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1 => v0.0.0-20200526211855-cb27e3aa2013
go: downloading github.com/google/go-cmp v0.5.0
go: downloading golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
go: downloading golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: finding module for package google.golang.org/grpc/examples/helloworld/helloworld
go: downloading google.golang.org/grpc/examples v0.0.0-20210514222045-a12250e98f97
go: finding module for package google.golang.org/grpc/naming
go: found google.golang.org/grpc/examples/helloworld/helloworld in google.golang.org/grpc/examples v0.0.0-20210514222045-a12250e98f97
go: downloading github.com/golang/protobuf v1.4.3
go: downloading google.golang.org/genproto v0.0.0-20200806141610-86f49bd18e98
go: finding module for package google.golang.org/grpc/naming
github.com/xmlking/micro-starter-kit/cmd/account imports
	github.com/micro/go-micro/v2 imports
	github.com/micro/go-micro/v2/config/cmd imports
	github.com/micro/go-micro/v2/registry/etcd imports
	github.com/coreos/etcd/clientv3 tested by
	github.com/coreos/etcd/clientv3.test imports
	github.com/coreos/etcd/integration imports
	github.com/coreos/etcd/proxy/grpcproxy imports
	google.golang.org/grpc/naming: module google.golang.org/grpc@latest found (v1.37.1, replaced by google.golang.org/grpc@v1.37.1), but does not contain package google.golang.org/grpc/naming

@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch from 49620e6 to eff87a8 Compare June 6, 2021 23:16
@renovate renovate bot changed the title fix(deps): update module google.golang.org/grpc to v1.37.1 fix(deps): update module google.golang.org/grpc to v1.38.0 Jun 6, 2021
@renovate
Copy link
Author

renovate bot commented Jun 6, 2021

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: docker run --rm --name=renovate_go --label=renovate_child -v "/mnt/renovate/gh/xmlking/micro-starter-kit":"/mnt/renovate/gh/xmlking/micro-starter-kit" -v "/tmp/renovate-cache":"/tmp/renovate-cache" -e GOPATH -e GOPROXY -e GOFLAGS -e CGO_ENABLED -e GIT_CONFIG_KEY_0 -e GIT_CONFIG_VALUE_0 -e GIT_CONFIG_KEY_1 -e GIT_CONFIG_VALUE_1 -e GIT_CONFIG_KEY_2 -e GIT_CONFIG_VALUE_2 -e GIT_CONFIG_COUNT -e GIT_CONFIG_KEY_3 -e GIT_CONFIG_VALUE_3 -e GIT_CONFIG_KEY_4 -e GIT_CONFIG_VALUE_4 -e GIT_CONFIG_KEY_5 -e GIT_CONFIG_VALUE_5 -w "/mnt/renovate/gh/xmlking/micro-starter-kit" docker.io/renovate/go:1.18.3 bash -l -c "go get -d -t ./... && go mod tidy && go mod tidy"
go: downloading github.com/stretchr/testify v1.7.0
go: downloading google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013
go: downloading google.golang.org/grpc v1.47.0
go: downloading google.golang.org/protobuf v1.27.1
go: downloading github.com/google/uuid v1.1.2
go: downloading golang.org/x/net v0.0.0-20201021035429-f5854403a974
go: downloading github.com/grpc-ecosystem/grpc-gateway v1.16.0
go: downloading golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4
go: downloading golang.org/x/text v0.3.3
go: downloading golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
go: module github.com/golang/protobuf is deprecated: Use the "google.golang.org/protobuf" module instead.
go: upgraded github.com/golang/protobuf v1.4.2 => v1.5.2
go: upgraded github.com/stretchr/testify v1.6.1 => v1.7.0
go: upgraded google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1 => v0.0.0-20200526211855-cb27e3aa2013
go: downloading github.com/google/go-cmp v0.5.6
go: downloading golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
go: finding module for package google.golang.org/grpc/examples/helloworld/helloworld
go: downloading google.golang.org/grpc/examples v0.0.0-20220617181431-3e7b97febc7f
go: finding module for package google.golang.org/grpc/naming
go: found google.golang.org/grpc/examples/helloworld/helloworld in google.golang.org/grpc/examples v0.0.0-20220617181431-3e7b97febc7f
go: downloading google.golang.org/genproto v0.0.0-20200806141610-86f49bd18e98
go: finding module for package google.golang.org/grpc/naming
github.com/xmlking/micro-starter-kit/cmd/account imports
	github.com/micro/go-micro/v2 imports
	github.com/micro/go-micro/v2/config/cmd imports
	github.com/micro/go-micro/v2/registry/etcd imports
	github.com/coreos/etcd/clientv3 tested by
	github.com/coreos/etcd/clientv3.test imports
	github.com/coreos/etcd/integration imports
	github.com/coreos/etcd/proxy/grpcproxy imports
	google.golang.org/grpc/naming: module google.golang.org/grpc@latest found (v1.47.0, replaced by google.golang.org/grpc@v1.47.0), but does not contain package google.golang.org/grpc/naming

@sonarcloud
Copy link

sonarcloud bot commented Jun 6, 2021

Kudos, SonarCloud Quality Gate passed!

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch from eff87a8 to 04360d2 Compare October 18, 2021 14:49
@renovate renovate bot changed the title fix(deps): update module google.golang.org/grpc to v1.38.0 fix(deps): update module google.golang.org/grpc to v1.41.0 Oct 18, 2021
@sonarcloud
Copy link

sonarcloud bot commented Oct 18, 2021

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch from 04360d2 to 214811a Compare March 7, 2022 08:14
@renovate renovate bot changed the title fix(deps): update module google.golang.org/grpc to v1.41.0 fix(deps): update module google.golang.org/grpc to v1.44.0 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch from 214811a to 768bcf3 Compare March 10, 2022 06:22
@renovate renovate bot changed the title fix(deps): update module google.golang.org/grpc to v1.44.0 fix(deps): update module google.golang.org/grpc to v1.45.0 Mar 10, 2022
@sonarcloud
Copy link

sonarcloud bot commented Mar 10, 2022

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch from 768bcf3 to c714106 Compare April 25, 2022 01:46
@renovate renovate bot changed the title fix(deps): update module google.golang.org/grpc to v1.45.0 fix(deps): update module google.golang.org/grpc to v1.46.0 Apr 25, 2022
@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch from c714106 to edf6ec2 Compare May 15, 2022 19:46
@renovate renovate bot changed the title fix(deps): update module google.golang.org/grpc to v1.46.0 fix(deps): update module google.golang.org/grpc to v1.46.2 May 15, 2022
@sonarcloud
Copy link

sonarcloud bot commented May 15, 2022

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot force-pushed the renovate/google.golang.org-grpc-1.x branch from edf6ec2 to 32024d3 Compare June 18, 2022 13:54
@renovate renovate bot changed the title fix(deps): update module google.golang.org/grpc to v1.46.2 fix(deps): update module google.golang.org/grpc to v1.47.0 Jun 18, 2022
@sonarcloud
Copy link

sonarcloud bot commented Jun 18, 2022

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants