Skip to content

chore(deps): bump the go-minor-patch group across 1 directory with 9 updates - #61

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/go-minor-patch-6198411b40
Open

dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/go-minor-patch-6198411b40

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Contributor

Bumps the go-minor-patch group with 6 updates in the / directory:

Package From To
connectrpc.com/connect 1.19.2 1.20.0
connectrpc.com/grpchealth 1.4.0 1.5.0
github.com/knadh/koanf/v2 2.3.4 2.3.5
github.com/prometheus/client_golang 1.23.2 1.24.1
github.com/reeflective/console 0.1.25 0.5.0
google.golang.org/grpc 1.81.0 1.82.1

Updates connectrpc.com/connect from 1.19.2 to 1.20.0

Release notes

Sourced from connectrpc.com/connect's releases.

v1.20.0

What's Changed

Other changes

New Contributors

Full Changelog: connectrpc/connect-go@v1.19.2...v1.20.0

Commits

Updates connectrpc.com/grpchealth from 1.4.0 to 1.5.0

Release notes

Sourced from connectrpc.com/grpchealth's releases.

v1.5.0

What's Changed

Governance

Add @​timostamm as a maintainer in connectrpc/grpchealth-go#80 🎉

Enhancements

Other changes

Full Changelog: connectrpc/grpchealth-go@v1.4.0...v1.5.0

Commits

Updates github.com/knadh/koanf/v2 from 2.3.4 to 2.3.5

Release notes

Sourced from github.com/knadh/koanf/v2's releases.

v2.3.5

What's Changed

New Contributors

Full Changelog: knadh/koanf@v2.3.4...v2.3.5

Commits
  • e09e4c8 fix: report full key var in MergeStrict type-mismatch error message (#418)
  • 7a28d59 Exclude nats, vault providers from global workspace and fix CI test commands.
  • d511690 Fix test action to use local Go toolchain for different versions.
  • 308274c Fix async file provider Watch() test that would race and fail randomly.
  • 91fa65d Upgrade vault lib in providers/vault.
  • f941889 Upgrade hjson lib in providers/jhson.
  • 3a69086 Upgrade NATS deps (dependabot sent 8 alerts) in providers/nats.
  • 2dd78e8 Bools: return the matched []bool, not the nil intermediate (#416)
  • d1d3dd7 Exclude the ./examples dir from Go workspace to avoid being pulled into tests.
  • 1641671 Move k8smount provider mock files out of the global mock dir.
  • Additional commits viewable in compare view

Updates github.com/prometheus/client_golang from 1.23.2 to 1.24.1

Release notes

Sourced from github.com/prometheus/client_golang's releases.

v1.24.1 / 2026-07-23

Small bugfix release for promhttp.

What's Changed

[BUGFIX] promhttp: Fix panic on requests with nil URL. #2065

Full Changelog: prometheus/client_golang@v1.24.0...v1.24.1

v1.24.0 - 2026-07-20

Changes

  • [CHANGE] Minimum required Go version is now 1.25, only the two latest Go versions (1.25 and 1.26) are supported from now on. #1862
  • [CHANGE] prometheus: Name validation now always uses the UTF-8 scheme instead of the deprecated model.NameValidationScheme global. Default behavior is unchanged; code that set NameValidationScheme = LegacyValidation no longer gets legacy enforcement at metric, label, and push-grouping construction. #2051
  • [CHANGE] api/prometheus/v1: Support matchers (matches[] parameter) in Rules method (Rules(ctx context.Context, matches []string) (RulesResult, error)). #1843
  • [CHANGE] api/prometheus/v1: Refactor LabelNames method to return model.LabelNames instead of []string for consistency across the API. #1850
  • [CHANGE] exp/api/remote: Simplify Store interface, rename Handler to WriteHandler, and encapsulate write response handling. #1855
  • [FEATURE] prometheus: Add new Go 1.26 runtime metrics (/sched/goroutines-created:goroutines, /sched/goroutines/not-in-go:goroutines, /sched/goroutines/runnable:goroutines, /sched/goroutines/running:goroutines, /sched/goroutines/waiting:goroutines, /sched/threads/total:threads). #1942
  • [FEATURE] prometheus: Add WithUnit(unit string) option and explicit OpenMetrics unit support in CounterOpts, GaugeOpts, SummaryOpts, and HistogramOpts. #1392
  • [FEATURE] prometheus: Expose descriptor construction error through public Err() method on Desc. #1902
  • [FEATURE] promhttp: Add opt-in HandlerOpts.CoalesceGather to deduplicate concurrent Gather calls so overlapping scrapes share one collection cycle, preventing goroutine pile-up when the scrape rate outpaces collection time. #1969
  • [FEATURE] promhttp: HTTP handlers created by promhttp package now support metrics filtering by providing one or more name[] query parameters. The default behavior when none are provided remains the same, returning all metrics. #1925
  • [FEATURE] api/prometheus/v1: Add query formatting endpoint support (/format_query) and FormatQuery(ctx context.Context, query string) (string, error) method. #1846, #1856
  • [FEATURE] api/prometheus/v1: Add support for /status/tsdb/blocks endpoint via TSDBBlocks(ctx context.Context) ([]TSDBBlock, error) method. #1896
  • [FEATURE] exp/api/remote: Export BackoffConfig to allow customization when using WithAPIBackoff. #1895
  • [FEATURE] exp/api/remote: Add RetryCallBack to allow custom logging or handling on retry attempts in the remote write client. #1888, #1890
  • [ENHANCEMENT] prometheus/collectors/version: Allow specifying custom labels when registering the version collector. #1860
  • [ENHANCEMENT] api: Use cloned http.DefaultTransport when constructing default HTTP clients to prevent accidental mutations of shared global transport state. #1885
  • [BUGFIX] prometheus: Recover from collector panics during Gather() and return an error instead of crashing the process. #1961
  • [BUGFIX] prometheus: Fix cpu-seconds unit suffix handling for metric go_cpu_classes_gc_mark_assist_cpu_seconds. #1991
  • [BUGFIX] promhttp: InstrumentHandlerDuration and InstrumentHandlerCounter no longer panic when given an observer/counter that does not implement ExemplarObserver/ExemplarAdder (e.g. a SummaryVec). The exemplar is dropped and the value is recorded via the plain Observe/Add path, matching the safe-cast already used by Timer.ObserveDurationWithExemplar. #2005
  • [BUGFIX] api/prometheus/v1: Fall back to GET requests when POST requests return 403 Forbidden or method not allowed. #2030
  • [BUGFIX] api: Respect context cancellation inside httpClient.Do. #1971
  • [BUGFIX] exp/api/remote: Fix compression buffer pooling where compressed buffers were released prematurely, causing corrupted remote-write payloads. #1889
  • [BUGFIX] exp/api/remote: Reject malformed snappy payloads declaring huge decoded sizes. Enforce a 32MB decoded-size limit to prevent OOM from oversized remote-write requests. #1917
  • [BUGFIX] exp/api/remote: Ensure remote write v2 headers cannot be returned on v1 requests. #1927

... (truncated)

Changelog

Sourced from github.com/prometheus/client_golang's changelog.

1.24.1 / 2026-07-23

  • [BUGFIX] promhttp: Fix panic on requests with nil URL. #2065

1.24.0 / 2026-07-20

  • [CHANGE] Minimum required Go version is now 1.25, only the two latest Go versions (1.25 and 1.26) are supported from now on. #1862
  • [CHANGE] prometheus: Name validation now always uses the UTF-8 scheme instead of the deprecated model.NameValidationScheme global. Default behavior is unchanged; code that set NameValidationScheme = LegacyValidation no longer gets legacy enforcement at metric, label, and push-grouping construction. #2051
  • [CHANGE] api/prometheus/v1: Support matchers (matches[] parameter) in Rules method (Rules(ctx context.Context, matches []string) (RulesResult, error)). #1843
  • [CHANGE] api/prometheus/v1: Refactor LabelNames method to return model.LabelNames instead of []string for consistency across the API. #1850
  • [CHANGE] exp/api/remote: Simplify Store interface, rename Handler to WriteHandler, and encapsulate write response handling. #1855
  • [FEATURE] prometheus: Add new Go 1.26 runtime metrics (/sched/goroutines-created:goroutines, /sched/goroutines/not-in-go:goroutines, /sched/goroutines/runnable:goroutines, /sched/goroutines/running:goroutines, /sched/goroutines/waiting:goroutines, /sched/threads/total:threads). #1942
  • [FEATURE] prometheus: Add WithUnit(unit string) option and explicit OpenMetrics unit support in CounterOpts, GaugeOpts, SummaryOpts, and HistogramOpts. #1392
  • [FEATURE] prometheus: Expose descriptor construction error through public Err() method on Desc. #1902
  • [FEATURE] promhttp: Add opt-in HandlerOpts.CoalesceGather to deduplicate concurrent Gather calls so overlapping scrapes share one collection cycle, preventing goroutine pile-up when the scrape rate outpaces collection time. #1969
  • [FEATURE] promhttp: HTTP handlers created by promhttp package now support metrics filtering by providing one or more name[] query parameters. The default behavior when none are provided remains the same, returning all metrics. #1925
  • [FEATURE] api/prometheus/v1: Add query formatting endpoint support (/format_query) and FormatQuery(ctx context.Context, query string) (string, error) method. #1846, #1856
  • [FEATURE] api/prometheus/v1: Add support for /status/tsdb/blocks endpoint via TSDBBlocks(ctx context.Context) ([]TSDBBlock, error) method. #1896
  • [FEATURE] exp/api/remote: Export BackoffConfig to allow customization when using WithAPIBackoff. #1895
  • [FEATURE] exp/api/remote: Add RetryCallBack to allow custom logging or handling on retry attempts in the remote write client. #1888, #1890
  • [ENHANCEMENT] prometheus/collectors/version: Allow specifying custom labels when registering the version collector. #1860
  • [ENHANCEMENT] api: Use cloned http.DefaultTransport when constructing default HTTP clients to prevent accidental mutations of shared global transport state. #1885
  • [BUGFIX] prometheus: Recover from collector panics during Gather() and return an error instead of crashing the process. #1961
  • [BUGFIX] prometheus: Fix cpu-seconds unit suffix handling for metric go_cpu_classes_gc_mark_assist_cpu_seconds. #1991
  • [BUGFIX] promhttp: InstrumentHandlerDuration and InstrumentHandlerCounter no longer panic when given an observer/counter that does not implement ExemplarObserver/ExemplarAdder (e.g. a SummaryVec). The exemplar is dropped and the value is recorded via the plain Observe/Add path, matching the safe-cast already used by Timer.ObserveDurationWithExemplar. #2005
  • [BUGFIX] api/prometheus/v1: Fall back to GET requests when POST requests return 403 Forbidden or method not allowed. #2030
  • [BUGFIX] api: Respect context cancellation inside httpClient.Do. #1971
  • [BUGFIX] exp/api/remote: Fix compression buffer pooling where compressed buffers were released prematurely, causing corrupted remote-write payloads. #1889
  • [BUGFIX] exp/api/remote: Reject malformed snappy payloads declaring huge decoded sizes. Enforce a 32MB decoded-size limit to prevent OOM from oversized remote-write requests. #1917
  • [BUGFIX] exp/api/remote: Ensure remote write v2 headers cannot be returned on v1 requests. #1927
Commits
  • d6087ee release: cut v1.24.1 (#2076)
  • 48dd383 Cut v1.24.0 (#2061)
  • a725305 Cut v1.24.0-rc.0 (#2058)
  • 77c584f build(deps): update all Go dependencies in all go.mod files (#2059)
  • 78262a7 feat(promhttp): add CoalesceGather option to deduplicate concurrent Gather ca...
  • 34e9a7f Merge pull request #2055 from prombot/repo_sync
  • 43749bc Update common Prometheus files
  • de19217 examples: improve simple main.go example (#1999)
  • 20355eb fix: correct typos in comments and test error messages (#2049)
  • 4cd2d3a test: fix two flaky tests (darwin start_time regex, memstats HeapReleased dri...
  • Additional commits viewable in compare view

Updates github.com/reeflective/console from 0.1.25 to 0.5.0

Release notes

Sourced from github.com/reeflective/console's releases.

v0.5.0

Features

  • Opt out of shell-style backslash escaping (#88, #89).

    By default the console splits input with POSIX shell semantics, so an unquoted backslash escapes the next character — mangling values that carry literal backslashes (e.g. Windows paths: C:\Windows\TempC:WindowsTemp) and treating a trailing backslash as a line continuation. This is surprising when the console is used as a general Cobra frontend rather than a shell.

    A new console-wide EscapeMode lets applications choose:

    app := console.New("myapp")
    app.SetEscapeMode(console.EscapeLiteral)
    Mode Behavior
    EscapeShell (default) POSIX escape rules — unchanged
    EscapeLiteral backslash is an ordinary character; quotes still group words; C:\Windows\Temp passes through verbatim; a trailing backslash no longer requests another line

    The mode is threaded through command execution, multiline-continuation detection, and completion/highlighting alike, so behavior stays consistent everywhere. The EscapeShell path is byte-for-byte unchanged.

Full changelog: reeflective/console@v0.4.0...v0.5.0

v0.4.0

Features

  • Console.RunMenuCommand (#85) — public wrapper over the internal execution path, for integrations that have already prepared a menu command tree and want to execute against it directly, controlling the async flag themselves (bypassing the active-menu reset). Most callers should keep using Menu.RunCommandArgs.

Fixes

  • Reset reused command flag state before completion and execution (#83, #84) — when the application supplies a command tree directly (no generator via SetCommands), the tree is never regenerated, so cobra flag state (Changed, values, ArgsLenAtDash) parsed by an earlier completion or execution leaked into later ones for the same command. A single shared helper now restores flag defaults on both paths.
  • Hide carapace's internal _carapace command (#82) — it is no longer offered as a normal user command in completions.

Internal

  • Extracted the pure cobra command-tree helpers (filter matching, filtered-command hiding, flag-default reset, subcommand lookup) into a new internal/command package. Thin delegators on Console/Menu remain; no public API or behavior change.
  • Bumped github.com/reeflective/readline to v1.3.0 (#86), which brings the completer panic-recovery fix among others.

Contributors: thanks to @​M09Ic for #82#85, recommitted here with authorship preserved.

Full changelog: reeflective/console@v0.3.1...v0.4.0

v0.3.1

console v0.3.1

A maintenance release: a readline bump that brings the bug fixes and rendering improvements accumulated since v1.2.0, plus a refresh of the CI workflows ahead of GitHub's Node 20 runtime removal.

Dependencies

  • reeflective/readline v1.2.0 → v1.2.2. Highlights across the range (v1.2.0…v1.2.2):

... (truncated)

Commits
  • 738e5de Merge pull request #89 from reeflective/dev
  • 397edc2 feat(parsing): add EscapeLiteral mode to opt out of shell backslash escaping
  • f44dc1d Merge pull request #87 from reeflective/dev
  • 0e1ae89 refactor: extract cobra command-tree helpers into internal/command
  • ff991ec feat(run): expose Console.RunMenuCommand for prepared menus
  • b79a0ab fix(flags): reset reused command flag state before completion and execution
  • 36b0bd8 fix(completion): hide carapace internal command from completions
  • 0199308 Merge pull request #86 from reeflective/dev
  • a998baa chore(deps): bump readline to v1.3.0
  • 7002774 Merge pull request #80 from reeflective/dev
  • Additional commits viewable in compare view

Updates golang.org/x/net from 0.53.0 to 0.57.0

Commits
  • b8f09f6 go.mod: update golang.org/x dependencies
  • f05f21b idna: reject all-ASCII xn-- labels on all Go versions
  • 0f748cf internal/http3: clean up stream I/O methods usages in tests
  • 0bb961e internal/http3: add net/http.ResponseController support
  • 0ca694d webdav: document Dir's lack of defense against filesystem modification
  • bd5f1dc http2: initialize Transport on NewClientConn
  • 488ff63 bpf: add security considerations to package docs
  • 93d1f25 xsrftoken: avoid token collisions
  • 5a3baee internal/http3: prevent panic in QPACK decoder due to overflow
  • 9e7fdbf internal/http3: fix wrong argument being given when validating header value
  • Additional commits viewable in compare view

Updates golang.org/x/sync from 0.20.0 to 0.22.0

Commits
  • 1eb64d4 semaphore: panic on negative weights
  • 5071ed6 all: fix some comments to improve readability
  • See full diff in compare view

Updates golang.org/x/sys from 0.43.0 to 0.47.0

Commits
  • 9e7e939 cpu: handle vendor suffixes in parseRelease
  • f6fb8a1 unix: use epoll_pwait rather than epoll_wait
  • f3eeabf windows: avoid length overflow in NewNTString
  • 3cb6647 unix: update glibc to 2.43
  • c507910 windows: document safe usage of TrusteeValue
  • d58dcfa unix: add GPIO constants and structs
  • 397d5f8 unix: update to Linux kernel 7.0
  • 0a387f7 cpu: detect zbc extension on riscv64
  • 758f71c cpu: add LLACQ_SCREL, SCQ, DBAR_HINTS detection for loong64
  • 99666ae unix: merge Linux readv/writev implementation with Darwin/OpenBSD
  • Additional commits viewable in compare view

Updates google.golang.org/grpc from 1.81.0 to 1.82.1

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.82.1

Security

  • server: Stop reading from the connection when flooded by HTTP/2 frames. The default value for this limit is 100 frames, excluding DATA and HEADERS, and may be changed by setting environment variable GRPC_GO_EXPERIMENTAL_CONTROL_BUFFER_THROTTLE_LIMIT.
  • xds/rbac: Support Metadata and RequestedServerName permissions matcher fields. If present in a DENY rule, previously these would be ignored and fail-open.
  • xds/rbac: Fix panic when parsing unsupported fields in NotRule/NotId permissions.
  • xds/rbac: Support the deprecated source_ip principal identifier by treating it as equivalent to direct_remote_ip.

Release 1.82.0

Behavior Changes

  • server: Remove support for GRPC_GO_EXPERIMENTAL_DISABLE_STRICT_PATH_CHECKING environment varibale. Strict incoming RPC path validation (which has been the default since v1.79.3) can no longer be disabled. (#9112)
  • transport: Add environment variable to change the default max header list size from 16MB to 8KB. This may be enabled by setting GRPC_GO_EXPERIMENTAL_ENABLE_8KB_DEFAULT_HEADER_LIST_SIZE=true. This will be enabled by default in a subsequent release. (#9019)
  • balancer: Load Balancing policy registry is now case-sensitive. Set GRPC_GO_EXPERIMENTAL_CASE_SENSITIVE_BALANCER_REGISTRIES=false (and file an issue) to revert to case-insensitive behavior. (#9017)

New Features

  • experimental/stats: Expose a new API, NewContextWithLabelCallback, to register a callback that is invoked when telemetry labels are added. (#8877)
  • client: Return a portion of the response body in the error message, when the client receives an unexpected non-gRPC HTTP response, to make debugging easier. (#8929)
  • server: Add environment variable GRPC_GO_SERVER_GOROUTINE_LABELS that controls setting runtime/pprof.Labels on goroutines spawned by the server. Set GRPC_GO_SERVER_GOROUTINE_LABELS=grpc.method=true to add the grpc.method label on goroutines spawned to handle incoming requests. (#9082)

Bug Fixes

  • xds/server: Fix a memory leak of HTTP filter instances occurring when route configurations are updated in-place during a Route Discovery Service (RDS) update. (#9138)
  • grpc: In the deprecated gzip Compressor (used via the deprecated WithCompressor dial option), enforce the MaxRecvMsgSize limit on the decompressed message buffer, preventing excessive memory allocation from highly compressed payloads. (#9114)
  • stats/opentelemetry: Record retry attempts, grpc.previous-rpc-attempts, at the call level and not the attempt level. (#8923)
  • encoding: Ensure Close() is always called on readers returned from Compressor.Decompress if possible. (#9135)
  • channelz: Fix the LastMessageSentTimestamp and LastMessageReceivedTimestamp fields in SocketMetrics to ensure they contain correct timestamp values. (#9109)

Release 1.81.1

Security

  • xds/rbac: Fix a potential authorization bypass caused by incorrectly falling through URI/DNS SANs to Subject Distinguished Name (DN) when matching the authenticated principal name. With this fix, only the first non-empty identity source will be used, as per gRFC A41. (#9111)

Bug Fixes

  • otel: Segregate client and server RPC information used for metrics and traces, to avoid one overwriting the other. (#9081)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…updates

Bumps the go-minor-patch group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [connectrpc.com/connect](https://github.com/connectrpc/connect-go) | `1.19.2` | `1.20.0` |
| [connectrpc.com/grpchealth](https://github.com/connectrpc/grpchealth-go) | `1.4.0` | `1.5.0` |
| [github.com/knadh/koanf/v2](https://github.com/knadh/koanf) | `2.3.4` | `2.3.5` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.23.2` | `1.24.1` |
| [github.com/reeflective/console](https://github.com/reeflective/console) | `0.1.25` | `0.5.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.81.0` | `1.82.1` |



Updates `connectrpc.com/connect` from 1.19.2 to 1.20.0
- [Release notes](https://github.com/connectrpc/connect-go/releases)
- [Changelog](https://github.com/connectrpc/connect-go/blob/main/RELEASE.md)
- [Commits](connectrpc/connect-go@v1.19.2...v1.20.0)

Updates `connectrpc.com/grpchealth` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/connectrpc/grpchealth-go/releases)
- [Commits](connectrpc/grpchealth-go@1.4.0...v1.5.0)

Updates `github.com/knadh/koanf/v2` from 2.3.4 to 2.3.5
- [Release notes](https://github.com/knadh/koanf/releases)
- [Commits](knadh/koanf@v2.3.4...v2.3.5)

Updates `github.com/prometheus/client_golang` from 1.23.2 to 1.24.1
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/v1.24.1/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.23.2...v1.24.1)

Updates `github.com/reeflective/console` from 0.1.25 to 0.5.0
- [Release notes](https://github.com/reeflective/console/releases)
- [Commits](reeflective/console@v0.1.25...v0.5.0)

Updates `golang.org/x/net` from 0.53.0 to 0.57.0
- [Commits](golang/net@v0.53.0...v0.57.0)

Updates `golang.org/x/sync` from 0.20.0 to 0.22.0
- [Commits](golang/sync@v0.20.0...v0.22.0)

Updates `golang.org/x/sys` from 0.43.0 to 0.47.0
- [Commits](golang/sys@v0.43.0...v0.47.0)

Updates `google.golang.org/grpc` from 1.81.0 to 1.82.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.81.0...v1.82.1)

---
updated-dependencies:
- dependency-name: connectrpc.com/connect
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: connectrpc.com/grpchealth
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: github.com/knadh/koanf/v2
  dependency-version: 2.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: github.com/prometheus/client_golang
  dependency-version: 1.24.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: github.com/reeflective/console
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: golang.org/x/net
  dependency-version: 0.57.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: golang.org/x/sync
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: golang.org/x/sys
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: google.golang.org/grpc
  dependency-version: 1.82.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 27, 2026
@dependabot
dependabot Bot requested a review from dantte-lp as a code owner July 27, 2026 09:55
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 27, 2026
@codecov

codecov Bot commented Jul 27, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@github-actions

Copy link
Copy Markdown

Benchmark comparison

go: downloading golang.org/x/perf v0.0.0-20260409210113-8e83ce0f7b1c
go: downloading github.com/aclements/go-moremath v0.0.0-20210112150236-f10218a38794
goos: linux
goarch: amd64
pkg: github.com/dantte-lp/gobfd/internal/bfd
cpu: INTEL(R) XEON(R) PLATINUM 8573C
                                 │    old.txt    │               new.txt               │
                                 │    sec/op     │    sec/op      vs base              │
ControlPacketMarshal-4              5.446n ±  4%    5.603n ±  3%       ~ (p=0.093 n=6)
ControlPacketMarshalWithAuth-4      8.420n ±  1%    8.431n ±  1%       ~ (p=0.699 n=6)
ControlPacketUnmarshal-4            4.978n ±  1%    4.969n ±  2%       ~ (p=0.288 n=6)
ControlPacketUnmarshalWithAuth-4    31.87n ±  2%    32.01n ±  1%       ~ (p=0.310 n=6)
ControlPacketRoundTrip-4            10.52n ±  2%    10.61n ±  6%       ~ (p=0.253 n=6)
FSMTransitionUpRecvUp-4             7.009n ±  1%    7.008n ±  0%       ~ (p=0.613 n=6)
FSMTransitionDownRecvDown-4         7.021n ±  0%    7.010n ±  3%       ~ (p=0.132 n=6)
FSMTransitionUpTimerExpired-4       7.010n ±  0%    7.007n ±  0%       ~ (p=0.907 n=6)
FSMTransitionIgnored-4              6.450n ±  3%    6.445n ±  0%       ~ (p=0.169 n=6)
ApplyJitter-4                       39.65n ±  1%    39.61n ±  0%       ~ (p=0.615 n=6)
ApplyJitterDetectMultOne-4          39.94n ±  0%    39.96n ±  1%       ~ (p=0.290 n=6)
PacketPool-4                        11.54n ±  2%    11.54n ±  2%       ~ (p=0.781 n=6)
RecvStateToEvent-4                 0.8925n ±  6%   0.8476n ± 15%       ~ (p=0.310 n=6)
FullRecvPath-4                      98.21n ± 46%   110.00n ± 21%       ~ (p=0.818 n=6)
FullRecvPathCodec-4                 12.22n ±  0%    12.24n ±  0%       ~ (p=0.076 n=6)
FullTxPath-4                        44.21n ±  1%    44.13n ±  1%       ~ (p=1.000 n=6)
SessionRecvPacket-4                 21.28n ± 28%    23.55n ± 49%       ~ (p=0.132 n=6)
DetectionTimeCalc-4                 14.58n ±  0%    14.57n ±  0%       ~ (p=0.351 n=6)
CalcTxInterval-4                    14.32n ±  0%    14.32n ±  0%       ~ (p=0.292 n=6)
DetectionTimeCalcHot-4              1.295n ±  7%    1.274n ±  8%       ~ (p=0.485 n=6)
CalcTxIntervalHot-4                 1.140n ±  3%    1.144n ±  1%       ~ (p=0.461 n=6)
SessionApplyJitter-4                3.647n ±  0%    3.649n ±  0%       ~ (p=0.171 n=6)
geomean                             9.536n          9.618n        +0.86%

                                 │   old.txt    │              new.txt               │
                                 │     B/op     │    B/op     vs base                │
ControlPacketMarshal-4             0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ControlPacketMarshalWithAuth-4     0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ControlPacketUnmarshal-4           0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ControlPacketUnmarshalWithAuth-4   64.00 ± 0%     64.00 ± 0%       ~ (p=1.000 n=6) ¹
ControlPacketRoundTrip-4           0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FSMTransitionUpRecvUp-4            0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FSMTransitionDownRecvDown-4        0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FSMTransitionUpTimerExpired-4      0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FSMTransitionIgnored-4             0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ApplyJitter-4                      0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ApplyJitterDetectMultOne-4         0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
PacketPool-4                       0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
RecvStateToEvent-4                 0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FullRecvPath-4                     0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FullRecvPathCodec-4                0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FullTxPath-4                       0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
SessionRecvPacket-4                0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
DetectionTimeCalc-4                0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
CalcTxInterval-4                   0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
DetectionTimeCalcHot-4             0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
CalcTxIntervalHot-4                0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
SessionApplyJitter-4               0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
geomean                                       ²               +0.00%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

                                 │   old.txt    │              new.txt               │
                                 │  allocs/op   │ allocs/op   vs base                │
ControlPacketMarshal-4             0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ControlPacketMarshalWithAuth-4     0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ControlPacketUnmarshal-4           0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ControlPacketUnmarshalWithAuth-4   1.000 ± 0%     1.000 ± 0%       ~ (p=1.000 n=6) ¹
ControlPacketRoundTrip-4           0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FSMTransitionUpRecvUp-4            0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FSMTransitionDownRecvDown-4        0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FSMTransitionUpTimerExpired-4      0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FSMTransitionIgnored-4             0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ApplyJitter-4                      0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ApplyJitterDetectMultOne-4         0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
PacketPool-4                       0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
RecvStateToEvent-4                 0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FullRecvPath-4                     0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FullRecvPathCodec-4                0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
FullTxPath-4                       0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
SessionRecvPacket-4                0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
DetectionTimeCalc-4                0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
CalcTxInterval-4                   0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
DetectionTimeCalcHot-4             0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
CalcTxIntervalHot-4                0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
SessionApplyJitter-4               0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
geomean                                       ²               +0.00%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

pkg: github.com/dantte-lp/gobfd/internal/netio
                        │   old.txt   │              new.txt              │
                        │   sec/op    │   sec/op     vs base              │
BuildInnerPacket-4        35.91n ± 7%   36.12n ± 1%       ~ (p=0.058 n=6)
StripInnerPacket-4        3.649n ± 0%   3.647n ± 0%       ~ (p=0.801 n=6)
VXLANHeaderMarshal-4      1.765n ± 1%   1.775n ± 0%       ~ (p=0.056 n=6)
VXLANHeaderUnmarshal-4    1.578n ± 4%   1.584n ± 5%       ~ (p=0.818 n=6)
GeneveHeaderMarshal-4     2.808n ± 0%   2.807n ± 0%       ~ (p=0.848 n=6)
GeneveHeaderUnmarshal-4   8.162n ± 3%   8.126n ± 0%  -0.43% (p=0.048 n=6)
geomean                   4.506n        4.513n       +0.17%

                        │   old.txt    │              new.txt               │
                        │     B/op     │    B/op     vs base                │
BuildInnerPacket-4        80.00 ± 0%     80.00 ± 0%       ~ (p=1.000 n=6) ¹
StripInnerPacket-4        0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
VXLANHeaderMarshal-4      0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
VXLANHeaderUnmarshal-4    0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
GeneveHeaderMarshal-4     0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
GeneveHeaderUnmarshal-4   0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
geomean                              ²               +0.00%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

                        │   old.txt    │              new.txt               │
                        │  allocs/op   │ allocs/op   vs base                │
BuildInnerPacket-4        1.000 ± 0%     1.000 ± 0%       ~ (p=1.000 n=6) ¹
StripInnerPacket-4        0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
VXLANHeaderMarshal-4      0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
VXLANHeaderUnmarshal-4    0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
GeneveHeaderMarshal-4     0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
GeneveHeaderUnmarshal-4   0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
geomean                              ²               +0.00%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

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

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants