Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the golang group across 1 directory with 19 updates #220

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 14, 2024

Bumps the golang group with 15 updates in the / directory:

Package From To
github.com/bramvdbogaerde/go-scp 0.0.0-20201229172121-7a6c0268fa67 1.5.0
github.com/cucumber/godog 0.14.1 0.15.0
github.com/fsnotify/fsnotify 1.7.0 1.8.0
golang.org/x/crypto 0.27.0 0.29.0
google.golang.org/grpc 1.67.1 1.68.0
k8s.io/api 0.31.1 0.31.2
k8s.io/client-go 0.31.1 0.31.2
k8s.io/cri-api 0.31.1 0.31.2
github.com/gofrs/uuid 4.3.1+incompatible 4.4.0+incompatible
github.com/hashicorp/golang-lru 0.5.4 1.0.2
golang.org/x/net 0.29.0 0.31.0
golang.org/x/oauth2 0.23.0 0.24.0
golang.org/x/time 0.6.0 0.8.0
google.golang.org/protobuf 1.34.2 1.35.2
sigs.k8s.io/structured-merge-diff/v4 4.4.1 4.4.3

Updates github.com/bramvdbogaerde/go-scp from 0.0.0-20201229172121-7a6c0268fa67 to 1.5.0

Release notes

Sourced from github.com/bramvdbogaerde/go-scp's releases.

v1.5.0

What's Changed

New Contributors

Full Changelog: bramvdbogaerde/go-scp@v1.4.0...v1.5.0

v1.4.0

This release changes the behavior of the Close method. Whereas before Close would close any ssh.Client used as the underlying transport for this library, this version only closes the ssh.Client whenever it is managed by the library. This release therefore addresses issue #79 specifically.

We think that this warrants a bump in the minor release of this library since these changes could break existing workflows were it is expected that Close() also closes user provided clients. If only NewClient() and Connect() is used no changes are required.

Full Changelog: bramvdbogaerde/go-scp@v1.3.0...v1.4.0

v1.3.0

What's Changed

Features

Bugfixes

  • Fixed race condition where the remote command was not started before sending data

Maintenance

New Contributors

Full Changelog: bramvdbogaerde/go-scp@v1.2.1...v1.3.0

Version 1.2.1

What's Changed

New Contributors

Full Changelog: bramvdbogaerde/go-scp@v1.2.0...v1.2.1

Version 1.2.0

... (truncated)

Commits

Updates github.com/cucumber/godog from 0.14.1 to 0.15.0

Release notes

Sourced from github.com/cucumber/godog's releases.

v0.15.0

What's Changed

New Contributors

Full Changelog: cucumber/godog@v0.14.1...v0.1.15

gorelease report:

# github.com/cucumber/godog
## incompatible changes
NewBaseFmt: changed from func(string, io.Writer) *github.com/cucumber/godog/internal/formatters.Base to func(string, io.WriteCloser) *github.com/cucumber/godog/internal/formatters.Base
NewCukeFmt: changed from func(string, io.Writer) *github.com/cucumber/godog/internal/formatters.Cuke to func(string, io.WriteCloser) *github.com/cucumber/godog/internal/formatters.Cuke
NewEventsFmt: changed from func(string, io.Writer) *github.com/cucumber/godog/internal/formatters.Events to func(string, io.WriteCloser) *github.com/cucumber/godog/internal/formatters.Events
NewJUnitFmt: changed from func(string, io.Writer) *github.com/cucumber/godog/internal/formatters.JUnit to func(string, io.WriteCloser) *github.com/cucumber/godog/internal/formatters.JUnit
NewPrettyFmt: changed from func(string, io.Writer) *github.com/cucumber/godog/internal/formatters.Pretty to func(string, io.WriteCloser) *github.com/cucumber/godog/internal/formatters.Pretty
NewProgressFmt: changed from func(string, io.Writer) *github.com/cucumber/godog/internal/formatters.Progress to func(string, io.WriteCloser) *github.com/cucumber/godog/internal/formatters.Progress
## compatible changes
Attach: added
Attachment: added
Attachments: added
ErrAmbiguous: added
ExitFailure: added
ExitOptionError: added
ExitSuccess: added
NopCloser: added
RunResult: added
StepAmbiguous: added
TestSuite.RunWithResult: added

github.com/cucumber/godog/colors

incompatible changes

Colored: changed from func(io.Writer) io.Writer to func(io.WriteCloser) io.WriteCloser Uncolored: changed from func(io.Writer) io.Writer to func(io.WriteCloser) io.WriteCloser </tr></table>

... (truncated)

Changelog

Sourced from github.com/cucumber/godog's changelog.

[v0.15.0]

Added

  • Improved the type checking of step return types and improved the error messages - (647 - johnlon)
  • Ambiguous step definitions will now be detected when strict mode is activated - (636/(648 - johnlon)
  • Provide support for attachments / embeddings including a new example in the examples dir - (623 - johnlon)

Changed

  • Formatters now have a Close method and associated io.Writer changed to io.WriteCloser.
Commits
  • dc6950b Update CHANGELOG.md
  • ecd2dfe Ambiguous step detection - add support to all formatters (#648)
  • 223efc3 Fix some type checks on the signatures of nested step handlers (#647)
  • 8edde7f Bugfix afterscenario attachments (#646)
  • 1e7c45e Minor doc and comment corrections (#644)
  • 6e4f452 Replace more slack with discord
  • 9b51734 Replace slack with discord
  • 901da7f fixed a bug where the attachments are extracted from the context too early, t...
  • bcf6bce ambiguous step def detection akin to cucumber jvm (#636)
  • 3abb346 provisional: Attachments now uses base64 padding not raw mode (#629)
  • Additional commits viewable in compare view

Updates github.com/fsnotify/fsnotify from 1.7.0 to 1.8.0

Release notes

Sourced from github.com/fsnotify/fsnotify's releases.

v1.8.0

Additions

  • all: add FSNOTIFY_DEBUG to print debug logs to stderr (#619)

Changes and fixes

  • windows: fix behaviour of WatchList() to be consistent with other platforms (#610)

  • kqueue: ignore events with Ident=0 (#590)

  • kqueue: set O_CLOEXEC to prevent passing file descriptors to children (#617)

  • kqueue: emit events as "/path/dir/file" instead of "path/link/file" when watching a symlink (#625)

  • inotify: don't send event for IN_DELETE_SELF when also watching the parent (#620)

  • inotify: fix panic when calling Remove() in a goroutine (#650)

  • fen: allow watching subdirectories of watched directories (#621)

Changelog

Sourced from github.com/fsnotify/fsnotify's changelog.

1.8.0 2023-10-31

Additions

  • all: add FSNOTIFY_DEBUG to print debug logs to stderr (#619)

Changes and fixes

  • windows: fix behaviour of WatchList() to be consistent with other platforms (#610)

  • kqueue: ignore events with Ident=0 (#590)

  • kqueue: set O_CLOEXEC to prevent passing file descriptors to children (#617)

  • kqueue: emit events as "/path/dir/file" instead of "path/link/file" when watching a symlink (#625)

  • inotify: don't send event for IN_DELETE_SELF when also watching the parent (#620)

  • inotify: fix panic when calling Remove() in a goroutine (#650)

  • fen: allow watching subdirectories of watched directories (#621)

#590: fsnotify/fsnotify#590 #610: fsnotify/fsnotify#610 #617: fsnotify/fsnotify#617 #619: fsnotify/fsnotify#619 #620: fsnotify/fsnotify#620 #621: fsnotify/fsnotify#621 #625: fsnotify/fsnotify#625 #650: fsnotify/fsnotify#650

Commits

Updates golang.org/x/crypto from 0.27.0 to 0.29.0

Commits
  • 6018723 go.mod: update golang.org/x dependencies
  • 71ed71b README: don't recommend go get
  • 750a45f sha3: add MarshalBinary, AppendBinary, and UnmarshalBinary
  • 36b1725 sha3: avoid trailing permutation
  • 80ea76e sha3: fix padding for long cSHAKE parameters
  • c17aa50 sha3: avoid buffer copy
  • 7cfb916 ssh: return unexpected msg error when server fails keyboard-interactive auth ...
  • b61b08d chacha20: extend ppc64le support to ppc64
  • 6c21748 internal/poly1305: extend ppc64le support to ppc64
  • adef4cc go.mod: update golang.org/x dependencies
  • Additional commits viewable in compare view

Updates google.golang.org/grpc from 1.67.1 to 1.68.0

Release notes

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

Release 1.68.0

Known Issues

  • The recently added grpc.NewClient function is incompatible with forward proxies, because it resolves the target hostname on the client instead of passing the hostname to the proxy. This bug has been present since the introduction of NewClient. A fix is expected to be a part of grpc-go v1.69. (#7556)

Behavior Changes

  • stats/opentelemetry/csm: Get mesh_id local label from "CSM_MESH_ID" environment variable, rather than parsing from bootstrap file (#7740)
  • orca (experimental): if using an ORCA listener, it must now be registered only on a READY SubConn, and the listener will automatically be stopped when the connection is lost. (#7663)
  • client: ClientConn.Close() now closes transports simultaneously and waits for transports to be closed before returning. (#7666)
  • credentials: TLS credentials created via NewTLS that use tls.Config.GetConfigForClient will now have CipherSuites, supported TLS versions and ALPN configured automatically. These were previously only set for configs not using the GetConfigForClient option. (#7709)

Bug Fixes

  • transport: prevent deadlock in client transport shutdown when writing the GOAWAY frame hangs. (#7662)
  • mem: reuse buffers more accurately by using slice capacity instead of length (#7702)
  • status: Fix regression caused by #6919 in status.Details() causing it to return a wrapped type when getting proto messages generated with protoc-gen-go < v1. (#7724)

Dependencies

  • Bump minimum supported Go version to go1.22.7. (#7624)
Commits
  • acba4d3 Change version to 1.68.0 (#7743)
  • 5363dca credentials: Apply defaults to TLS configs provided through GetConfigForClien...
  • 056dc64 status: Fix status incompatibility introduced by #6919 and move non-regenerat...
  • b79fb61 mem: use slice capacity instead of length, to determine whether to pool buffe...
  • 54841ef stats/opentelemetry/csm: Get mesh_id local label from "CSM_MESH_ID" environme...
  • ad81c20 pickfirstleaf: minor simplification to reconcileSubConnsLocked method (#7731)
  • b850ea5 transport : wait for goroutines to exit before transport closes (#7666)
  • 00b9e14 pickfirst: New pick first policy for dualstack (#7498)
  • 18a4eac testutils: add couple of log statements to the restartable listener type (#7716)
  • fdc2ec2 xdsclient: deflake TestADS_ResourcesAreRequestedAfterStreamRestart (#7720)
  • Additional commits viewable in compare view

Updates k8s.io/api from 0.31.1 to 0.31.2

Commits

Updates k8s.io/apimachinery from 0.31.1 to 0.31.2

Commits

Updates k8s.io/client-go from 0.31.1 to 0.31.2

Commits

Updates k8s.io/cri-api from 0.31.1 to 0.31.2

Commits

Updates github.com/gofrs/uuid from 4.3.1+incompatible to 4.4.0+incompatible

Release notes

Sourced from github.com/gofrs/uuid's releases.

v4.4.0

NOTE: This release uses Time.UnixMilli() internally which is only available on Go 1.17 or later.

Full Changelog: v4.3.1...v4.4.0

Commits
  • 8345c9a Updated V7 generator to Draft04. (#112)
  • 7b40032 sql: assert UUID satisfies the driver.Valuer and sql.Scanner interfaces (#113)
  • f1cfba7 Added a generator constructor that accepts options (#111)
  • 6ba114c Remove deprecated coverage pkg (#115)
  • 9363593 all: gofmt with Go 1.19 (#110)
  • ebca088 improve performance and reduce allocations of most UUID methods (#96)
  • See full diff in compare view

Updates github.com/hashicorp/golang-lru from 0.5.4 to 1.0.2

Release notes

Sourced from github.com/hashicorp/golang-lru's releases.

Last release of v0/v1 code base

This release is the same as v0.6.0. It allows projects depending on the v0 code to upgrade safely to v1. This is the last release of v0/v1 code. Dependent projects should upgrade to v2.

Pointer to v0/v2

This is a placeholder tag to instruct people to explicitly use v0 tags or use the v2 module.

Tagging prior to v2

This is likely the last tag prior to the switch to generics and the v2 package.

Commits

Updates golang.org/x/net from 0.29.0 to 0.31.0

Commits
  • 334afa0 go.mod: update golang.org/x dependencies
  • d7f220d quic: add LocalAddr and RemoteAddr to quic.Conn
  • 858db1a http2: surface errors occurring very early in a client conn's lifetime
  • 0aa844c http2: support unencrypted HTTP/2 handoff from net/http
  • f35fec9 http2: detect hung client connections by confirming stream resets
  • e883dae README: don't recommend go get
  • 511cc3a html: add Node.{Ancestors,ChildNodes,Descendants}()
  • 4783315 http2: limit 1xx based on size, do not limit when delivered
  • 5716b98 internal/socket: execute gofmt
  • 42b1186 http2: support ResponseController.EnableFullDuplex
  • Additional commits viewable in compare view

Updates golang.org/x/oauth2 from 0.23.0 to 0.24.0

Commits

Updates golang.org/x/sys from 0.25.0 to 0.27.0

Commits
  • e0753d4 Revert "windows/mkwinsyscall: use syscall.SyscallN instead of syscall.Syscall...
  • c29efe3 windows: add iphlpapi functions for change notifications
  • 8f2aa9f cpu: conditionally re-enable AVX512 support on darwin/amd64
  • 054f1fc README: don't recommend go get
  • ca04041 unix: extend z/OS support
  • 18e038c unix: move NETLINK_* consts to own section
  • d045236 windows: implement Ftruncate using a single syscall on Windows
  • cff53d5 unix: gofmt after CL 610296
  • 123459f unix: update z/OS implementation of fcntl and mmap
  • df4a4da unix/linux: adjust Dockerfile ENV key value format
  • Additional commits viewable in compare view

Updates golang.org/x/term from 0.24.0 to 0.26.0

Commits
  • b725e36 go.mod: update golang.org/x dependencies
  • 54df7da README: don't recommend go get
  • 9d5441a go.mod: update golang.org/x dependencies
  • See full diff in compare view

Updates golang.org/x/text from 0.18.0 to 0.20.0

Commits
  • efd25da go.mod: update golang.org/x dependencies
  • 8a0e65e README: don't recommend go get
  • fefda1a internal/texttest: remove Run and Bench helpers
  • a457f47 all: normalize subtest names to NFC
  • 3043346 x/text: Correct examples in number/doc
  • 38a95c2 all: fix some comments
  • 20097e4 all: fix printf(var) mistakes detected by latest printf checker
  • See full diff in compare view

Updates golang.org/x/time from 0.6.0 to 0.8.0

Commits

Updates google.golang.org/protobuf from 1.34.2 to 1.35.2

Updates sigs.k8s.io/structured-merge-diff/v4 from 4.4.1 to 4.4.3

Commits
  • db46cc3 Merge pull request #269 from jpbetz/fix-ignore-fields-break
  • adaddb2 Add back IgnoredFields
  • ccf7a06 Merge pull request #265 from jpbetz/reset-filter
  • b499124 Merge pull request #266 from jpbetz/add-owners
  • 39c90b6 Add volunteer reviewers
  • bda634e Apply feedback
  • a8ac1f5 Optimize merge, make wildcards always take precedence
  • f395ded Apply feedback
  • 1311e4d Add support for more field path pattern types, clarify comments
  • 1206de6 Clean up comments
  • Additional commits viewable in compare view

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

Bumps the golang group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/bramvdbogaerde/go-scp](https://github.com/bramvdbogaerde/go-scp) | `0.0.0-20201229172121-7a6c0268fa67` | `1.5.0` |
| [github.com/cucumber/godog](https://github.com/cucumber/godog) | `0.14.1` | `0.15.0` |
| [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) | `1.7.0` | `1.8.0` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.27.0` | `0.29.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.67.1` | `1.68.0` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.31.1` | `0.31.2` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.31.1` | `0.31.2` |
| [k8s.io/cri-api](https://github.com/kubernetes/cri-api) | `0.31.1` | `0.31.2` |
| [github.com/gofrs/uuid](https://github.com/gofrs/uuid) | `4.3.1+incompatible` | `4.4.0+incompatible` |
| [github.com/hashicorp/golang-lru](https://github.com/hashicorp/golang-lru) | `0.5.4` | `1.0.2` |
| [golang.org/x/net](https://github.com/golang/net) | `0.29.0` | `0.31.0` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.23.0` | `0.24.0` |
| [golang.org/x/time](https://github.com/golang/time) | `0.6.0` | `0.8.0` |
| google.golang.org/protobuf | `1.34.2` | `1.35.2` |
| [sigs.k8s.io/structured-merge-diff/v4](https://github.com/kubernetes-sigs/structured-merge-diff) | `4.4.1` | `4.4.3` |



Updates `github.com/bramvdbogaerde/go-scp` from 0.0.0-20201229172121-7a6c0268fa67 to 1.5.0
- [Release notes](https://github.com/bramvdbogaerde/go-scp/releases)
- [Commits](https://github.com/bramvdbogaerde/go-scp/commits/v1.5.0)

Updates `github.com/cucumber/godog` from 0.14.1 to 0.15.0
- [Release notes](https://github.com/cucumber/godog/releases)
- [Changelog](https://github.com/cucumber/godog/blob/main/CHANGELOG.md)
- [Commits](cucumber/godog@v0.14.1...v0.15.0)

Updates `github.com/fsnotify/fsnotify` from 1.7.0 to 1.8.0
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](fsnotify/fsnotify@v1.7.0...v1.8.0)

Updates `golang.org/x/crypto` from 0.27.0 to 0.29.0
- [Commits](golang/crypto@v0.27.0...v0.29.0)

Updates `google.golang.org/grpc` from 1.67.1 to 1.68.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.67.1...v1.68.0)

Updates `k8s.io/api` from 0.31.1 to 0.31.2
- [Commits](kubernetes/api@v0.31.1...v0.31.2)

Updates `k8s.io/apimachinery` from 0.31.1 to 0.31.2
- [Commits](kubernetes/apimachinery@v0.31.1...v0.31.2)

Updates `k8s.io/client-go` from 0.31.1 to 0.31.2
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.31.1...v0.31.2)

Updates `k8s.io/cri-api` from 0.31.1 to 0.31.2
- [Commits](kubernetes/cri-api@v0.31.1...v0.31.2)

Updates `github.com/gofrs/uuid` from 4.3.1+incompatible to 4.4.0+incompatible
- [Release notes](https://github.com/gofrs/uuid/releases)
- [Commits](gofrs/uuid@v4.3.1...v4.4.0)

Updates `github.com/hashicorp/golang-lru` from 0.5.4 to 1.0.2
- [Release notes](https://github.com/hashicorp/golang-lru/releases)
- [Commits](hashicorp/golang-lru@v0.5.4...v1.0.2)

Updates `golang.org/x/net` from 0.29.0 to 0.31.0
- [Commits](golang/net@v0.29.0...v0.31.0)

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

Updates `golang.org/x/sys` from 0.25.0 to 0.27.0
- [Commits](golang/sys@v0.25.0...v0.27.0)

Updates `golang.org/x/term` from 0.24.0 to 0.26.0
- [Commits](golang/term@v0.24.0...v0.26.0)

Updates `golang.org/x/text` from 0.18.0 to 0.20.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.18.0...v0.20.0)

Updates `golang.org/x/time` from 0.6.0 to 0.8.0
- [Commits](golang/time@v0.6.0...v0.8.0)

Updates `google.golang.org/protobuf` from 1.34.2 to 1.35.2

Updates `sigs.k8s.io/structured-merge-diff/v4` from 4.4.1 to 4.4.3
- [Release notes](https://github.com/kubernetes-sigs/structured-merge-diff/releases)
- [Changelog](https://github.com/kubernetes-sigs/structured-merge-diff/blob/master/RELEASE.md)
- [Commits](kubernetes-sigs/structured-merge-diff@v4.4.1...v4.4.3)

---
updated-dependencies:
- dependency-name: github.com/bramvdbogaerde/go-scp
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: golang
- dependency-name: github.com/cucumber/godog
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/fsnotify/fsnotify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: k8s.io/cri-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/gofrs/uuid
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/hashicorp/golang-lru
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: golang
- dependency-name: golang.org/x/net
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: golang.org/x/oauth2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: golang.org/x/sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: golang.org/x/term
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: golang.org/x/text
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: golang.org/x/time
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: google.golang.org/protobuf
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: sigs.k8s.io/structured-merge-diff/v4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from gallacher as a code owner November 14, 2024 19:01
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 14, 2024
@dependabot dependabot bot requested a review from tdawe as a code owner November 14, 2024 19:01
@dependabot dependabot bot added the go Pull requests that update Go code label Nov 14, 2024
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