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 dependency @grpc/grpc-js to v1.10.8 #161

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 14, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@grpc/grpc-js (source) 1.1.8 -> 1.10.8 age adoption passing confidence

Release Notes

grpc/grpc-node (@​grpc/grpc-js)

v1.10.8: @​grpc/grpc-js 1.10.8

Compare Source

  • Fix a bug that caused channels with unix: targets to not reconnect after the channel goes idle (#​2750)

v1.10.7: @​grpc/grpc-js 1.10.7

Compare Source

  • Improve reporting of HTTP error codes (#​2723)
  • Update dependency on @grpc/proto-loader to the latest version (#​2732)

v1.10.6

Compare Source

v1.10.5: @​grpc/grpc-js 1.10.5

Compare Source

  • Resolve exception when Error.stackTraceLimit is undefined (#​2701 contributed by @​davidfiala)
  • Call configured checkServerIdentity when grpc.ssl_target_name_override is set (#​2704)
  • Add more information to DEADLINE_EXCEEDED error details strings (#​2692)

v1.10.4: @​grpc/grpc-js 1.10.4

Compare Source

  • Fix a bug that caused server interceptors to crash when using partially-populated ResponderBuilder and ListenerBuilder objects (#​2696)
  • Avoid sending RST_STREAM from the client when the server has already finished its side of the stream (#​2695)

v1.10.3: @​grpc/grpc-js 1.10.3

Compare Source

v1.10.2: @​grpc/grpc-js 1.10.2

Compare Source

  • Implement server connection idle timeouts and improve channelz performance (#​2677 contributed by @​AVVS)
  • Fix a bug that caused clients to automatically reconnect even when there were no active requests (#​2680)
  • Modify order of server call events to more closely match pre-1.10.x behavior (#​2683)

v1.10.1: @​grpc/grpc-js 1.10.1

Compare Source

  • Fix a bug causing channels using the round_robin LB policy to fail to reconnect after a connection drops (#​2667)

v1.10.0: @​grpc/grpc-js 1.10.0

Compare Source

Changelog

Experimental API Changes

  • Added:
    • Endpoint
    • endpointToString
    • endpointHasAddress
    • LeafLoadBalancer
    • HealthListener
    • SubchannelInterface#isHealthy
    • SubchannelInterface#addHealthStateWatcher
    • SubchannelInterface#removeHealthStateWatcher
    • SubchannelWrapper#setHealthy
    • selectLbConfigFromList
    • parseLoadBalancingConfig
    • OutlierDetectionRawConfig
    • EndpointMap
  • Moved out of the experimental namespace:
    • ServiceConfig
    • MethodConfig
    • LoadBalancingConfig (now a simple raw object type)
    • RetryPolicy
  • Removed:
    • getFirstUsableConfig
    • validateLoadBalancingConfig
    • OutlierDetectionLoadBalancingConfig
  • Modified:
    • LoadBalancer#updateAddressList: The first argument now has type Endpoint[] instead of SubchannelAddress[]
    • ResolverListener#onSuccessfulResolution: The first argument now has type Endpoint[] instead of SubchannelAddress[]
    • registerLoadBalancerType: The second argument, a LoadBalancerConstructor now takes a second argument options: ChannelOptions
    • ConfigSelector: Now accepts an additional argument channelId: number
    • QueuePicker: The constructor now accepts an additional optional argument childPicker: Picker, which the QueuePicker instance will delegate to if provided.

v1.9.14: @​grpc/grpc-js 1.9.14

Compare Source

  • Fix a bug that could rarely cause connection leaks (#​2644)
  • Fix a bug that could cause clients to go IDLE incorrectly some time after calling waitForReady (#​2643)

v1.9.13: @​grpc/grpc-js 1.9.13

Compare Source

  • Fix a bug that could cause the Node process to close early when establishing a connection while a request is pending (#​2626)

v1.9.12: @​grpc/grpc-js 1.9.12

Compare Source

  • Fix a bug that could cause connectivity state information to become stale in some circumstances (#​2623)

v1.9.11: @​grpc/grpc-js 1.9.11

Compare Source

  • Fix a busy loop when recovering from a failure to establish a connection to a unix domain socket address target (#​2618)
  • Fix a bug that caused clients to stop trying to connect to a fixed IP address target after a working connection drops (#​2619)

v1.9.10: @​grpc/grpc-js 1.9.10

Compare Source

  • Provide the correct port to the proxy when connecting to a target without an explicitly specified port (#​2608 contributed by @​segevfiner)
  • Properly handle goaway events with no additional data attached (#​2611)

v1.9.9

Compare Source

v1.9.8

Compare Source

v1.9.7: @​grpc/grpc-js 1.9.7

Compare Source

  • Fix a bug that could cause a client to not update name resolution after multiple failed connection attempts (#​2602)

v1.9.6: @​grpc/grpc-js 1.9.6

Compare Source

  • Include more information in most "No connection established" errors (#​2598)
  • Remove the index tracer, and add more information to other trace logs (#​2599)

v1.9.5: @​grpc/grpc-js 1.9.5

Compare Source

  • Fix a type inconsistency in server-call.ts (#​2589 contributed by @​rsnullptr)
  • Close ports if the server is shut down while the bind operation is ongoing (#​2590)

v1.9.4: @​grpc/grpc-js 1.9.4

Compare Source

  • Fix a bug that could cause a client to sometimes incorrectly hold the process open when no longer in use (#​2586)

v1.9.3: @​grpc/grpc-js 1.9.3

Compare Source

  • Make a few improvements to DNS resolving timing (#​2571)

Experimental changes:

  • Added grpc.experimental.BackoffTimeout#getEndTime

v1.9.2: @​grpc/grpc-js 1.9.2

Compare Source

  • Handle error when sending keepalive pings (#​2563)
  • Fix a bug that could cause invalid connection states when DNS updates contained the same address the client was already connected to (#​2559 contributed by @​gusumuzhe, backported in #​2564)

v1.9.1: @​grpc/grpc-js 1.9.1

Compare Source

  • Improve formatting of channelz logs (#​2535)
  • Avoid sending initial request after the deadline passes in some cases (#​2536)
  • Fix possible null reference in pick_first load balancing policy (#​2539)
  • Allow empty method config names in service configs (#​2550)
  • Defer actions in write callbacks on the client to potentially work around a Node bug (#​2552)

v1.9.0: @​grpc/grpc-js 1.9.0

Compare Source

Experimental changes:

  • Added grpc.experimental.createResolver

v1.8.21

Compare Source

  • Fix propagation of UNIMPLEMENTED error messages (#​2528)

v1.8.20: @​grpc/grpc-js 1.8.20

Compare Source

  • Fix a crash when the channel option grpc.keepalive_permit_without_calls is set (#​2519)

v1.8.19: @​grpc/grpc-js 1.8.19

Compare Source

  • Update keepalive behavior to more correctly handle short calls and long periods of inactivity (#​2513)

v1.8.18: @​grpc/grpc-js 1.8.18

Compare Source

  • Fix reporting of call stacks in unary request errors (#​2503)
  • Fix reporting of proxy info in channelz socket responses (#​2503)

v1.8.17: @​grpc/grpc-js 1.8.17

Compare Source

  • Disallow pick_first LB policy as the direct child of an outlier_detection LB policy (#​2476)

v1.8.16: @​grpc/grpc-js 1.8.16

Compare Source

  • Fix missing transport trace logs (#​2470)

v1.8.15: @​grpc/grpc-js 1.8.15

Compare Source

  • Fix a memory leak that could result from a specific pattern of recursive function calls (#​2456)
  • Ensure status and error events are consistently emitted asynchronously (#​2456)

v1.8.14: @​grpc/grpc-js 1.8.14

Compare Source

  • Fix sequencing of some events related to connectivity state changes (#​2421)

v1.8.13: @​grpc/grpc-js 1.8.13

Compare Source

  • Fix memory leak in channelz socket tracking (#​2394)

v1.8.12

Compare Source

  • Fix an occasional type error when receiving DNS updates (#​2380)
  • Fix ordering of events when handing requests on the server (#​2376 contributed by @​phoenix741)

v1.8.11: @​grpc/grpc-js 1.8.11

Compare Source

  • Avoid accumulating placeholder objects when sending many messages on a long-running stream (#​2372)

v1.8.10: @​grpc/grpc-js 1.8.10

Compare Source

  • Fix bugs in "pick first" load balancing policy that caused incorrect reconnection behavior (#​2369)

v1.8.9: @​grpc/grpc-js 1.8.9

Compare Source

  • Fix a bug where clients would continue to send pings at the original configured rate after receiving a backoff request from the server (#​2363)

v1.8.8: @​grpc/grpc-js 1.8.8

Compare Source

  • Remove progress field in returned status object (#​2350)
  • Export InterceptingListener and NextCall types (#​2351)
  • Fix a bug that could cause a crash when sending messages that exceed the outgoing message buffer size while a retry is in progress (#​2349)

v1.8.7: @​grpc/grpc-js 1.8.7

Compare Source

  • Make handling of HTTP2 session references work independent of keepalive settings (#​2337)

v1.8.6: @​grpc/grpc-js 1.8.6

Compare Source

  • Hold a reference to transport from call to avoid premature garbage collection (#​2336)

v1.8.5: @​grpc/grpc-js 1.8.5

Compare Source

  • Cancel deadline timer when the call ends (#​2335)

v1.8.4

Compare Source

  • Fix a bug that would sometimes allow the Node process to exit even though a gRPC request is active (#​2322)

v1.8.3: @​grpc/grpc-js 1.8.3

Compare Source

  • Fix bug that caused streams to fail early when receiving a GOAWAY (#​2319)

v1.8.2

Compare Source

  • Continue keepalive pings after receiving a GOAWAY on the client (#​2308)
  • Fix handling of keepalive timers when the timeout is longer than the interval (#​2304 contributed by @​nicknotfun, included in #​2308)
  • Ensure the last received message is fully handled before outputting status (#​2316)

v1.8.1

Compare Source

  • Implement support for the grpc.service_config_disable_resolution channel option (#​2277 contributed by @​kleinsch)
  • Include standard headers in trailers-only responses (#​2305)
  • Fix a memory leak in the retry implementation (#​2306)

v1.8.0: @​grpc/grpc-js 1.8.0

Compare Source

v1.7.3: @​grpc/grpc-js 1.7.3

Compare Source

v1.7.2: @​grpc/grpc-js 1.7.2

Compare Source

  • Make the default value of the grpc-node.max_session_memory option Number.MAX_SAFE_INTEGER on the server (#​2245)

v1.7.1: Node gRPC v1.7.1

Compare Source

Changes

  • Publish prebuilt binaries for Node 9
  • Fix file permissions issue with Linux prebuilt binaries (reported in #​76).

v1.7.0: @​grpc/grpc-js 1.7.0

Compare Source

  • Enable outlier detection support by default (#​2221)
  • Expose path and callEnd event in ServerSurfaceCall (#​2132 contributed by @​ajmath)
  • Make graceful switch happen more quickly in some cases when service config is updated (#​2199)

v1.6.12: @​grpc/grpc-js 1.6.12

Compare Source

v1.6.11

Compare Source

  • Fix handling of malformed status messages (#​2210)

v1.6.10: @​grpc/grpc-js 1.6.10

Compare Source

  • Fix a memory leak of Node http2 stream objects when cancelling streaming requests (#​2193)

v1.6.9: @​grpc/grpc-js 1.6.9

  • Fix bugs in the Outlier Detection implementation (#​2173, #​2181)
  • Handle errors when sending keepalive pings (#​2188)
  • Fix Typescript reference tag generation (#​2126)

v1.6.7: @​grpc/grpc-js 1.6.7

Compare Source

  • Fix a bug that could cause double DNS requests in the DNS resolver in some rare cases (#​2100)
  • Report request failures when a method expecting a unary response receives no messages (#​2102)
  • Fix spurious subchannel shutdowns in channels with the grpc.use_local_subchannel_pool option set (#​2103)

v1.6.6: @​grpc/grpc-js 1.6.6

Compare Source

  • Fail calls immediately when their connection's keepalive ping times out (#​2097)
  • Fix a bug that would cause the DNS resolver to keep making DNS requests forever even if it was not needed (#​2098)

v1.6.5: @​grpc/grpc-js 1.6.5

Compare Source

  • Consistently trigger name resolution when idle (#​2095)

v1.6.4: @​grpc/grpc-js 1.6.4

Compare Source

  • Ensure that request failures due to name resolution failure are reported consistently (#​2092)

v1.6.3: @​grpc/grpc-js 1.6.3

Compare Source

  • Disable per-session memory limit by default. (#​2084)
  • Track existing ping timeouts even when there are no active requests on a connection (#​2087)
  • Add more details to trace logs of keepalive pings (#​2085)
  • Fix entity IDs in trace logs when channelz is disabled (#​2082)

v1.6.2: @​grpc/grpc-js 1.6.2

Compare Source

  • Adjusted the behavior of exponential backoff timers (#​2077)

v1.6.1: @​grpc/grpc-js 1.6.1

Compare Source

  • Enable support for the grpc.dns_min_time_between_resolutions_ms channel option, which controls the minimum time between successful DNS requests, with a default of 30,000 (30 seconds) (#​2076)

v1.6.0: @​grpc/grpc-js 1.6.0

Compare Source

  • Add credentials.createFromSecureContext, as described in gRFC L93 (#​1988)
  • Set provided serviceName as property of generated Client subclasses (#​1993 contributed by @​DavyJohnes)
  • Return never from functions that always throw (#​2056 contributed by @​dacioromero)
  • Add experimental Outlier Detection load balancing policy, as described in gRFC A50 (disabled by default, enabled by setting the environment variable GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION=true) (#​2058)
  • Expose MetadataOptions interface (#​2071 contributed by @​kskalski)
  • Surface stream writing errors as standard gRPC errors (#​2073)

v1.5.10: @​grpc/grpc-js 1.5.10

Compare Source

  • Fix inconsistent checks for grpc.enable_channelz in the server (#​2069)

v1.5.9: @​grpc/grpc-js 1.5.9

Compare Source

  • Add transparent retries for "The session has been destroyed" errors (#​2063)
  • Add channel_stacktrace tracer to log stacktraces of channel construction (#​2061)
  • Move a log line to eliminate misleading double call "ended with status" trace lines (#​2062)

v1.5.8: @​grpc/grpc-js 1.5.8

Compare Source

  • Add subchannel and call ID numbers to relevant trace logs for better cross-referencing (#​2059)

v1.5.7: @​grpc/grpc-js 1.5.7

Compare Source

  • Improve handling of some disconnection events (#​2052)

v1.5.6: @​grpc/grpc-js 1.5.6

Compare Source

  • Add debug logging for http2 session state when starting calls (#​2051)

v1.5.5: @​grpc/grpc-js 1.5.5

Compare Source

  • Add HTTP/2 settings frame tracing (#​2040)
  • Add HTTP/2 flow control tracing (#​2041)

v1.5.4: @​grpc/grpc-js 1.5.4

Compare Source

  • Fix exitIdle propagation and DNS IP result backoff (#​2037)

v1.5.3: @​grpc/grpc-js 1.5.3

Compare Source

  • Fix a null reference exception when closing a channel that was constructed using the grpc.use_local_subchannel_pool option (#​2029)

v1.5.2: @​grpc/grpc-js 1.5.2

Compare Source

  • Prevent TLSWrap errors from being surfaced to server applications (#​2027)

v1.5.1: @​grpc/grpc-js 1.5.1

Compare Source

v1.5.0: @​grpc/grpc-js 1.5.0

Compare Source

  • Add support for request compression on clients and request decompression on servers (#​1952 contributed by @​b0b3rt)
  • Improve messaging for some RESOURCE_EXHAUSTED errors (#​1946)
  • Export TypeScript types for ServiceClientConstructor and ProtobufTypeDefinition (#​1951 contributed by @​howyi)
  • Provide the full certificate object in the checkServerIdentity callback (#​1968)
  • Remove @types/semver from the production dependencies list (#​1989)
  • Add information about supported channel options to the README (#​1996 contributed by @​josephharrington)

v1.4.6: @​grpc/grpc-js 1.4.6

Compare Source

v1.4.5: @​grpc/grpc-js 1.4.5

Compare Source

  • Use configured backoff options when retrying name resolution (#​1987 contributed by @​cloverheap)
  • Preserve order of metadata, messages, and call end with async interceptors (#​1986)

v1.4.4

Compare Source

v1.4.3: @​grpc/grpc-js 1.4.3

Compare Source

  • Fix a bug that caused requests to not progress properly when the option grpc.enable_channelz was set to 0 (#​1961)
  • Fix a bug causing channelz to generate the wrong binary representation for IPv6 addresses in some cases (#​1960)

v1.4.2: @​grpc/grpc-js 1.4.2

Compare Source

  • Limit the number of channelz trace events retained per channel/subchannel/server (#​1943)
  • Enable support for the grpc.enable_channelz option, allowing users to disable channelz stats tracking and tracing for a channel (and corresponding subchannels) or server (#​1944)
  • Handle undefined socket.localAddress in channelz stats gathering code (#​1954)

v1.4.1: @​grpc/grpc-js 1.4.1

Compare Source

  • Publish channelz files missing from the previous release (#​1937)

v1.4.0: @​grpc/grpc-js 1.4.0

  • Add Channelz support (specification here) (#​1915)
    This adds the following public APIs:
    • getChannelzServiceDefinition(): ServiceDefinition
    • getChannelzHandlers(): ServiceHandler
      These two can be used together to serve the channelz service as follows:
      server.addService(getChannelzServiceDefinition(), getChannelzHandlers());
    • Channel#getChannelzRef(): ChannelRef
    • Server#getChannelzRef(): ServerRef
  • Add the admin interface (specification here) (#​1915)
    Currently the only admin service is Channelz, but more can be added in the future. This adds the following public api:
    • addAdminServicesToServer(server: Server): void
  • Add support for timeouts in service configs (#​1785)
  • Remove type restrictions on Channel options (#​1916)
  • Report ECONNRESET errors with the UNAVAILABLE status code (#​1878)
  • Tighten type checking for credentials argument to Server#bindAsync (#​1852)
  • Pass log messages to different log functions based on severity in custom loggers, and note the severity in the default logger output (#​1851)
  • Add logging for TLS errors when connecting through a proxy (#​1842)
  • Refactor code to eliminate runtime dependency cycles (#​1829)

Changes to experimental APIs

  • Added exports of the following:
    • Duration
    • registerAdminService
    • createChildChannelControlHelper
  • Picker#extraFilterFactory has been replaced with Picker#extraFilterFactories with type FilterFactory<Filter>[]
  • CallConfig has a new property dynamicFilterFactories with type FilterFactory<Filter>[]
  • ChannelControlHelper has the new properties addChannelzChild(child: ChannelRef | SubchannelRef) and removeChannelzChild(child: ChannelRef | SubchannelRef)

v1.3.7: @​grpc/grpc-js 1.3.7

Compare Source

  • Fix server handling of streams that are already closed (#​1873)
  • Handle errors thrown on client when writing to a stream that is already closed (#​1875)

v1.3.6: @​grpc/grpc-js 1.3.6

Compare Source

  • Add more trace logging around establishing connections (#​1857)

v1.3.5: @​grpc/grpc-js 1.3.5

Compare Source

  • Add logging for TLS over proxy connection errors (#​1845)

v1.3.4: @​grpc/grpc-js 1.3.4

Compare Source

  • Ensure that the grpc.keepalive_permit_without_calls option does not cause unused clients to keep the process from exiting (#​1828)

v1.3.3: @​grpc/grpc-js 1.3.3

Compare Source

v1.3.2: @​grpc/grpc-js 1.3.2

Compare Source

  • Fix function type check so that callbacks can be async functions (#​1787)

v1.3.1: @​grpc/grpc-js 1.3.1

Compare Source

  • Change a couple of isFunction checks to work in more contexts (#​1761 contributed by @​zereraz)
  • Eliminate some log spam in subchannel trace logs (#​1770)
  • Fix the check for outputting the "read ECONNRESET" error as UNAVAILABLE (#​1780)
  • Make the GRPC_VERBOSITY environment variable accept lower-case values (#​1781)

v1.3.0: @​grpc/grpc-js 1.3.0

  • Add support for ipv4 and ipv6 address schemes (#​1752)
  • Remove google-auth-library dependency (#​1703)
  • Add grpc-node.max_session_memory channel argument to configure maximum memory used per HTTP/2 session (#​1666 contributed by dwrip)
  • Remove runtime Node version compatibility check (#​1739)
  • Experimental API changes: Add ConfigSelector type and add configSelector argument to ResolverListener#onSuccessfulResolution (#​1681)

v1.2.11: @​grpc/grpc-js 1.2.11

Compare Source

  • Fix a crash when using the library on Electron (#​1709)
  • Make waitForReady finish immediately if the client has been closed (#​1714)

v1.2.10: @​grpc/grpc-js 1.2.10

Compare Source

  • Fixed an internal bug that caused trailer filters to be called twice for most calls (#​1707)

v1.2.9: @​grpc/grpc-js 1.2.9

Compare Source

  • Speculative fix for ECONNRESET errors (#​1705)

v1.2.8: @​grpc/grpc-js 1.2.8

Compare Source

  • Don't propagate non-numeric errors from auth plugins (#​1690)

v1.2.7: @​grpc/grpc-js 1.2.7

Compare Source

  • Fix an issue holding the Node process open after the channel was closed in some cases (#​1688)
  • Improve error reporting when a stream fails to start (#​1689)

v1.2.6: @​grpc/grpc-js 1.2.6

Compare Source

  • Loosen the dependency on @types/node to avoid conflicts with other packages' dependencies on the same types package (#​1683)

v1.2.5: @​grpc/grpc-js 1.2.5

Compare Source

  • Fix a bug that caused some errors thrown in client response handling code to be incorrectly reported as response message parsing errors. (#​1672)

v1.2.4: @​grpc/grpc-js 1.2.4

Compare Source

  • In the round robin load balancer, update name resolution when receiving a GOAWAY or similar disconnection (#​1665)

v1.2.3: @​grpc/grpc-js 1.2.3

@​grpc/grpc-js 1.2.1

  • Fix handling of propagated and explicitly set deadlines when both are set (#​1633)

@​grpc/grpc-js 1.2.2

  • Add destroy method to the experimental.Resolver interface (#​1641)

@​grpc/grpc-js 1.2.3

  • End calls faster if the deadline has already passed (#​1648)
  • Improve reporting of some internal client errors (#​1658)
  • Prevent prototype pollution in loadPackageDefinition (#​1654 contributed by @​d3v53c)

v1.2.0: @​grpc/grpc-js 1.2.0

New Features

  • Add an experimental namespace with APIs that are primarily intended to be used by a plugin library that will be published soon. These APIs are only guaranteed to be stable within a minor version. (#​1607)
  • Add support for grpc.keepalive_permit_without_calls channel argument (#​1612)
  • Allow the Server method addService to be called on a running server, and add the methods unregister and removeService to the Server class (#​1614 contributed by @​hugebdu)
  • Add support for automatically propagating deadlines and cancellation events from server calls to child outgoing requests (#​1616)
  • Allow clients and servers to send metadata of unlimited size (#​1571)

Bug Fixes

  • Fix a bug that would sometimes allow the Node process to exit without processing outstanding calls when taking a long time to establish a connection to the server (#​1580)
  • Export handleClientStreamingCall type for compatibility with grpc (#​1587 contributed by @​badsyntax)
  • Fix a bug that would cause the library to incorrectly attempt to contact a proxy at port 443 when the proxy environment variable specified port 80 or omitted a port (#​1609)
  • Rearrange the connectivityState enum to match the native library (#​1621)

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 this update again.


  • If you want to rebase/retry this PR, check this box

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

@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 315ddf5 to 7b332ad Compare June 21, 2021 22:28
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.3.2 fix(deps): update dependency @grpc/grpc-js to v1.3.3 Jun 21, 2021
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 7b332ad to 196cbbc Compare June 25, 2021 18:48
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.3.3 fix(deps): update dependency @grpc/grpc-js to v1.3.4 Jun 25, 2021
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.3.4 fix(deps): update dependency @grpc/grpc-js to v1.3.5 Jul 14, 2021
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch 2 times, most recently from fcc3591 to 0b2d704 Compare July 19, 2021 20:12
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.3.5 fix(deps): update dependency @grpc/grpc-js to v1.3.6 Jul 19, 2021
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 0b2d704 to ae027cc Compare October 18, 2021 21:54
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.3.6 fix(deps): update dependency @grpc/grpc-js to v1.4.1 Oct 18, 2021
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from ae027cc to 3354e69 Compare March 7, 2022 15:45
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.4.1 fix(deps): update dependency @grpc/grpc-js to v1.5.7 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 3354e69 to 5fb3fe8 Compare March 26, 2022 13:20
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.5.7 fix(deps): update dependency @grpc/grpc-js to v1.5.10 Mar 26, 2022
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 5fb3fe8 to e2f85df Compare April 24, 2022 22:58
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.5.10 fix(deps): update dependency @grpc/grpc-js to v1.6.7 Apr 24, 2022
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.6.7 fix(deps): update dependency @grpc/grpc-js to v1.7.1 Sep 25, 2022
@CLAassistant
Copy link

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 4f03b97 to 72b2e50 Compare November 20, 2022 14:53
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.7.1 fix(deps): update dependency @grpc/grpc-js to v1.7.3 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 72b2e50 to e36144e Compare March 18, 2023 16:05
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.7.3 fix(deps): update dependency @grpc/grpc-js to v1.8.12 Mar 18, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from e36144e to 366dd81 Compare March 23, 2023 23:44
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.8.12 fix(deps): update dependency @grpc/grpc-js to v1.8.13 Mar 23, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 366dd81 to f6b6aa6 Compare April 17, 2023 09:59
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.8.13 fix(deps): update dependency @grpc/grpc-js to v1.8.14 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from f6b6aa6 to 3176eff Compare June 5, 2023 18:49
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.8.14 fix(deps): update dependency @grpc/grpc-js to v1.8.15 Jun 5, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 3176eff to 927512d Compare June 21, 2023 01:43
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.9.8 fix(deps): update dependency @grpc/grpc-js to v1.9.9 Nov 1, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from be65937 to be4b8ee Compare November 14, 2023 22:16
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.9.9 fix(deps): update dependency @grpc/grpc-js to v1.9.10 Nov 14, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from be4b8ee to f999c42 Compare November 16, 2023 19:59
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.9.10 fix(deps): update dependency @grpc/grpc-js to v1.9.11 Nov 16, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from f999c42 to 959b6e0 Compare November 27, 2023 23:18
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.9.11 fix(deps): update dependency @grpc/grpc-js to v1.9.12 Nov 27, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 959b6e0 to 9301e00 Compare December 12, 2023 17:13
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.9.12 fix(deps): update dependency @grpc/grpc-js to v1.9.13 Dec 12, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 9301e00 to 7b2895f Compare January 16, 2024 23:28
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.9.13 fix(deps): update dependency @grpc/grpc-js to v1.9.14 Jan 16, 2024
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 7b2895f to 5d0dfe4 Compare February 7, 2024 01:18
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.9.14 fix(deps): update dependency @grpc/grpc-js to v1.10.0 Feb 7, 2024
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 5d0dfe4 to b494a79 Compare February 15, 2024 18:42
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.10.0 fix(deps): update dependency @grpc/grpc-js to v1.10.1 Feb 15, 2024
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from b494a79 to 27f4409 Compare March 11, 2024 18:46
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.10.1 fix(deps): update dependency @grpc/grpc-js to v1.10.2 Mar 11, 2024
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 27f4409 to 83e48f6 Compare March 15, 2024 19:45
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.10.2 fix(deps): update dependency @grpc/grpc-js to v1.10.3 Mar 15, 2024
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 83e48f6 to f534448 Compare March 26, 2024 19:09
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.10.3 fix(deps): update dependency @grpc/grpc-js to v1.10.4 Mar 26, 2024
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from f534448 to 44e4e51 Compare April 1, 2024 22:54
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.10.4 fix(deps): update dependency @grpc/grpc-js to v1.10.5 Apr 1, 2024
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 44e4e51 to 33d14b6 Compare April 3, 2024 17:33
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.10.5 fix(deps): update dependency @grpc/grpc-js to v1.10.6 Apr 3, 2024
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 33d14b6 to 3f6eace Compare May 1, 2024 18:40
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.10.6 fix(deps): update dependency @grpc/grpc-js to v1.10.7 May 1, 2024
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 3f6eace to 0d4bf5f Compare May 15, 2024 17:48
@renovate renovate bot changed the title fix(deps): update dependency @grpc/grpc-js to v1.10.7 fix(deps): update dependency @grpc/grpc-js to v1.10.8 May 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant