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

chore: update dependency @grpc/grpc-js to v1.10.8 #1601

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 30, 2023

Mend Renovate

This PR contains the following updates:

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

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


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)

Configuration

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

🚦 Automerge: Enabled.

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, check this box

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

@renovate renovate bot requested a review from mrmodise as a code owner May 30, 2023 06:25
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.8.14 chore: 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 50d0972 to 6f1bb20 Compare June 5, 2023 20:34
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 6f1bb20 to 905c5bd Compare June 21, 2023 02:32
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.8.15 chore: update dependency @grpc/grpc-js to v1.8.16 Jun 21, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 905c5bd to d8fb2b2 Compare June 27, 2023 18:41
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.8.16 chore: update dependency @grpc/grpc-js to v1.8.17 Jun 27, 2023
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.8.17 chore: update dependency @grpc/grpc-js to v1.8.17 - autoclosed Jul 6, 2023
@renovate renovate bot closed this Jul 6, 2023
@renovate renovate bot deleted the renovate/grpc-grpc-js-1.x branch July 6, 2023 01:29
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.8.17 - autoclosed chore: update dependency @grpc/grpc-js to v1.8.17 Jul 6, 2023
@renovate renovate bot reopened this Jul 6, 2023
@renovate renovate bot restored the renovate/grpc-grpc-js-1.x branch July 6, 2023 18:51
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from d8fb2b2 to b0543f5 Compare July 6, 2023 18:52
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from b0543f5 to 03a7cc0 Compare July 13, 2023 19:44
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.8.17 chore: update dependency @grpc/grpc-js to v1.8.18 Jul 13, 2023
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.8.18 chore: update dependency @grpc/grpc-js to v1.8.19 Jul 24, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch 2 times, most recently from 7332002 to 10cc731 Compare July 25, 2023 18:07
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.8.19 chore: update dependency @grpc/grpc-js to v1.8.20 Jul 25, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 10cc731 to e70eab8 Compare July 28, 2023 22:08
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.8.20 chore: update dependency @grpc/grpc-js to v1.8.21 Jul 28, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from e70eab8 to 8d9d4c1 Compare August 2, 2023 01:37
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.8.21 chore: update dependency @grpc/grpc-js to v1.9.0 Aug 2, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 8d9d4c1 to 7316525 Compare August 22, 2023 20:07
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.9.0 chore: update dependency @grpc/grpc-js to v1.9.1 Aug 22, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 7316525 to 8ef33f8 Compare August 31, 2023 20:08
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.9.1 chore: update dependency @grpc/grpc-js to v1.9.2 Aug 31, 2023
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.9.2 chore: update dependency @grpc/grpc-js to v1.9.3 Sep 13, 2023
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from 3b17d8b to a19b771 Compare November 14, 2023 23:08
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.9.9 chore: 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 a19b771 to c766cbc Compare November 16, 2023 20:23
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.9.10 chore: 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 c766cbc to fde90d9 Compare November 27, 2023 23:26
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.9.11 chore: 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 fde90d9 to 5554a65 Compare December 12, 2023 17:12
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.9.12 chore: 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 5554a65 to c521f83 Compare January 16, 2024 23:30
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.9.13 chore: 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 c521f83 to 52583d1 Compare February 7, 2024 01:18
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.9.14 chore: 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 52583d1 to 5ba1401 Compare February 15, 2024 18:42
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.10.0 chore: 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 5ba1401 to b2f7c09 Compare March 11, 2024 17:06
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.10.1 chore: 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 b2f7c09 to f971c83 Compare March 15, 2024 17:18
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.10.2 chore: 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 f971c83 to 221aa18 Compare March 26, 2024 18:29
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.10.3 chore: 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 221aa18 to 1572ada Compare April 1, 2024 22:55
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.10.4 chore: 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 1572ada to 831cc25 Compare April 3, 2024 17:28
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.10.5 chore: 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 831cc25 to ee91093 Compare May 1, 2024 20:45
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.10.6 chore: update dependency @grpc/grpc-js to v1.10.7 May 1, 2024
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/grpc-grpc-js-1.x branch from ee91093 to e78ff7f Compare May 15, 2024 19:59
@renovate renovate bot changed the title chore: update dependency @grpc/grpc-js to v1.10.7 chore: update dependency @grpc/grpc-js to v1.10.8 May 15, 2024
Copy link
Contributor Author

renovate bot commented May 15, 2024

⚠️ 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: packages/shopping/package-lock.json
npm ERR! code ETARGET
npm ERR! notarget No matching version found for loopback4-example-recommender@1.1.1.
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-05-15T19_59_21_521Z-debug-0.log

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

0 participants