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

Update config-no-service #4

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Dec 16, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@grpc/grpc-js (source) 1.9.9 -> 1.12.2 age adoption passing confidence dependencies minor
docker/build-push-action v5.0.0 -> v5.4.0 age adoption passing confidence action minor
dotenv 16.3.1 -> 16.4.5 age adoption passing confidence dependencies minor
equinix-labs/metal-action-runner v0.1.1 -> v0.4.0 age adoption passing confidence action minor
grafana/grafana 10.2.0 -> 10.4.13 age adoption passing confidence minor
jaegertracing/all-in-one 1.51 -> 1.60 age adoption passing confidence minor
kubeshop/tracetest v0.14.6 -> v0.16.2 age adoption passing confidence minor
markdown-link-check 3.11.2 -> 3.13.6 age adoption passing confidence devDependencies minor
markdownlint-cli 0.37.0 -> 0.43.0 age adoption passing confidence devDependencies minor
otel/opentelemetry-collector-contrib 0.88.0 -> 0.114.0 age adoption passing confidence minor
postgres 16.0 -> 16.6 age adoption passing confidence minor
quay.io/prometheus/prometheus v2.47.2 -> v2.55.1 age adoption passing confidence minor
redis 7.2-alpine -> 7.4-alpine age adoption passing confidence minor

Release Notes

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

v1.12.2: @​grpc/grpc-js 1.12.2

Compare Source

  • Use util.promisify instead of fs/promises for Node 12 compatibility (#​2838)

v1.12.1: @​grpc/grpc-js 1.12.1

Compare Source

  • Port bugfixes from 1.11.x into 1.12.x (#​2836)

v1.12.0: @​grpc/grpc-js 1.12.0

Compare Source

Changelog
  • Provide the method_name for the CallCredentials callback generateMetadata (#​2814 contributed by @​becoded)
  • Add an optional rejectUnauthorized field to the VerifyOptions interface, which can be passed as an argument to credentials.createSsl and createFromSecureContext (#​2812 contributed by @​vinothsa4891)
Experimental API changes

Added:

  • CaCertificateUpdate
  • CaCertificateUpdateListener
  • IdentityCertificateUpdate
  • IdentityCertificateUpdateListener
  • CertificateProvider
  • FileWatcherCertificateProvider
  • FileWatcherCertificateProviderConfig
  • createCertificateProviderChannelCredentials
  • createCertificateProviderServerCredentials

Modified:

  • LoadBalancer: The constructor now takes an additional argument of type ChannelCredentials.
  • ChannelControlHelper#createSubchannel: Now takes an additional argument of type ChannelCredentials | null. This should be passed along if overriding this function.
  • LeafLoadBalancer: The constructor now takes an additional argument of type ChannelCredentials.

v1.11.3: @​grpc/grpc-js 1.11.3

Compare Source

  • Ensure the client queries the name resolver again after connections drop while using the round_robin load balancing policy (#​2825)

v1.11.2: @​grpc/grpc-js 1.11.2

Compare Source

  • Fix client crash on receiving a custom error code (#​2801 contributed by @​hastom)
  • Report connection errors more consistently (#​2808)
  • Avoid computing the channel constructor trace log when that tracer is not enabled (#​2817 contributed by @​ygalbel)

v1.11.1: @​grpc/grpc-js 1.11.1

Compare Source

  • Revert a change that used APIs that were not available in early minor versions of Node 14 (#​2799 contributed by @​xqin)

v1.11.0: @​grpc/grpc-js 1.11.0

Compare Source

Changelog
Experimental API changes

Added:

  • splitHostPort
  • HostPort
  • createServerCredentialsWithInterceptors

v1.10.11: @​grpc/grpc-js 1.10.11

Compare Source

  • Fix a bug that caused clients to reconnect unnecessarily while no requests are pending. (#​2784)
  • Fix a bug that caused clients to fail to re-establish existing connections while waiting for DNS results (#​2784)
  • Fix a bug that caused servers to sometimes not close idle connections depending on timing (#​2790)
  • Fix a bug that caused calls to be pending indefinitely while unable to start after a channel is closed (#​2791)

v1.10.10: @​grpc/grpc-js 1.10.10

Compare Source

  • Various improvements to handling of keepalive timers (#​2760 by @​davidfiala)
  • Fix a bug causing unary response client requests to hang when unexpectedly receiving multiple messages (#​2772)
  • Fix a bug causing some requests to fail when making requests through a local proxy (#​2746 contributed by @​mjameswh, backported in #​2777)
  • Fix handling of URL-encoded user credentials in proxy configuration (#​2761 contributed by @​brendan-myers, backported in #​2777)
  • Fix missing client-side handling of the grpc.max_send_message_length channel option (#​2779)

v1.10.9: @​grpc/grpc-js 1.10.9

Compare Source

  • Avoid buffering significantly more than grpc.max_receive_message_size per received message.

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.15: @​grpc/grpc-js 1.9.15

Compare Source

  • Avoid buffering significantly more than grpc.max_receive_message_size per received message.

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)
docker/build-push-action (docker/build-push-action)

v5.4.0

Compare Source

v5.3.0

Compare Source

Full Changelog: docker/build-push-action@v5.2.0...v5.3.0

v5.2.0

Compare Source

Full Changelog: docker/build-push-action@v5.1.0...v5.2.0

v5.1.0

Compare Source

Full Changelog: docker/build-push-action@v5.0.0...v5.1.0

motdotla/dotenv (dotenv)

v16.4.5

Compare Source

Changed
  • 🐞 fix recent regression when using path option. return to historical behavior: do not attempt to auto find .env if path set. (regression was introduced in 16.4.3) #​814

v16.4.4

Compare Source

Changed
  • 🐞 Replaced chaining operator ?. with old school && (fixing node 12 failures) #​812

v16.4.3

Compare Source

Changed
  • Fixed processing of multiple files in options.path #​805

v16.4.2

Compare Source

Changed

v16.4.1

Compare Source

  • Patch support for array as path option #​797

v16.4.0

Compare Source

  • Add error.code to error messages around .env.vault decryption handling #​795
  • Add ability to find .env.vault file when filename(s) passed as an array #​784

v16.3.2

Compare Source

Added
  • Add debug message when no encoding set #​735
Changed
  • Fix output typing for populate #​792
  • Use subarray instead of slice #​793
equinix-labs/metal-action-runner (equinix-labs/metal-action-runner)

v0.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: equinix-labs/metal-runner-action@v0.3.0...v0.4.0

v0.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: equinix-labs/metal-runner-action@v0.2.0...v0.3.0

v0.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: equinix-labs/metal-runner-action@v0.1.1...v0.2.0

kubeshop/tracetest (kubeshop/tracetest)

v0.16.2

Compare Source

This release is updating some documents, updating some dependencies to the latest version and preparing the codebase for the v1 release.

Major Changes

  • docs: Create a page for each trigger type #​3750
  • docs: Update TraceID Page #​3770

Changelog


Configuration

📅 Schedule: Branch creation - "every weekend" (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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from 012314a to e148cbf Compare December 20, 2023 05:54
@renovate renovate bot force-pushed the renovate/config-no-service branch 3 times, most recently from c8e4706 to ad1befb Compare January 11, 2024 02:32
@renovate renovate bot force-pushed the renovate/config-no-service branch 3 times, most recently from 018e948 to 0424668 Compare January 17, 2024 20:57
@renovate renovate bot force-pushed the renovate/config-no-service branch 3 times, most recently from ffb42c5 to 0799496 Compare January 25, 2024 05:34
@renovate renovate bot force-pushed the renovate/config-no-service branch from 0799496 to c6b1974 Compare January 30, 2024 05:55
@renovate renovate bot force-pushed the renovate/config-no-service branch 6 times, most recently from 8c1170c to c0edb98 Compare February 14, 2024 03:02
@renovate renovate bot force-pushed the renovate/config-no-service branch 4 times, most recently from 093c3c0 to 3c60c95 Compare February 21, 2024 02:05
@renovate renovate bot force-pushed the renovate/config-no-service branch 4 times, most recently from cc3bdb6 to dbbf88f Compare February 28, 2024 05:19
@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from 6d5e91f to eaaa498 Compare March 9, 2024 02:49
@renovate renovate bot force-pushed the renovate/config-no-service branch from adc0f42 to f46d841 Compare September 12, 2024 17:55
@renovate renovate bot force-pushed the renovate/config-no-service branch 5 times, most recently from d8b0c62 to 8271991 Compare September 27, 2024 11:40
@renovate renovate bot force-pushed the renovate/config-no-service branch 7 times, most recently from 714ae41 to 749b1de Compare October 8, 2024 01:16
@renovate renovate bot force-pushed the renovate/config-no-service branch 3 times, most recently from 97c02fb to 60f07eb Compare October 13, 2024 14:35
@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from bfbff7f to b8d5a2c Compare October 24, 2024 20:40
@renovate renovate bot force-pushed the renovate/config-no-service branch 3 times, most recently from 6b2daa2 to d62d063 Compare November 9, 2024 02:07
@renovate renovate bot force-pushed the renovate/config-no-service branch from d62d063 to 5997eec Compare November 24, 2024 12:07
@renovate renovate bot force-pushed the renovate/config-no-service branch 3 times, most recently from 460892f to f14027d Compare December 8, 2024 14:34
@renovate renovate bot force-pushed the renovate/config-no-service branch from f14027d to 006e405 Compare December 21, 2024 12:02
@renovate renovate bot force-pushed the renovate/config-no-service branch from 006e405 to 38178bb Compare January 9, 2025 23:35
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.

1 participant