Skip to content

Update go deps - #365

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/go-deps
Open

Update go deps#365
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/go-deps

Conversation

@renovate

@renovate renovate Bot commented May 19, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
github.com/emiago/sipgo v1.4.0v1.4.3 age confidence
github.com/go-logr/logr v1.4.3v1.4.4 age confidence
github.com/icholy/digest v1.1.0v1.2.0 age confidence
github.com/pion/rtp v1.10.2v1.10.5 age confidence
github.com/pion/sdp/v3 v3.0.18v3.0.19 age confidence
github.com/pion/webrtc/v4 v4.2.14v4.2.18 age confidence
github.com/prometheus/client_golang v1.23.2v1.24.1 age confidence
github.com/urfave/cli/v3 v3.9.0v3.10.1 age confidence
google.golang.org/grpc v1.82.1v1.83.0 age confidence

Release Notes

emiago/sipgo (github.com/emiago/sipgo)

v1.4.3

Compare Source

Full Changelog: emiago/sipgo@v1.4.2...v1.4.3

Security fix for DOS websocket frame Issue Thanks @​arkark for reporting.

v1.4.2

Compare Source

Full Changelog: emiago/sipgo@v1.4.1...v1.4.2

SECURITY FEATURE

sip.ValidateRequest and sip.ValidateResponse added as way for user to Validate Req/Response from CRLF injection. -> Thanks @​arkark for reporting it

v1.4.1

Compare Source

What's Changed

New Contributors

Security

  • DOS prevent DOS allocation on stream parser with large Content length Issue - Thanks to report from @​arkark

Full Changelog: emiago/sipgo@v1.4.0...v1.4.1

go-logr/logr (github.com/go-logr/logr)

v1.4.4

Compare Source

What's Changed

New Contributors

Full Changelog: go-logr/logr@v1.4.3...v1.4.4

icholy/digest (github.com/icholy/digest)

v1.2.0

Compare Source

pion/rtp (github.com/pion/rtp)

v1.10.5

Compare Source

Changelog

  • e61bd16 Support multiple sps/pps/vps in h265 AU

v1.10.4

Compare Source

Changelog

  • 2b19d5b Cache SPS/PPS/VPS in H265Payloader
  • 0f341d6 Check data length it RTP ExtHdr handlers

v1.10.3

Compare Source

Changelog

pion/sdp (github.com/pion/sdp/v3)

v3.0.19

Compare Source

Changelog

  • Update CI configs to v0.12.0
  • Update CI configs to v0.12.2
  • Export GetCodecMap for efficient payload type lookups

Full Changelog: pion/sdp@v3.0.18...v3.0.19

pion/webrtc (github.com/pion/webrtc/v4)

v4.2.18

Compare Source

Changelog

v4.2.17

Compare Source

Changelog

  • 21f6d7a Update module github.com/pion/rtp to v1.10.4
  • d9b2a24 Set the default MTU to 1191
  • be58c65 Update actions/setup-node action to v7
  • a50e685 Update module github.com/pion/ice/v4 to v4.3.0 (#​3474)
  • ebba224 Fix late assert panic in TestInterceptorNack
  • 8ddbe21 Expose ICE use-candidate priority setting (#​3449)
  • 6fbce15 Update module github.com/pion/dtls/v3 to v3.1.5 (#​3469)
  • df4b786 Update module github.com/pion/rtp to v1.10.3 (#​3465)
  • 991f6d3 Update module github.com/pion/rtcp to v1.2.17 (#​3462)
  • 6d4ca74 Update module github.com/pion/turn/v5 to v5.0.12 (#​3464)
  • 6b653c9 Update actions/checkout action to v7
  • 3356241 Add support for non-zero channel mapping

v4.2.16

Compare Source

Changelog

v4.2.15

Compare Source

Changelog

  • a323cae Upgrade dtls to fix compatibility with firefox
  • bb1c684 SNAP: fix renegotiation bug (#​3443)
  • 898d90d Remove redundant lock guarding atomic
prometheus/client_golang (github.com/prometheus/client_golang)

v1.24.1

Compare Source

v1.24.0: - 2026-07-20

Compare Source

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
All commits

New Contributors

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

urfave/cli (github.com/urfave/cli/v3)

[v3.10.1](https://redirect.github.com/urfave/cli/releases/tag/

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 9am on monday"
  • 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 requested a review from a team as a code owner May 19, 2025 10:02
@renovate
renovate Bot force-pushed the renovate/go-deps branch 2 times, most recently from 547b647 to 1b46580 Compare May 20, 2025 12:13
@renovate renovate Bot changed the title Update module github.com/pion/webrtc/v4 to v4.1.1 Update go deps May 20, 2025
@renovate
renovate Bot force-pushed the renovate/go-deps branch from 1b46580 to c122d47 Compare May 23, 2025 03:05
@renovate
renovate Bot force-pushed the renovate/go-deps branch 4 times, most recently from 57a6b66 to a16e9b4 Compare June 2, 2025 06:09
@renovate
renovate Bot force-pushed the renovate/go-deps branch 3 times, most recently from 23b1b59 to 5506979 Compare June 6, 2025 22:57
@renovate

renovate Bot commented Jun 6, 2025

Copy link
Copy Markdown
Contributor Author

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 12 additional dependencies were updated

Details:

Package Change
golang.org/x/mod v0.29.0 -> v0.31.0
github.com/pion/dtls/v3 v3.0.7 -> v3.0.8
github.com/pion/ice/v4 v4.0.10 -> v4.0.13
github.com/pion/mdns/v2 v2.0.7 -> v2.1.0
github.com/pion/rtcp v1.2.15 -> v1.2.16
github.com/pion/sctp v1.8.40 -> v1.8.41
github.com/pion/srtp/v3 v3.0.8 -> v3.0.9
github.com/pion/stun/v3 v3.0.0 -> v3.0.2
github.com/pion/transport/v3 v3.0.8 -> v3.1.1
github.com/pion/turn/v4 v4.1.1 -> v4.1.3
github.com/prometheus/common v0.64.0 -> v0.66.1
golang.org/x/sync v0.18.0 -> v0.19.0

@renovate
renovate Bot force-pushed the renovate/go-deps branch from 5506979 to 369930a Compare June 9, 2025 05:46
@renovate renovate Bot changed the title Update go deps fix(deps): update go deps Jun 10, 2025
@renovate
renovate Bot force-pushed the renovate/go-deps branch 4 times, most recently from bfff7dc to c516763 Compare June 14, 2025 12:42
@renovate
renovate Bot force-pushed the renovate/go-deps branch 3 times, most recently from 86a55eb to 8d30233 Compare June 23, 2025 08:13
@renovate
renovate Bot force-pushed the renovate/go-deps branch 2 times, most recently from c3c7fb8 to c1c4787 Compare July 1, 2025 05:37
@renovate
renovate Bot force-pushed the renovate/go-deps branch 4 times, most recently from 95d415f to 1b8b5f4 Compare July 15, 2025 19:27
@renovate
renovate Bot force-pushed the renovate/go-deps branch from 1b8b5f4 to 73f3057 Compare July 17, 2025 20:26
@renovate
renovate Bot force-pushed the renovate/go-deps branch 5 times, most recently from 6cefd98 to e39e505 Compare August 26, 2025 23:25
@renovate
renovate Bot requested a review from a team as a code owner August 26, 2025 23:25
@renovate
renovate Bot force-pushed the renovate/go-deps branch 4 times, most recently from 283e7f2 to ebdf827 Compare September 2, 2025 23:54
@renovate
renovate Bot force-pushed the renovate/go-deps branch 5 times, most recently from 7ef0e1f to 562c0c4 Compare September 9, 2025 10:33
@renovate
renovate Bot force-pushed the renovate/go-deps branch from 562c0c4 to 6781bd6 Compare September 11, 2025 10:51
@renovate
renovate Bot force-pushed the renovate/go-deps branch 4 times, most recently from 03aed22 to e776524 Compare September 25, 2025 22:22
@renovate
renovate Bot force-pushed the renovate/go-deps branch 7 times, most recently from 23eff5d to fd05a5c Compare October 4, 2025 01:01

@devin-ai-integration devin-ai-integration Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ Devin Review: No Issues Found

Devin Review analyzed this PR and found no bugs or issues to report.

Open in Devin Review

@renovate

renovate Bot commented Jul 24, 2026

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 17 additional dependencies were updated

Details:

Package Change
github.com/klauspost/compress v1.18.6 -> v1.19.1
github.com/pion/datachannel v1.6.0 -> v1.6.2
github.com/pion/dtls/v3 v3.1.4 -> v3.1.5
github.com/pion/ice/v4 v4.2.7 -> v4.4.0
github.com/pion/interceptor v0.1.45 -> v0.1.47
github.com/pion/rtcp v1.2.16 -> v1.2.17
github.com/pion/sctp v1.10.0 -> v1.11.1
github.com/pion/srtp/v3 v3.0.11 -> v3.0.12
github.com/pion/stun/v3 v3.1.4 -> v3.1.6
github.com/pion/turn/v5 v5.0.8 -> v5.0.12
github.com/prometheus/common v0.68.1 -> v0.70.1
github.com/prometheus/procfs v0.20.1 -> v0.21.1
golang.org/x/crypto v0.52.0 -> v0.54.0
golang.org/x/net v0.55.0 -> v0.57.0
golang.org/x/sync v0.20.0 -> v0.22.0
golang.org/x/sys v0.45.0 -> v0.47.0
golang.org/x/text v0.37.0 -> v0.40.0

Generated by renovateBot
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.

2 participants