Skip to content

build(deps): bump the security-updates group across 1 directory with 19 updates - #4056

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/security-updates-ed388ab595
Open

build(deps): bump the security-updates group across 1 directory with 19 updates#4056
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/security-updates-ed388ab595

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 9, 2026

Copy link
Copy Markdown
Contributor

Bumps the security-updates group with 16 updates in the / directory:

Package From To
github.com/docker/cli 27.3.1+incompatible 29.2.0+incompatible
github.com/getkin/kin-openapi 0.128.0 0.144.0
github.com/go-chi/chi/v5 5.1.0 5.2.4
github.com/golang/glog 1.2.2 1.2.4
github.com/gorilla/websocket 1.4.2 1.5.3
github.com/pion/interceptor 0.1.37 0.1.39
golang.org/x/net 0.34.0 0.55.0
google.golang.org/grpc 1.68.1 1.83.2
github.com/consensys/gnark-crypto 0.12.1 0.18.1
github.com/golang-jwt/jwt/v4 4.5.0 4.5.2
github.com/ipfs/go-libipfs 0.4.0 0.4.1
github.com/ipld/go-ipld-prime 0.20.0 0.23.0
github.com/pion/dtls/v3 3.0.4 3.1.4
github.com/pion/stun/v3 3.0.0 3.1.5
github.com/rabbitmq/amqp091-go 1.8.0 1.13.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp 1.33.0 1.43.0

Updates github.com/docker/cli from 27.3.1+incompatible to 29.2.0+incompatible

Commits
  • 0b9d198 Merge pull request #6764 from vvoland/update-docker
  • 9c9ec73 vendor: github.com/moby/moby/client v0.2.2
  • bab3e81 vendor: github.com/moby/moby/api v1.53.0
  • 2e64fc1 Merge pull request #6367 from thaJeztah/template_slicejoin
  • 1f2ba2a Merge pull request #6760 from thaJeztah/container_create_fix_error
  • e34a342 templates: make "join" work with non-string slices and map values
  • a86356d Merge pull request #6763 from thaJeztah/bump_mapstructure
  • 771660a vendor: github.com/go-viper/mapstructure/v2 v2.5.0
  • 9cff36b Merge pull request #6762 from thaJeztah/bump_x_deps
  • 08ed2bc cli/command/container: make injecting config.json failures a warning
  • Additional commits viewable in compare view

Updates github.com/getkin/kin-openapi from 0.128.0 to 0.144.0

Release notes

Sourced from github.com/getkin/kin-openapi's releases.

v0.144.0

What's Changed

New Contributors

Full Changelog: getkin/kin-openapi@v0.143.0...v0.144.0

v0.143.0

What's Changed

New Contributors

Full Changelog: getkin/kin-openapi@v0.142.0...v0.143.0

v0.142.0

What's Changed

Full Changelog: getkin/kin-openapi@v0.141.0...v0.142.0

v0.141.0

What's Changed

... (truncated)

Commits
  • f0407d5 Merge commit from fork
  • c947670 some fixes to please my moulinette (#1232)
  • 68ac2af Merge commit from fork
  • 3e5d7f4 openapi3filter: prefer non-empty value for repeated scalar query params (#1231)
  • 30e2923 Merge commit from fork
  • c11a481 openapi3gen: inline embedded struct with options-only JSON tag (#1229)
  • 0fb1f0e openapi3filter: skip schema checks for empty allowEmptyValue strings (#1228)
  • a872c57 openapi3: stable codes for validation errors (#1223)
  • d2f115e openapi3: preserve origin for a $ref to a schema under an arbitrary top-level...
  • 49523e0 openapi3filter: skip Split allocation for single-value array query params (#1...
  • Additional commits viewable in compare view

Updates github.com/go-chi/chi/v5 from 5.1.0 to 5.2.4

Release notes

Sourced from github.com/go-chi/chi/v5's releases.

v5.2.4

What's Changed

New Contributors

Full Changelog: go-chi/chi@v5.2.3...v5.2.4

v5.2.3

What's Changed

New Contributors

Full Changelog: go-chi/chi@v5.2.2...v5.2.3

v5.2.2

What's Changed

Security fix

... (truncated)

Commits
  • 6eb3588 middleware: harden RedirectSlashes handler (#1044)
  • de0d16e Update comment about min Go version (#1023)
  • 9fb4a15 update reverseMethodMap in RegisterMethod (#1022)
  • 51c977c Refactor to use atomic type (#1019)
  • 563ab11 Refactor graceful shutdown example (#994)
  • a52c582 Bump minimum Go and use new features (#1017)
  • 9b9fb55 Replace methodTypString func with reverseMethodMap (#1018)
  • 0265fcd refactor: iterative wildcard collapsing and add test for consecutive wildcard...
  • cf537d4 Optimize throttle middleware by avoiding unnecessary timer creation (#1011)
  • 9040e95 fix/608 - Fix flaky Throttle middleware test by synchronizing token usage (#1...
  • Additional commits viewable in compare view

Updates github.com/golang/glog from 1.2.2 to 1.2.4

Release notes

Sourced from github.com/golang/glog's releases.

v1.2.4

What's Changed

  • Fail if log file already exists by @​chressie in golang/glog#74:
    • glog: Don't try to create/rotate a given syncBuffer twice in the same second
    • glog: introduce createInDir function as in internal version
    • glog: have createInDir fail if the file already exists

Full Changelog: golang/glog@v1.2.3...v1.2.4

v1.2.3

What's Changed

Full Changelog: golang/glog@v1.2.2...v1.2.3

Commits
  • a0e3c40 glog: have createInDir fail if the file already exists
  • 7139da2 glog: introduce createInDir function as in internal version
  • dd58629 glog: Don't try to create/rotate a given syncBuffer twice in the same second
  • 04dbec0 glog: fix typo (#73)
  • 459cf3b glog: check that stderr is valid before using it by default (#72)
  • See full diff in compare view

Updates github.com/gorilla/websocket from 1.4.2 to 1.5.3

Release notes

Sourced from github.com/gorilla/websocket's releases.

v1.5.3

Important change

This reverts the websockets package back to gorilla/websocket@931041c

What's Changed

New Contributors

Full Changelog: gorilla/websocket@v1.5.1...v1.5.3

v1.5.2

What's Changed

... (truncated)

Commits
  • ce903f6 Reverts to v1.5.0
  • 9ec25ca fixes broken random value generation
  • 1bddf2e bumps go version & removes deprecated module usage
  • 750bf92 adds GHA & Makefile configs
  • b2c246b Revert " Update go version & add verification/testing tools (#840)"
  • 09a6bab removing error handling while closing connections
  • 58af150 return errors instead of printing to logs
  • e5f1a0a excludes errchecks linter
  • b2a86a1 Do not timeout when WriteControl deadline is zero
  • 695e909 Remove hideTempErr to allow downstream users to check for errors like net.Err...
  • Additional commits viewable in compare view

Updates github.com/pion/interceptor from 0.1.37 to 0.1.39

Release notes

Sourced from github.com/pion/interceptor's releases.

v0.1.39

Changelog

  • fa5b35ea867389cec33a9c82fffbd459ca8958e5 Fix padding overflow with PacketFactory
  • 791455129d4ef736c4009692e8ce108afe0fff14 Update module github.com/pion/rtp to v1.8.18
  • bfb8425f36083bd9e85e782e9b9aa8025cd30ef7 Update module github.com/pion/rtp to v1.8.17
  • 0e794c49c5c6f5f4d4eae2c2a3ac31451ac401f7 Do not use cyrillic letter in error message
  • 46631964a3bc420099cfbe39e1750fbc8cd100a0 Update module github.com/pion/rtp to v1.8.16

v0.1.38

What's Changed

New Contributors

Full Changelog: pion/interceptor@v0.1.37...v0.1.38

Commits
  • fa5b35e Fix padding overflow with PacketFactory
  • 7914551 Update module github.com/pion/rtp to v1.8.18
  • bfb8425 Update module github.com/pion/rtp to v1.8.17
  • 0e794c4 Do not use cyrillic letter in error message
  • 4663196 Update module github.com/pion/rtp to v1.8.16
  • 5003ed5 FEC interceptor enhancements
  • 8d3fc6d Test encoder with different payload sizes
  • 9ab7d95 Copilot review
  • 5a23b30 Fix malformed FlexFEC-03
  • f30b304 Improve memory efficiency
  • Additional commits viewable in compare view

Updates golang.org/x/net from 0.34.0 to 0.55.0

Commits
  • 7770ec4 go.mod: update golang.org/x dependencies
  • 4ece7b6 html: escape greater-than symbol in doctype identifiers
  • 08be507 html: improve Noah's Ark clause performance
  • a8fb2fe html: properly render fostered elements in foreign content
  • 0dc5b7a html: properly check namespace in "in body" any other end tag
  • a452f3c html: ignore duplicate attributes during tokenization
  • f865199 quic: fix appendMaxDataFrame erroneously accumulating sentLimit
  • 210ed3c quic: establish a "happened-before" relationship between stream write and read
  • ad8140e quic: fix buffer slicing when handling overlapping stream data
  • 23ee2ef http2: avoid API changes when built with go1.27
  • Additional commits viewable in compare view

Updates google.golang.org/grpc from 1.68.1 to 1.83.2

Release notes

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

Release 1.83.2

Security

  • server: Reject requests missing both :authority and Host headers with HTTP 400 and status Internal. (grpc/grpc-go#9365)

Release 1.83.1

Security

  • xds/rbac: Fix a bug where nested Principal or Permission rules with :scheme or grpc- prefixed header matchers were not rejected, which could cause DENY rules to fail open. (#9258)
  • xds/rbac: Fix a bug where the host header matcher was not being replaced with :authority in nested Principal or Permission rules. (#9258)
  • xds/rbac: Fix a bug where a header matcher whose name was not lowercase, such as X-Role, matched no header, which could cause DENY rules to fail open. (#9332)
  • xds/rbac: Fix a bug where a :scheme or grpc- prefixed header matcher was accepted when its name was not lowercase. (#9332)
  • xds/rbac: Fix a bug where a Host header matcher was not replaced with :authority. (#9332)

Performance

  • transport: Restrict memory overhead of buffering small data frames. (#9331)

Release 1.83.0

Security

  • server: Stop reading from connections when flooded by HTTP/2 frames to mitigate resource exhaustion. 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.
  • xds: Fix panic when parsing route header matchers configured with empty exact_match, prefix_match, or suffix_match strings. (#9223)

New Features

  • xds/googlec2p: Enable DirectPath over Interconnect support for on-premises clients via the force-xds target URI query parameter. (#9133)
  • xds: Enable xDS configuration to control which fields get propagated from ORCA backend metric reports to LRS load reports. (#9145)
  • authz: Add OnPolicyUpdate callback to FileWatcherOptions to notify when an authz policy is loaded or updated. (#9142)
  • xds: Add support for the GCP Authentication HTTP Filter, which automatically fetches and attaches GCP Service Account Identity JWT tokens to outgoing RPCs.
    • This feature can be enabled by setting environment variable GRPC_EXPERIMENTAL_XDS_GCP_AUTHENTICATION_FILTER=true. (#9119)
  • xds: Add support for xDS-based HTTP CONNECT proxies.
    • This feature can be enabled by setting environment variable GRPC_EXPERIMENTAL_XDS_HTTP_CONNECT=true. (#9151)
  • xds: Add support for contains_match in route header matchers. (#9223)

Bug Fixes

  • credentials/alts: Fix panic when processing malformed frames by validating that the message frame length exceeds the message type field size. (#9197)
  • grpc: Fix compilation on Plan 9 targets (GOOS=plan9), broken since v1.81.0. (#9255)

... (truncated)

Commits

Updates github.com/consensys/gnark-crypto from 0.12.1 to 0.18.1

Release notes

Sourced from github.com/consensys/gnark-crypto's releases.

v0.18.1

Full Changelog: Consensys-Incorporated/gnark-crypto@v0.18.0...v0.18.1

v0.18.0

What's Changed

New Contributors

Full Changelog: Consensys-Incorporated/gnark-crypto@v0.17.0...v0.18.0

v0.17.0

What's Changed

…19 updates

Bumps the security-updates group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/docker/cli](https://github.com/docker/cli) | `27.3.1+incompatible` | `29.2.0+incompatible` |
| [github.com/getkin/kin-openapi](https://github.com/getkin/kin-openapi) | `0.128.0` | `0.144.0` |
| [github.com/go-chi/chi/v5](https://github.com/go-chi/chi) | `5.1.0` | `5.2.4` |
| [github.com/golang/glog](https://github.com/golang/glog) | `1.2.2` | `1.2.4` |
| [github.com/gorilla/websocket](https://github.com/gorilla/websocket) | `1.4.2` | `1.5.3` |
| [github.com/pion/interceptor](https://github.com/pion/interceptor) | `0.1.37` | `0.1.39` |
| [golang.org/x/net](https://github.com/golang/net) | `0.34.0` | `0.55.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.68.1` | `1.83.2` |
| [github.com/consensys/gnark-crypto](https://github.com/consensys/gnark-crypto) | `0.12.1` | `0.18.1` |
| [github.com/golang-jwt/jwt/v4](https://github.com/golang-jwt/jwt) | `4.5.0` | `4.5.2` |
| [github.com/ipfs/go-libipfs](https://github.com/ipfs/go-libipfs) | `0.4.0` | `0.4.1` |
| [github.com/ipld/go-ipld-prime](https://github.com/ipld/go-ipld-prime) | `0.20.0` | `0.23.0` |
| [github.com/pion/dtls/v3](https://github.com/pion/dtls) | `3.0.4` | `3.1.4` |
| [github.com/pion/stun/v3](https://github.com/pion/stun) | `3.0.0` | `3.1.5` |
| [github.com/rabbitmq/amqp091-go](https://github.com/rabbitmq/amqp091-go) | `1.8.0` | `1.13.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp](https://github.com/open-telemetry/opentelemetry-go) | `1.33.0` | `1.43.0` |



Updates `github.com/docker/cli` from 27.3.1+incompatible to 29.2.0+incompatible
- [Commits](docker/cli@v27.3.1...v29.2.0)

Updates `github.com/getkin/kin-openapi` from 0.128.0 to 0.144.0
- [Release notes](https://github.com/getkin/kin-openapi/releases)
- [Commits](getkin/kin-openapi@v0.128.0...v0.144.0)

Updates `github.com/go-chi/chi/v5` from 5.1.0 to 5.2.4
- [Release notes](https://github.com/go-chi/chi/releases)
- [Changelog](https://github.com/go-chi/chi/blob/master/CHANGELOG.md)
- [Commits](go-chi/chi@v5.1.0...v5.2.4)

Updates `github.com/golang/glog` from 1.2.2 to 1.2.4
- [Release notes](https://github.com/golang/glog/releases)
- [Commits](golang/glog@v1.2.2...v1.2.4)

Updates `github.com/gorilla/websocket` from 1.4.2 to 1.5.3
- [Release notes](https://github.com/gorilla/websocket/releases)
- [Commits](gorilla/websocket@v1.4.2...v1.5.3)

Updates `github.com/pion/interceptor` from 0.1.37 to 0.1.39
- [Release notes](https://github.com/pion/interceptor/releases)
- [Commits](pion/interceptor@v0.1.37...v0.1.39)

Updates `golang.org/x/net` from 0.34.0 to 0.55.0
- [Commits](golang/net@v0.34.0...v0.55.0)

Updates `google.golang.org/grpc` from 1.68.1 to 1.83.2
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.68.1...v1.83.2)

Updates `github.com/consensys/gnark-crypto` from 0.12.1 to 0.18.1
- [Release notes](https://github.com/consensys/gnark-crypto/releases)
- [Changelog](https://github.com/Consensys-Incorporated/gnark-crypto/blob/master/CHANGELOG.md)
- [Commits](Consensys-Incorporated/gnark-crypto@v0.12.1...v0.18.1)

Updates `github.com/golang-jwt/jwt/v4` from 4.5.0 to 4.5.2
- [Release notes](https://github.com/golang-jwt/jwt/releases)
- [Commits](golang-jwt/jwt@v4.5.0...v4.5.2)

Updates `github.com/ipfs/go-libipfs` from 0.4.0 to 0.4.1
- [Release notes](https://github.com/ipfs/go-libipfs/releases)
- [Changelog](https://github.com/ipfs/boxo/blob/main/CHANGELOG.md)
- [Commits](ipfs/boxo@v0.4.0...v0.4.1)

Updates `github.com/ipld/go-ipld-prime` from 0.20.0 to 0.23.0
- [Release notes](https://github.com/ipld/go-ipld-prime/releases)
- [Changelog](https://github.com/ipld/go-ipld-prime/blob/master/CHANGELOG.md)
- [Commits](ipld/go-ipld-prime@v0.20.0...v0.23.0)

Updates `github.com/pion/dtls/v3` from 3.0.4 to 3.1.4
- [Release notes](https://github.com/pion/dtls/releases)
- [Commits](pion/dtls@v3.0.4...v3.1.4)

Updates `github.com/pion/stun/v3` from 3.0.0 to 3.1.5
- [Release notes](https://github.com/pion/stun/releases)
- [Commits](pion/stun@v3.0.0...v3.1.5)

Updates `github.com/rabbitmq/amqp091-go` from 1.8.0 to 1.13.0
- [Release notes](https://github.com/rabbitmq/amqp091-go/releases)
- [Changelog](https://github.com/rabbitmq/amqp091-go/blob/main/CHANGELOG.md)
- [Commits](rabbitmq/amqp091-go@v1.8.0...v1.13.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp` from 1.33.0 to 1.43.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.33.0...v1.43.0)

Updates `go.opentelemetry.io/otel/sdk` from 1.33.0 to 1.44.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.33.0...v1.44.0)

Updates `golang.org/x/crypto` from 0.32.0 to 0.55.0
- [Commits](golang/crypto@v0.32.0...v0.55.0)

Updates `golang.org/x/oauth2` from 0.24.0 to 0.36.0
- [Commits](golang/oauth2@v0.24.0...v0.36.0)

---
updated-dependencies:
- dependency-name: github.com/docker/cli
  dependency-version: 29.2.0+incompatible
  dependency-type: direct:production
  dependency-group: security-updates
- dependency-name: github.com/getkin/kin-openapi
  dependency-version: 0.144.0
  dependency-type: direct:production
  dependency-group: security-updates
- dependency-name: github.com/go-chi/chi/v5
  dependency-version: 5.2.4
  dependency-type: direct:production
  dependency-group: security-updates
- dependency-name: github.com/golang/glog
  dependency-version: 1.2.4
  dependency-type: direct:production
  dependency-group: security-updates
- dependency-name: github.com/gorilla/websocket
  dependency-version: 1.5.3
  dependency-type: direct:production
  dependency-group: security-updates
- dependency-name: github.com/pion/interceptor
  dependency-version: 0.1.39
  dependency-type: direct:production
  dependency-group: security-updates
- dependency-name: golang.org/x/net
  dependency-version: 0.55.0
  dependency-type: direct:production
  dependency-group: security-updates
- dependency-name: google.golang.org/grpc
  dependency-version: 1.83.2
  dependency-type: direct:production
  dependency-group: security-updates
- dependency-name: github.com/consensys/gnark-crypto
  dependency-version: 0.18.1
  dependency-type: indirect
  dependency-group: security-updates
- dependency-name: github.com/golang-jwt/jwt/v4
  dependency-version: 4.5.2
  dependency-type: indirect
  dependency-group: security-updates
- dependency-name: github.com/ipfs/go-libipfs
  dependency-version: 0.4.1
  dependency-type: indirect
  dependency-group: security-updates
- dependency-name: github.com/ipld/go-ipld-prime
  dependency-version: 0.23.0
  dependency-type: indirect
  dependency-group: security-updates
- dependency-name: github.com/pion/dtls/v3
  dependency-version: 3.1.4
  dependency-type: indirect
  dependency-group: security-updates
- dependency-name: github.com/pion/stun/v3
  dependency-version: 3.1.5
  dependency-type: indirect
  dependency-group: security-updates
- dependency-name: github.com/rabbitmq/amqp091-go
  dependency-version: 1.13.0
  dependency-type: indirect
  dependency-group: security-updates
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
  dependency-version: 1.43.0
  dependency-type: indirect
  dependency-group: security-updates
- dependency-name: go.opentelemetry.io/otel/sdk
  dependency-version: 1.44.0
  dependency-type: indirect
  dependency-group: security-updates
- dependency-name: golang.org/x/crypto
  dependency-version: 0.55.0
  dependency-type: indirect
  dependency-group: security-updates
- dependency-name: golang.org/x/oauth2
  dependency-version: 0.36.0
  dependency-type: indirect
  dependency-group: security-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Sep 9, 2026
@rickstaa

rickstaa commented Sep 9, 2026

Copy link
Copy Markdown
Member

@j0sh this works if it is stacked on #4053 and #4043. It builds, tests pass, and e2e for transcoding, live-video-to-video and live-runner pass.

@rickstaa
rickstaa requested a review from j0sh September 9, 2026 12:57
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 go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant