KEMBAR78
[chore] : Bump the go group across 2 directories with 7 updates by dependabot[bot] · Pull Request #346 · hashicorp/go-plugin · GitHub
Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 10, 2025

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

Package From To
github.com/golang/protobuf 1.5.3 1.5.4
github.com/hashicorp/go-hclog 0.14.1 1.6.3
github.com/hashicorp/yamux 0.1.1 0.1.2
github.com/jhump/protoreflect 1.15.1 1.17.0
github.com/oklog/run 1.0.0 1.1.0
google.golang.org/protobuf 1.36.1 1.36.6

Bumps the go group with 5 updates in the /internal/cmdrunner/testdata directory:

Package From To
github.com/golang/protobuf 1.5.3 1.5.4
github.com/hashicorp/go-hclog 0.14.1 1.6.3
github.com/hashicorp/yamux 0.1.1 0.1.2
github.com/oklog/run 1.0.0 1.1.0
google.golang.org/grpc 1.58.3 1.73.0

Updates github.com/golang/protobuf from 1.5.3 to 1.5.4

Release notes

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

v1.5.4

Notable changes

  • update descriptor.proto to latest version
Commits

Updates github.com/hashicorp/go-hclog from 0.14.1 to 1.6.3

Release notes

Sourced from github.com/hashicorp/go-hclog's releases.

Optional JSON escaping

What's Changed

New Contributors

Full Changelog: hashicorp/go-hclog@v1.6.2...v1.6.3

Fix level syncing

What's Changed

Full Changelog: hashicorp/go-hclog@v1.6.1...v1.6.2

Fix forcing color

What's Changed

Full Changelog: hashicorp/go-hclog@v1.6.0...v1.6.1

New level inheritance mode

This release adds the ability to have sub-loggers arrange themselves into a tree and sync the level changes downward in the tree.

What's Changed

New Contributors

Full Changelog: hashicorp/go-hclog@v1.5.0...v1.6.0

Better color and sublogger mods

What's Changed

New Contributors

... (truncated)

Commits
  • d12136a Merge pull request #141 from Ericwww/support-json-escape
  • cb8687c support configure json escape when log in json format
  • 5dbb615 Merge pull request #138 from hashicorp/update-go1.22
  • 1f0704a hclogvet: updates for go1.22
  • 3600f4a Conside if the level is to be used separately from if the levels should be ca...
  • 71d286f Merge pull request #136 from hashicorp/f-color-doc
  • a72e7ad Add skip for color test on windows because the test uses posix colors
  • 4a8b5e1 Fix colors not being enabled in some forced contexts.
  • 1ea3660 Add test of colors with ForceColor
  • 852f2c3 Merge pull request #134 from hashicorp/f-better-levels
  • Additional commits viewable in compare view

Updates github.com/hashicorp/yamux from 0.1.1 to 0.1.2

Release notes

Sourced from github.com/hashicorp/yamux's releases.

v0.1.2

Significant Changes

  • Fixed a case where Streams may continue to exist and block operations even after their Session has been closed. #127 ensures when a Session closes that blocking Stream operations exit as well.
  • Allow Reads on locally closed streams. Prior to #131 calling Close() and then Read() on a Stream would fail. Close should only indicate the Stream is done writing. The peer must call Close before Read considers the stream closed. See #131 for details.
  • Tests have been improved significantly. See below for details.

Full Changelog

New Contributors

Full Changelog: hashicorp/yamux@v0.1.1...v0.1.2

Commits
  • 17017e9 Allow half-closed reads and test against TCP/TLS connections (#131)
  • b5c3b44 Merge pull request #127 from lattwood/lattwood/handle_shutdown_edgecase
  • 84b3fc6 Drain the timer's channel if needed, to prevent memory leakage
  • eedcf95 Align Write timeout handling with Read timeout handling
  • 877b999 Streams should check for Session shutdown when waiting for data
  • 8bd691f Merge pull request #130 from hashicorp/rboyer/pass-race-and-lint
  • 88ad8a5 Apply suggestions from code review
  • 67ad8ea test: bump test timeout; ci runners are slow
  • e9a4163 test: add gha ci
  • 7bea36e test: bump slow test timeouts
  • Additional commits viewable in compare view

Updates github.com/jhump/protoreflect from 1.15.1 to 1.17.0

Release notes

Sourced from github.com/jhump/protoreflect's releases.

v1.17.0

This release deprecates some packages that have newer alternatives in the Protobuf runtime. It also includes some small additions to the grpcreflect and desc/sourceinfo packages. The rest of the changes are bug fixes.

"github.com/jhump/protoreflect/desc"

Changes:

  • This package is now deprecated. Though use of this package is still needed in order to use a handful of other packages in this repo, many usages should instead prefer the "google.golang.org/protobuf/reflect/protoreflect" package in the Protobuf runtime. In a v2 of this repo, this package will no longer be present.
  • A performance improvement was contributed that speeds up the MessageDescriptor.FindFieldByName method.

"github.com/jhump/protoreflect/desc/protoparse"

Changes and bugfixes:

  • This package is now deprecated. Most usages should instead prefer the "github.com/bufbuild/protocompile" package. There are some behavioral differences that we hope to address with additional API and enhancements to protocompile. But the protoparse package here is just a veneer on top of protocompile and we plan to do as little maintenance as possible here. In a v2 of this repo, this package will no longer be present.
  • The protocompile dependency has been updated to use a more recent version of that package. This addresses potential panics when calling Parser.ParseButDontLink.

"github.com/jhump/protoreflect/desc/sourceinfo"

Changes and bugfixes:

  • A possible panic when calling sourceinfo.GlobalFiles.FindDescriptorByName has been fixed.
  • Descriptors returned from the sourceinfo.GlobalFiles registry or from the various Wrap* functions could induce panics in user code if querying for non-existent elements. For example, calling messageDescriptor.Fields().ByNumber(123) could return a typed-nil value on failure, instead of a nil interface. This would result in nil-dereference panics if methods were called on this later. These have been fixed.
  • Descriptors returned from the sourceinfo.GlobalFiles registry and from the various Wrap* functions had concrete types defined in this package, not in the Protobuf runtime. But the protoreflect.Descriptor interface has a "do not implement" marker, indicating that concrete types implementing the interface should not be implemented outside of that module. To avoid future issues with the Protobuf runtime, there are no more implementations in this repo. Instead of wrapping other descriptor implementations (via embedding, and then overriding some methods), this package now builds new descriptors, using the protodesc package in the Protobuf runtime module.
  • The various Wrap* functions are now deprecated. The name is no longer accurate since they no longer return wrapper values. Also the new implementation, which builds new descriptors, can fail (though unlikely), but the existing signature of these functions did not allow for returning an error. So these functions could possibly panic in the face of malformed input descriptors. Users should use the new AddSourceInfoTo* versions of these functions instead.

Additions:

  • Adds AddSourceInfoTo* functions to replace the Wrap* functions. These functions augment the input descriptors by adding source code information to them.

"github.com/jhump/protoreflect/dynamic"

Changes:

  • This package is now deprecated. Most usages should instead prefer the "google.golang.org/protobuf/types/dynamicpb" package in the Protobuf runtime. In a v2 of this repo, this package will no longer be present.

"github.com/jhump/protoreflect/grpcreflect"

Additions:

  • Adds a new NewClientV1 function to return a client that uses v1 of the server reflection service. This fills the gap in the existing factory functions, NewClientV1Alpha and NewClientAuto.
  • Adds a new AllowFallbackResolver method to the *grpcreflect.Client type. This allows the client to be configured with an alternate resolver that can be used as a backup when trying to satisfy dependencies, for cases where the remote server is non-authoritative and unable to provide all of them.

v1.16.0

This release adds support for Protobuf Editions to many of the packages. Note, however, that the desc/protoparse package does not yet work to parse Protobuf Editions source files. This release also includes a handful of bug-fixes.

"github.com/jhump/protoreflect/desc"

Additions:

  • Adds an Edition method to *desc.FileDescriptor, which returns non-zero for files that use Protobuf Editions (instead of syntax "proto2" or "proto3").

Changes/fixes:

  • Fixes an issue in the various Wrap* functions, that could result in a descriptor hierarchy where the same descriptors were incorrectly present multiple times. This could happen if a file in the transitive dependency graph being wrapped had more than one incoming edge (e.g. same file appearing in import statements from two or more other files).

"github.com/jhump/protoreflect/desc/builder"

... (truncated)

Commits
  • 06e5c08 Update desc/sourceinfo to not wrap descriptors (#622)
  • 645b9dd Update protocompile, which fixes possible panic in ParseButDontLink (#621)
  • 9b68e7b Update styling of callouts in README; add info about trying out v2
  • 9fdd942 Allow grpcreflect to fall back to provided resolvers (#614)
  • baac311 update deps; reconcile couple of tests with latest protocompile (#613)
  • bed9136 desc/sourceinfo: fix panic when descriptor not found (#612)
  • cb1d268 perf: use concatenation to compute qualified name in MessageDescriptor.FindFi...
  • 1ba1524 Add deprecation notices to the packages in this repo that have newer replacem...
  • 48670ae desc: fix caching when wrapping protoreflect.Descriptor instances (#606)
  • aee3749 support editions in desc/builder package (#605)
  • Additional commits viewable in compare view

Updates github.com/oklog/run from 1.0.0 to 1.1.0

Release notes

Sourced from github.com/oklog/run's releases.

v1.1.0

The SignalHandler helper is added.

Commits

Updates google.golang.org/grpc from 1.58.3 to 1.61.0

Release notes

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

Release 1.73.0

New Features

  • balancer/ringhash: move LB policy from xds/internal to exported path to facilitate use without xds (#8249)
  • xds: enable least request LB policy by default. It can be disabled by setting GRPC_EXPERIMENTAL_ENABLE_LEAST_REQUEST=false in your environment. (#8253)
  • grpc: add a CallAuthority Call Option that can be used to overwrite the http :authority header on per-RPC basis. (#8068)
  • stats/opentelemetry: add trace event for name resolution delay. (#8074)
  • health: added List method to gRPC Health service. (#8155)
  • ringhash: implement features from gRFC A76. (#8159)
  • xds: add functionality to support SPIFFE Bundle Maps as roots of trust in XDS which can be enabled by setting GRPC_EXPERIMENTAL_XDS_MTLS_SPIFFE=true. (#8167, #8180, #8229, #8343)

Bug Fixes

  • xds: locality ID metric label is changed to make it consistent with gRFC A78. (#8256)
  • client: fail RPCs on the client when using extremely short contexts that expire before the grpc-timeout header is created. (#8312)
  • server: non-positive grpc-timeout header values are now rejected. This is consistent with the gRPC protocol spec. (#8290)
  • xds: fix reported error string when LRS load reporting interval is invalid. (#8224)

Performance Improvements

  • credentials/alts: improve read performance by optimizing buffer copies and allocations. (#8271)
  • server: improve performance of RPC handling by avoid a status proto copy (#8282)

Documentation

  • examples/features/opentelemetry: modify example to demonstrate tracing using OpenTelemtry plugin. (#8056)

Release 1.72.2

Bug Fixes

  • client: restore support for NO_PROXY environment variable when connecting to locally-resolved addresses (case 2 from gRFC A1). (#8329)
  • balancer/least_request: fix panic on resolver errors. (#8333)

Release 1.72.1

Bug Fixes

  • client: HTTP Proxy connections are no longer attempted for addresses with non-TCP network types. (#8215)
  • client: Fix bug that causes RPCs to fail with status INTERNAL instead of CANCELLED or DEADLINE_EXCEEDED when receiving a RST_STREAM frame in the middle of the gRPC message. (#8289)

Release 1.72.0

Dependencies

  • Minimum supported Go version is now 1.23 (#8108)

API Changes

  • resolver: add experimental AddressMapV2 with generics to ultimately replace AddressMap. Deprecate AddressMap for deletion (#8187)
  • resolver: convert EndpointMap in place to use generics (#8189)

... (truncated)

Commits

Updates google.golang.org/protobuf from 1.36.1 to 1.36.6

Updates github.com/golang/protobuf from 1.5.3 to 1.5.4

Release notes

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

v1.5.4

Notable changes

  • update descriptor.proto to latest version
Commits

Updates github.com/hashicorp/go-hclog from 0.14.1 to 1.6.3

Release notes

Sourced from github.com/hashicorp/go-hclog's releases.

Optional JSON escaping

What's Changed

New Contributors

Full Changelog: hashicorp/go-hclog@v1.6.2...v1.6.3

Fix level syncing

What's Changed

Full Changelog: hashicorp/go-hclog@v1.6.1...v1.6.2

Fix forcing color

What's Changed

Full Changelog: hashicorp/go-hclog@v1.6.0...v1.6.1

New level inheritance mode

This release adds the ability to have sub-loggers arrange themselves into a tree and sync the level changes downward in the tree.

What's Changed

New Contributors

Full Changelog: hashicorp/go-hclog@v1.5.0...v1.6.0

Better color and sublogger mods

What's Changed

New Contributors

... (truncated)

Commits
  • d12136a Merge pull request #141 from Ericwww/support-json-escape
  • cb8687c support configure json escape when log in json format
  • 5dbb615 Merge pull request #138 from hashicorp/update-go1.22
  • 1f0704a hclogvet: updates for go1.22
  • 3600f4a Conside if the level is to be used separately from if the levels should be ca...
  • 71d286f Merge pull request #136 from hashicorp/f-color-doc
  • a72e7ad Add skip for color test on windows because the test uses posix colors
  • 4a8b5e1 Fix colors not being enabled in some forced contexts.
  • 1ea3660 Add test of colors with ForceColor
  • 852f2c3 Merge pull request #134 from hashicorp/f-better-levels
  • Additional commits viewable in compare view

Updates github.com/hashicorp/yamux from 0.1.1 to 0.1.2

Release notes

Sourced from github.com/hashicorp/yamux's releases.

v0.1.2

Significant Changes

  • Fixed a case where Streams may continue to exist and block operations even after their Session has been closed. #127 ensures when a Session closes that blocking Stream operations exit as well.
  • Allow Reads on locally closed streams. Prior to #131 calling Close() and then Read() on a Stream would fail. Close should only indicate the Stream is done writing. The peer must call Close before Read considers the stream closed. See #131 for details.
  • Tests have been improved significantly. See below for details.

Full Changelog

New Contributors

Full Changelog: hashicorp/yamux@v0.1.1...v0.1.2

Commits
  • 17017e9 Allow half-closed reads and test against TCP/TLS connections (#131)
  • b5c3b44 Merge pull request #127 from lattwood/lattwood/handle_shutdown_edgecase
  • 84b3fc6 Drain the timer's channel if needed, to prevent memory leakage
  • eedcf95 Align Write timeout handling with Read timeout handling
  • 877b999 Streams should check for Session shutdown when waiting for data
  • 8bd691f Merge pull request #130 from hashicorp/rboyer/pass-race-and-lint
  • 88ad8a5 Apply suggestions from code review
  • 67ad8ea test: bump test timeout; ci runners are slow
  • e9a4163 test: add gha ci
  • 7bea36e test: bump slow test timeouts
  • Additional commits viewable in compare view

Updates github.com/oklog/run from 1.0.0 to 1.1.0

Release notes

Sourced from github.com/oklog/run's releases.

v1.1.0

The SignalHandler helper is added.

Commits

Updates google.golang.org/grpc from 1.58.3 to 1.73.0

Release notes

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

Release 1.73.0

New Features

  • balancer/ringhash: move LB policy from xds/internal to exported path to facilitate use without xds (#8249)
  • xds: enable least request LB policy by default. It can be disabled by setting GRPC_EXPERIMENTAL_ENABLE_LEAST_REQUEST=false in your environment. (#8253)
  • grpc: add a CallAuthority Call Option that can be used to overwrite the http :authority header on per-RPC basis. (#8068)
  • stats/opentelemetry: add trace event for name resolution delay. (#8074)
  • health: added List method to gRPC Health service. (#8155)
  • ringhash: implement features from gRFC A76. (#8159)
  • xds: add functionality to support SPIFFE Bundle Maps as roots of trust in XDS which can be enabled by setting GRPC_EXPERIMENTAL_XDS_MTLS_SPIFFE=true. (#8167, #8180, #8229, #8343)

Bug Fixes

  • xds: locality ID metric label is changed to make it consistent with gRFC A78. (#8256)
  • client: fail RPCs on the client when using extremely short contexts that expire before the grpc-timeout header is created. (#8312)
  • server: non-positive grpc-timeout header values are now rejected. This is consistent with the gRPC protocol spec. (#8290)
  • xds: fix reported error string when LRS load reporting interval is invalid. (#8224)

Performance Improvements

  • credentials/alts: improve read performance by optimizing buffer copies and allocations. (#8271)
  • server: improve performance of RPC handling by avoid a status proto copy (#8282)

Documentation

  • examples/features/opentelemetry: modify example to demonstrate tracing using OpenTelemtry plugin. (#8056)

Release 1.72.2

Bug Fixes

  • client: restore support for NO_PROXY environment variable when connecting to locally-resolved addresses (case 2 from gRFC A1). (#8329)
  • balancer/least_request: fix panic on resolver errors. (#8333)

Release 1.72.1

Bug Fixes

  • client: HTTP Proxy connections are no longer attempted for addresses with non-TCP network types. (#8215)
  • client: Fix bug that causes RPCs to fail with status INTERNAL instead of CANCELLED or DEADLINE_EXCEEDED when receiving a RST_STREAM frame in the middle of the gRPC message. (#8289)

Release 1.72.0

Dependencies

  • Minimum supported Go version is now 1.23 (#8108)

API Changes

  • resolver: add experimental AddressMapV2 with generics to ultimately replace AddressMap. Deprecate AddressMap for deletion (#8187)
  • resolver: convert EndpointMap in place to use generics (#8189)

... (truncated)

Commits

Updates google.golang.org/protobuf from 1.36.1 to 1.36.6

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 10, 2025
@dependabot dependabot bot requested a review from a team as a code owner June 10, 2025 13:37
@dependabot dependabot bot added go Pull requests that update go code dependencies Pull requests that update a dependency file labels Jun 10, 2025
@dependabot dependabot bot force-pushed the dependabot/go_modules/go-6da22c75d3 branch from 7e0587c to 5e43bdb Compare June 11, 2025 13:39
Bumps the go group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/golang/protobuf](https://github.com/golang/protobuf) | `1.5.3` | `1.5.4` |
| [github.com/hashicorp/go-hclog](https://github.com/hashicorp/go-hclog) | `0.14.1` | `1.6.3` |
| [github.com/hashicorp/yamux](https://github.com/hashicorp/yamux) | `0.1.1` | `0.1.2` |
| [github.com/jhump/protoreflect](https://github.com/jhump/protoreflect) | `1.15.1` | `1.17.0` |
| [github.com/oklog/run](https://github.com/oklog/run) | `1.0.0` | `1.1.0` |
| google.golang.org/protobuf | `1.36.1` | `1.36.6` |

Bumps the go group with 5 updates in the /internal/cmdrunner/testdata directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/golang/protobuf](https://github.com/golang/protobuf) | `1.5.3` | `1.5.4` |
| [github.com/hashicorp/go-hclog](https://github.com/hashicorp/go-hclog) | `0.14.1` | `1.6.3` |
| [github.com/hashicorp/yamux](https://github.com/hashicorp/yamux) | `0.1.1` | `0.1.2` |
| [github.com/oklog/run](https://github.com/oklog/run) | `1.0.0` | `1.1.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.58.3` | `1.73.0` |



Updates `github.com/golang/protobuf` from 1.5.3 to 1.5.4
- [Release notes](https://github.com/golang/protobuf/releases)
- [Commits](golang/protobuf@v1.5.3...v1.5.4)

Updates `github.com/hashicorp/go-hclog` from 0.14.1 to 1.6.3
- [Release notes](https://github.com/hashicorp/go-hclog/releases)
- [Commits](hashicorp/go-hclog@v0.14.1...v1.6.3)

Updates `github.com/hashicorp/yamux` from 0.1.1 to 0.1.2
- [Release notes](https://github.com/hashicorp/yamux/releases)
- [Commits](hashicorp/yamux@v0.1.1...v0.1.2)

Updates `github.com/jhump/protoreflect` from 1.15.1 to 1.17.0
- [Release notes](https://github.com/jhump/protoreflect/releases)
- [Commits](jhump/protoreflect@v1.15.1...v1.17.0)

Updates `github.com/oklog/run` from 1.0.0 to 1.1.0
- [Release notes](https://github.com/oklog/run/releases)
- [Commits](oklog/run@v1.0.0...v1.1.0)

Updates `google.golang.org/grpc` from 1.58.3 to 1.61.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.58.3...v1.73.0)

Updates `google.golang.org/protobuf` from 1.36.1 to 1.36.6

Updates `github.com/golang/protobuf` from 1.5.3 to 1.5.4
- [Release notes](https://github.com/golang/protobuf/releases)
- [Commits](golang/protobuf@v1.5.3...v1.5.4)

Updates `github.com/hashicorp/go-hclog` from 0.14.1 to 1.6.3
- [Release notes](https://github.com/hashicorp/go-hclog/releases)
- [Commits](hashicorp/go-hclog@v0.14.1...v1.6.3)

Updates `github.com/hashicorp/yamux` from 0.1.1 to 0.1.2
- [Release notes](https://github.com/hashicorp/yamux/releases)
- [Commits](hashicorp/yamux@v0.1.1...v0.1.2)

Updates `github.com/oklog/run` from 1.0.0 to 1.1.0
- [Release notes](https://github.com/oklog/run/releases)
- [Commits](oklog/run@v1.0.0...v1.1.0)

Updates `google.golang.org/grpc` from 1.58.3 to 1.73.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.58.3...v1.73.0)

Updates `google.golang.org/protobuf` from 1.36.1 to 1.36.6

---
updated-dependencies:
- dependency-name: github.com/golang/protobuf
  dependency-version: 1.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/go-hclog
  dependency-version: 1.6.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: go
- dependency-name: github.com/hashicorp/yamux
  dependency-version: 0.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/jhump/protoreflect
  dependency-version: 1.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/oklog/run
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: google.golang.org/grpc
  dependency-version: 1.61.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/golang/protobuf
  dependency-version: 1.5.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/go-hclog
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: go
- dependency-name: github.com/hashicorp/yamux
  dependency-version: 0.1.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/oklog/run
  dependency-version: 1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: google.golang.org/grpc
  dependency-version: 1.73.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/go-6da22c75d3 branch from 5e43bdb to 4bdfb31 Compare June 15, 2025 15:27
@KaushikiAnand KaushikiAnand merged commit ba61a65 into main Jun 16, 2025
3 checks passed
@dependabot dependabot bot deleted the dependabot/go_modules/go-6da22c75d3 branch June 16, 2025 09:12
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