Skip to content

Bump the go group across 3 directories with 13 updates#10

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/go-df170b17c0
Open

Bump the go group across 3 directories with 13 updates#10
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/go-df170b17c0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 8, 2026

Bumps the go group with 8 updates in the / directory:

Package From To
github.com/grpc-ecosystem/grpc-gateway/v2 2.27.4 2.27.7
github.com/hashicorp/go-kms-wrapping/v2 2.0.19 2.0.20
github.com/lib/pq 1.10.9 1.11.1
github.com/miekg/dns 1.1.70 1.1.72
github.com/pires/go-proxyproto 0.8.1 0.10.0
golang.org/x/net 0.48.0 0.49.0
golang.org/x/tools 0.40.0 0.41.0
google.golang.org/grpc/cmd/protoc-gen-go-grpc 1.6.0 1.6.1

Bumps the go group with 1 update in the /api directory: github.com/hashicorp/go-kms-wrapping/v2.
Bumps the go group with 2 updates in the /sdk directory: github.com/grpc-ecosystem/grpc-gateway/v2 and github.com/hashicorp/go-kms-wrapping/v2.

Updates github.com/grpc-ecosystem/grpc-gateway/v2 from 2.27.4 to 2.27.7

Release notes

Sourced from github.com/grpc-ecosystem/grpc-gateway/v2's releases.

v2.27.7

Re-release of v2.26.7 as v2.27.7 for correct semver ordering.

v2.27.6

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.5...v2.27.6

v2.27.5

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.4...v2.27.5

Commits
  • 3406565 Update gorelease base version to v2.27.7
  • 8be4c86 Revert "feat(generator): harden opaque imports and fix snake case to go casin...
  • 63cba54 chore(deps): update googleapis digest to 46c183b (#6298)
  • 37163bf chore(deps): update actions/cache digest to cdf6c1f (#6297)
  • 64aa277 chore(deps): update googleapis digest to fe6c208 (#6296)
  • 7181022 chore(deps): update dependency bazel_features to v1.41.0 (#6293)
  • c39289d chore(deps): update dependency com_github_bazelbuild_buildtools to v8.5.1 (#6...
  • 6e3b4f3 Update gorelease base version to v2.27.6
  • e380725 chore(deps): update docker/login-action digest to c94ce9f (#6291)
  • bba4e0a fix(protoc-gen-openapiv2): prevent panic when generating OpenAPI for multiple...
  • Additional commits viewable in compare view

Updates github.com/hashicorp/go-kms-wrapping/v2 from 2.0.19 to 2.0.20

Commits

Updates github.com/lib/pq from 1.10.9 to 1.11.1

Release notes

Sourced from github.com/lib/pq's releases.

v1.11.1

This fixes two regressions present in the v1.11.0 release:

  • Fix build on 32bit systems, Windows, and Plan 9 (#1253).

  • Named []byte types and pointers to []byte (e.g. *[]byte, json.RawMessage) would be treated as an array instead of bytea (#1252).

#1252: lib/pq#1252 #1253: lib/pq#1253

v1.11.0

This version of pq requires Go 1.21 or newer.

pq now supports only maintained PostgreSQL releases, which is PostgreSQL 14 and newer. Previously PostgreSQL 8.4 and newer were supported.

Features

  • The pq.Error.Error() text includes the position of the error (if reported by PostgreSQL) and SQLSTATE code (#1219, #1224):

    pq: column "columndoesntexist" does not exist at column 8 (42703)
    pq: syntax error at or near ")" at position 2:71 (42601)
    
  • The pq.Error.ErrorWithDetail() method prints a more detailed multiline message, with the Detail, Hint, and error position (if any) (#1219):

    ERROR:   syntax error at or near ")" (42601)
    CONTEXT: line 12, column 1:
    
     10 |     name           varchar,
     11 |     version        varchar,
     12 | );
          ^
    

  • Add Config, NewConfig(), and NewConnectorConfig() to supply connection details in a more structured way (#1240).

  • Support hostaddr and $PGHOSTADDR (#1243).

  • Support multiple values in host, port, and hostaddr, which are each tried in order, or randomly if load_balance_hosts=random is set (#1246).

  • Support target_session_attrs connection parameter (#1246).

  • Support [sslnegotiation] to use SSL without negotiation (#1180).

  • Allow using a custom tls.Config, for example for encrypted keys (#1228).

  • Add PQGO_DEBUG=1 print the communication with PostgreSQL to stderr, to aid in debugging, testing, and bug reports (#1223).

  • Add support for NamedValueChecker interface (#1125, #1238).

Fixes

... (truncated)

Changelog

Sourced from github.com/lib/pq's changelog.

v1.11.1 (2025-01-29)

This fixes two regressions present in the v1.11.0 release:

  • Fix build on 32bit systems, Windows, and Plan 9 (#1253).

  • Named []byte types and pointers to []byte (e.g. *[]byte, json.RawMessage) would be treated as an array instead of bytea (#1252).

#1252: lib/pq#1252 #1253: lib/pq#1253

v1.11.0 (2025-01-28)

This version of pq requires Go 1.21 or newer.

pq now supports only maintained PostgreSQL releases, which is PostgreSQL 14 and newer. Previously PostgreSQL 8.4 and newer were supported.

Features

  • The pq.Error.Error() text includes the position of the error (if reported by PostgreSQL) and SQLSTATE code (#1219, #1224):

    pq: column "columndoesntexist" does not exist at column 8 (42703)
    pq: syntax error at or near ")" at position 2:71 (42601)
    
  • The pq.Error.ErrorWithDetail() method prints a more detailed multiline message, with the Detail, Hint, and error position (if any) (#1219):

    ERROR:   syntax error at or near ")" (42601)
    CONTEXT: line 12, column 1:
    
     10 |     name           varchar,
     11 |     version        varchar,
     12 | );
          ^
    

  • Add Config, NewConfig(), and NewConnectorConfig() to supply connection details in a more structured way (#1240).

  • Support hostaddr and $PGHOSTADDR (#1243).

  • Support multiple values in host, port, and hostaddr, which are each tried in order, or randomly if load_balance_hosts=random is set (#1246).

  • Support target_session_attrs connection parameter (#1246).

  • Support [sslnegotiation] to use SSL without negotiation (#1180).

... (truncated)

Commits
  • eec526c Release v1.11.1 (#1255)
  • 1928a1d Fix []byte types incorrectly converted to PostgreSQL array (#1252)
  • 9e2aa8e Run staticcheck on all GOOS/GOARCH combinations
  • c9320c4 Fix build on Windows and Plan9
  • 2809526 Fix build on 32bit systems
  • 8e88f7e Release 1.11.0
  • 0ad3049 Handle pre-protocol errors to prevent memory exhaustion
  • f1fae2e Add pqtest.Fake.Close()
  • 3815d03 Remove assumption that the auth response is AuthenticateOk
  • 589ad43 Implement load_balance_hosts=random
  • Additional commits viewable in compare view

Updates github.com/miekg/dns from 1.1.70 to 1.1.72

Commits

Updates github.com/pires/go-proxyproto from 0.8.1 to 0.10.0

Release notes

Sourced from github.com/pires/go-proxyproto's releases.

v0.10.0

What's Changed

Big shout-out to @​clementnuss @​bollenberger and @​AlexanderYastrebov for contributions that didn't get entirely merged but their critique was key to get buffer reading bug fixes and improvements out.

Full Changelog: pires/go-proxyproto@v0.9.2...v0.10.0

v0.9.2

What's Changed

Full Changelog: pires/go-proxyproto@v0.9.1...v0.9.2

v0.9.1

What's Changed

Full Changelog: pires/go-proxyproto@v0.9.0...v0.9.1

v0.9.0

What's Changed

New Contributors

Full Changelog: pires/go-proxyproto@v0.8.1...v0.9.0

Commits
  • dc4cc0d tests: implement example tests for Listener and Conn
  • d130170 protocol: allow per-listener and per-conn custom read buffer size
  • 3622fe1 http2: return http.ErrServerClosed in Server.Serve
  • ef82c3b v2: drop unnecessary io.LimitReader in parseVersion2
  • 407de2c readme: fix coveralls badge
  • d2d7dc3 protocol: test read/write post buffer gc
  • 2605efb protocol: fix potential nil panic in Conn.WriteTo
  • 64c5539 protocol: ensure unbuffered reads on the underlying net.Conn in TestConnReadH...
  • 58fbb82 protocol: don't buffer underlying conn reads after parsing header
  • 2eefd49 test: Read() truncation issue for large headers
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.46.0 to 0.47.0

Commits
  • 506e022 go.mod: update golang.org/x dependencies
  • 7dacc38 chacha20poly1305: error out in fips140=only mode
  • See full diff in compare view

Updates golang.org/x/net from 0.48.0 to 0.49.0

Commits
  • d977772 go.mod: update golang.org/x dependencies
  • eea413e internal/http3: use go1.25 synctest.Test instead of go1.24 synctest.Run
  • 9ace223 websocket: add missing call to resp.Body.Close
  • 7d3dbb0 http2: buffer the most recently received PRIORITY_UPDATE frame
  • See full diff in compare view

Updates golang.org/x/sys from 0.39.0 to 0.40.0

Commits
  • 2f44229 sys/cpu: add symbolic constants for remaining cpuid bits
  • e5770d2 sys/cpu: use symbolic names for masks
  • 714a44c sys/cpu: modify x86 port to match what internal/cpu does
  • See full diff in compare view

Updates golang.org/x/term from 0.38.0 to 0.39.0

Commits

Updates golang.org/x/text from 0.32.0 to 0.33.0

Commits

Updates golang.org/x/tools from 0.40.0 to 0.41.0

Commits
  • 2ad2b30 go.mod: update golang.org/x dependencies
  • 5832cce internal/diff/lcs: introduce line diffs
  • 67c4257 gopls/internal/golang: Definition: fix Windows bug wrt //go:embed
  • 12c1f04 gopls/completion: check Selection invariant
  • 6d87185 internal/server: add vulncheck scanning after vulncheck prompt
  • 0c3a1fe go/ast/inspector: FindByPos returns the first innermost node
  • ca281cf go/analysis/passes/ctrlflow: add noreturn funcs from popular pkgs
  • 09c21a9 gopls/internal/analysis/unusedfunc: remove warnings for unused enum consts
  • 03cb455 internal/modindex: suppress missing modcacheindex message
  • 15d13e8 gopls/internal/util/typesutil: refine EnclosingSignature bug.Report
  • Additional commits viewable in compare view

Updates google.golang.org/genproto/googleapis/api from 0.0.0-20251222181119-0a764e51fe1b to 0.0.0-20260128011058-8636f8732409

Commits

Updates google.golang.org/grpc/cmd/protoc-gen-go-grpc from 1.6.0 to 1.6.1

Release notes

Sourced from google.golang.org/grpc/cmd/protoc-gen-go-grpc's releases.

protoc-gen-go-grpc v1.6.1

Bug Fixes

  • Upgrade protobuf dependency to v1.36.11 to fix missing go_package errors for Editions feature protos (e.g. cpp_features.proto). (#8853)
Commits
  • 830c909 cmd/protoc-gen-go-grpc: bump -version to 1.6.1 for release (#8879)
  • b7b1cce examples: Poll for expected server logs in test (#8871)
  • 2abe1f0 github: Add config for Gemini code assist (#8873)
  • 46350a7 channelz: Regenerate proto (#8872)
  • 49e224f xds/googlec2p: Revert PR 8829 that removed SetFallbackBootstrapConfig (#8869)
  • 61d569d *: Implementation of weighted random shuffling (A113) (#8864)
  • 7985bb4 rls: Fix flaky test TestPickerUpdateOnDataCacheSizeDecrease (#8856)
  • 3e475d7 xdsclient: add test for custom xDS resource subscription (#8834)
  • 0dc1bcd client/picker: log loop to V(2) (#8863)
  • 69b542a credentials/tls: verify overwritten authority against only leaf certificate (...
  • Additional commits viewable in compare view

Updates github.com/hashicorp/go-kms-wrapping/v2 from 2.0.19 to 2.0.20

Commits

Updates github.com/grpc-ecosystem/grpc-gateway/v2 from 2.27.4 to 2.27.7

Release notes

Sourced from github.com/grpc-ecosystem/grpc-gateway/v2's releases.

v2.27.7

Re-release of v2.26.7 as v2.27.7 for correct semver ordering.

v2.27.6

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.5...v2.27.6

v2.27.5

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.4...v2.27.5

Commits
  • 3406565 Update gorelease base version to v2.27.7
  • 8be4c86 Revert "feat(generator): harden opaque imports and fix snake case to go casin...
  • 63cba54 chore(deps): update googleapis digest to 46c183b (#6298)
  • 37163bf chore(deps): update actions/cache digest to cdf6c1f (#6297)
  • 64aa277 chore(deps): update googleapis digest to fe6c208 (#6296)
  • 7181022 chore(deps): update dependency bazel_features to v1.41.0 (#6293)
  • c39289d chore(deps): update dependency com_github_bazelbuild_buildtools to v8.5.1 (#6...
  • 6e3b4f3 Update gorelease base version to v2.27.6
  • e380725 chore(deps): update docker/login-action digest to c94ce9f (#6291)
  • bba4e0a fix(protoc-gen-openapiv2): prevent panic when generating OpenAPI for multiple...
  • Additional commits viewable in compare view

Updates github.com/hashicorp/go-kms-wrapping/v2 from 2.0.19 to 2.0.20

Commits

Updates google.golang.org/genproto/googleapis/api from 0.0.0-20251222181119-0a764e51fe1b to 0.0.0-20260128011058-8636f8732409

Commits

Updates github.com/hashicorp/go-kms-wrapping/v2 from 2.0.19 to 2.0.20

Commits

Updates github.com/hashicorp/go-kms-wrapping/v2 from 2.0.19 to 2.0.20

Commits

Updates github.com/hashicorp/go-kms-wrapping/v2 from 2.0.19 to 2.0.20

Commits

Updates github.com/grpc-ecosystem/grpc-gateway/v2 from 2.27.4 to 2.27.7

Release notes

Sourced from github.com/grpc-ecosystem/grpc-gateway/v2's releases.

v2.27.7

Re-release of v2.26.7 as v2.27.7 for correct semver ordering.

v2.27.6

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.5...v2.27.6

v2.27.5

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.4...v2.27.5

Commits
  • 3406565 Update gorelease base version to v2.27.7
  • 8be4c86 Revert "feat(generator): harden opaque imports and fix snake case to go casin...
  • 63cba54 chore(deps): update googleapis digest to 46c183b (#6298)
  • 37163bf chore(deps): update actions/cache digest to cdf6c1f (#6297)
  • 64aa277 chore(deps): update googleapis digest to fe6c208 (#6296)
  • 7181022 chore(deps): update dependency bazel_features to v1.41.0 (#6293)
  • c39289d chore(deps): update dependency com_github_bazelbuild_buildtools to v8.5.1 (#6...
  • 6e3b4f3 Update gorelease base version to v2.27.6
  • e380725 chore(deps): update docker/login-action digest to c94ce9f (#6291)
  • bba4e0a fix(protoc-gen-openapiv2): prevent panic when generating OpenAPI for multiple...
  • Additional commits viewable in compare view

Updates github.com/hashicorp/go-kms-wrapping/v2 from 2.0.19 to 2.0.20

Commits

Updates google.golang.org/genproto/googleapis/api from 0.0.0-20251222181119-0a764e51fe1b to 0.0.0-20260128011058-8636f8732409

Commits

Updates github.com/hashicorp/go-kms-wrapping/v2 from 2.0.19 to 2.0.20

Commits

Updates github.com/grpc-ecosystem/grpc-gateway/v2 from 2.27.4 to 2.27.7

Release notes

Sourced from github.com/grpc-ecosystem/grpc-gateway/v2's releases.

v2.27.7

Re-release of v2.26.7 as v2.27.7 for correct semver ordering.

v2.27.6

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.5...v2.27.6

v2.27.5

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.4...v2.27.5

Commits
  • 3406565 Update gorelease base version to v2.27.7
  • 8be4c86 Revert "feat(generator): harden opaque imports and fix snake case to go casin...
  • 63cba54 chore(deps): update googleapis digest to 46c183b (#6298)
  • 37163bf chore(deps): update actions/cache digest to cdf6c1f (#6297)
  • 64aa277 chore(deps): update googleapis digest to fe6c208 (#6296)
  • 7181022 chore(deps): update dependency bazel_features to v1.41.0 (#6293)
  • c39289d chore(deps): update dependency com_github_bazelbuild_buildtools to v8.5.1 (#6...
  • 6e3b4f3 Update gorelease base version to v2.27.6
  • e380725 chore(deps): update docker/login-action digest to c94ce9f (#6291)
  • bba4e0a fix(protoc-gen-openapiv2): prevent panic when generating OpenAPI for multiple...
  • Additional commits viewable in compare view

Updates github.com/hashicorp/go-kms-wrapping/v2 from 2.0.19 to 2.0.20

Commits

Bumps the go group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/grpc-ecosystem/grpc-gateway/v2](https://github.com/grpc-ecosystem/grpc-gateway) | `2.27.4` | `2.27.7` |
| [github.com/hashicorp/go-kms-wrapping/v2](https://github.com/hashicorp/go-kms-wrapping) | `2.0.19` | `2.0.20` |
| [github.com/lib/pq](https://github.com/lib/pq) | `1.10.9` | `1.11.1` |
| [github.com/miekg/dns](https://github.com/miekg/dns) | `1.1.70` | `1.1.72` |
| [github.com/pires/go-proxyproto](https://github.com/pires/go-proxyproto) | `0.8.1` | `0.10.0` |
| [golang.org/x/net](https://github.com/golang/net) | `0.48.0` | `0.49.0` |
| [golang.org/x/tools](https://github.com/golang/tools) | `0.40.0` | `0.41.0` |
| [google.golang.org/grpc/cmd/protoc-gen-go-grpc](https://github.com/grpc/grpc-go) | `1.6.0` | `1.6.1` |

Bumps the go group with 1 update in the /api directory: [github.com/hashicorp/go-kms-wrapping/v2](https://github.com/hashicorp/go-kms-wrapping).
Bumps the go group with 2 updates in the /sdk directory: [github.com/grpc-ecosystem/grpc-gateway/v2](https://github.com/grpc-ecosystem/grpc-gateway) and [github.com/hashicorp/go-kms-wrapping/v2](https://github.com/hashicorp/go-kms-wrapping).


Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.4 to 2.27.7
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.4...v2.27.7)

Updates `github.com/hashicorp/go-kms-wrapping/v2` from 2.0.19 to 2.0.20
- [Commits](hashicorp/go-kms-wrapping@v2.0.19...v2.0.20)

Updates `github.com/lib/pq` from 1.10.9 to 1.11.1
- [Release notes](https://github.com/lib/pq/releases)
- [Changelog](https://github.com/lib/pq/blob/master/CHANGELOG.md)
- [Commits](lib/pq@v1.10.9...v1.11.1)

Updates `github.com/miekg/dns` from 1.1.70 to 1.1.72
- [Commits](miekg/dns@v1.1.70...v1.1.72)

Updates `github.com/pires/go-proxyproto` from 0.8.1 to 0.10.0
- [Release notes](https://github.com/pires/go-proxyproto/releases)
- [Commits](pires/go-proxyproto@v0.8.1...v0.10.0)

Updates `golang.org/x/crypto` from 0.46.0 to 0.47.0
- [Commits](golang/crypto@v0.46.0...v0.47.0)

Updates `golang.org/x/net` from 0.48.0 to 0.49.0
- [Commits](golang/net@v0.48.0...v0.49.0)

Updates `golang.org/x/sys` from 0.39.0 to 0.40.0
- [Commits](golang/sys@v0.39.0...v0.40.0)

Updates `golang.org/x/term` from 0.38.0 to 0.39.0
- [Commits](golang/term@v0.38.0...v0.39.0)

Updates `golang.org/x/text` from 0.32.0 to 0.33.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.32.0...v0.33.0)

Updates `golang.org/x/tools` from 0.40.0 to 0.41.0
- [Release notes](https://github.com/golang/tools/releases)
- [Commits](golang/tools@v0.40.0...v0.41.0)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20251222181119-0a764e51fe1b to 0.0.0-20260128011058-8636f8732409
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/grpc/cmd/protoc-gen-go-grpc` from 1.6.0 to 1.6.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.6.0...cmd/protoc-gen-go-grpc/v1.6.1)

Updates `github.com/hashicorp/go-kms-wrapping/v2` from 2.0.19 to 2.0.20
- [Commits](hashicorp/go-kms-wrapping@v2.0.19...v2.0.20)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.4 to 2.27.7
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.4...v2.27.7)

Updates `github.com/hashicorp/go-kms-wrapping/v2` from 2.0.19 to 2.0.20
- [Commits](hashicorp/go-kms-wrapping@v2.0.19...v2.0.20)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20251222181119-0a764e51fe1b to 0.0.0-20260128011058-8636f8732409
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `github.com/hashicorp/go-kms-wrapping/v2` from 2.0.19 to 2.0.20
- [Commits](hashicorp/go-kms-wrapping@v2.0.19...v2.0.20)

Updates `github.com/hashicorp/go-kms-wrapping/v2` from 2.0.19 to 2.0.20
- [Commits](hashicorp/go-kms-wrapping@v2.0.19...v2.0.20)

Updates `github.com/hashicorp/go-kms-wrapping/v2` from 2.0.19 to 2.0.20
- [Commits](hashicorp/go-kms-wrapping@v2.0.19...v2.0.20)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.4 to 2.27.7
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.4...v2.27.7)

Updates `github.com/hashicorp/go-kms-wrapping/v2` from 2.0.19 to 2.0.20
- [Commits](hashicorp/go-kms-wrapping@v2.0.19...v2.0.20)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20251222181119-0a764e51fe1b to 0.0.0-20260128011058-8636f8732409
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `github.com/hashicorp/go-kms-wrapping/v2` from 2.0.19 to 2.0.20
- [Commits](hashicorp/go-kms-wrapping@v2.0.19...v2.0.20)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.4 to 2.27.7
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.4...v2.27.7)

Updates `github.com/hashicorp/go-kms-wrapping/v2` from 2.0.19 to 2.0.20
- [Commits](hashicorp/go-kms-wrapping@v2.0.19...v2.0.20)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20251222181119-0a764e51fe1b to 0.0.0-20260128011058-8636f8732409
- [Commits](https://github.com/googleapis/go-genproto/commits)

---
updated-dependencies:
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/go-kms-wrapping/v2
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/lib/pq
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/miekg/dns
  dependency-version: 1.1.72
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/pires/go-proxyproto
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: golang.org/x/crypto
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: golang.org/x/net
  dependency-version: 0.49.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: golang.org/x/sys
  dependency-version: 0.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: golang.org/x/term
  dependency-version: 0.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: golang.org/x/text
  dependency-version: 0.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: golang.org/x/tools
  dependency-version: 0.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-version: 0.0.0-20260128011058-8636f8732409
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: google.golang.org/grpc/cmd/protoc-gen-go-grpc
  dependency-version: 1.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/go-kms-wrapping/v2
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/go-kms-wrapping/v2
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-version: 0.0.0-20260128011058-8636f8732409
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/go-kms-wrapping/v2
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/go-kms-wrapping/v2
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/go-kms-wrapping/v2
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/go-kms-wrapping/v2
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-version: 0.0.0-20260128011058-8636f8732409
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/go-kms-wrapping/v2
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/go-kms-wrapping/v2
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-version: 0.0.0-20260128011058-8636f8732409
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
...

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 Feb 8, 2026
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.

0 participants