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 1 commit into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Dec 16, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@grpc/grpc-js (source) 1.9.9 -> 1.11.1 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
grafana/grafana 10.2.0 -> 10.4.6 age adoption passing confidence minor
jaegertracing/all-in-one 1.51 -> 1.59 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.12.2 age adoption passing confidence devDependencies minor
markdownlint-cli 0.37.0 -> 0.41.0 age adoption passing confidence devDependencies minor
otel/opentelemetry-collector-contrib 0.88.0 -> 0.106.1 age adoption passing confidence minor
postgres 16.0 -> 16.3 age adoption passing confidence minor
quay.io/prometheus/prometheus v2.47.2 -> v2.53.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.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
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 3 times, most recently from eaaa498 to cfbf9ce Compare March 11, 2024 06:54
@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from 935e87e to 248b90f Compare April 26, 2024 23:53
@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from 65b0ced to 3c951c9 Compare May 3, 2024 05:54
@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from 4f205aa to e4ac198 Compare May 10, 2024 11:58
@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from 735b629 to ce72869 Compare May 26, 2024 02:18
@renovate renovate bot force-pushed the renovate/config-no-service branch 3 times, most recently from c34a341 to 32e119c Compare June 11, 2024 02:04
@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from db7569d to 0ac31e8 Compare June 19, 2024 20:26
@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from d1c459e to 17f8c0e Compare June 25, 2024 11:55
@renovate renovate bot force-pushed the renovate/config-no-service branch from 17f8c0e to de6bc05 Compare July 2, 2024 17:52
@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from 1b560f0 to 3806f86 Compare July 17, 2024 21:03
@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from 3abd493 to a303de4 Compare July 31, 2024 02:21
@renovate renovate bot force-pushed the renovate/config-no-service branch from a303de4 to c07516a Compare August 1, 2024 02:19
@renovate renovate bot force-pushed the renovate/config-no-service branch 3 times, most recently from 8d8b1b5 to 98eac13 Compare August 15, 2024 05:52
@renovate renovate bot force-pushed the renovate/config-no-service branch from 98eac13 to 914f435 Compare August 23, 2024 23:51
@renovate renovate bot force-pushed the renovate/config-no-service branch 2 times, most recently from 9b21e2c to 15e1004 Compare September 6, 2024 12:06
@renovate renovate bot force-pushed the renovate/config-no-service branch from 15e1004 to adc0f42 Compare September 11, 2024 02:21
@renovate renovate bot force-pushed the renovate/config-no-service branch from adc0f42 to f46d841 Compare September 12, 2024 17:55
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