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 49 updates #242

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 8, 2024

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

Package From To
github.com/container-storage-interface/spec 1.6.0 1.10.0
github.com/cucumber/godog 0.10.0 0.15.0
github.com/fsnotify/fsnotify 1.4.9 1.8.0
github.com/kubernetes-csi/csi-lib-utils 0.7.0 0.19.0
github.com/spf13/viper 1.7.1 1.19.0
golang.org/x/net 0.28.0 0.31.0
google.golang.org/grpc 1.67.1 1.68.0
google.golang.org/protobuf 1.34.2 1.35.1
github.com/coreos/go-semver 0.3.0 0.3.1
github.com/coreos/go-systemd/v22 22.3.2 22.5.0
github.com/golang/mock 1.4.4 1.6.0
github.com/hashicorp/golang-lru 0.5.4 1.0.2

Updates github.com/container-storage-interface/spec from 1.6.0 to 1.10.0

Release notes

Sourced from github.com/container-storage-interface/spec's releases.

v1.10.0

What's Changed

Breaking changes/Deprecations

  • The google.golang.org/protobuf and protoc-gen-go libraries were bumped in this release to v1.33.0 (indirectly bumping github.com/golang/protobuf to v1.5.3) resulting in breaking changes to generated protobuf go message structures. SPs updating their CSI drivers to this version of the CSI spec must modify their code to handle the changes. See #570.

Additions

Clarifications/Corrections/Fixes

  • None

Dependencies

New Contributors

Full Changelog: container-storage-interface/spec@v1.9.0...v1.10.0

v1.10.0-rc1

No release notes provided.

v1.9.0

Breaking changes/Deprecations:

  • None

Additions:

  • spec ([PR #544](container-storage-interface/spec#544)): [Alpha] Introduce new ControllerModifyVolume RPC and a mutable_parameters field under existing CreateVolumeRequest RPC to enable modification of volume properties (e.g. IOPS, etc.) after volume creation.

Clarifications/Corrections/Fixes:

Dependencies:

Full Changelog: container-storage-interface/spec@v1.8.0...v1.9.0

v1.9.0-rc1

No release notes provided.

v1.8.0

Breaking changes/Deprecations:

  • None

Additions:

Clarifications/Corrections/Fixes:

  • None

... (truncated)

Commits
  • 21be3f8 Merge pull request #566 from saad-ali/protoBufTo133
  • 1bc2caf Bump google.golang.org/protobuf from 1.32.0 to 1.33.0
  • adb2b16 Merge pull request #564 from container-storage-interface/dependabot/go_module...
  • 811799a Bump golang.org/x/net from 0.10.0 to 0.23.0
  • 9674d35 Merge pull request #559 from container-storage-interface/dependabot/go_module...
  • 2696773 Added the SnapshotMetadata service. (#551)
  • 1f2bf8a Bump google.golang.org/grpc from 1.57.0 to 1.57.1
  • abf6346 update protoc and related (#552)
  • 886cd48 Merge pull request #555 from saad-ali/release19bump
  • 5855142 Bump master version to 1.10 for next release
  • Additional commits viewable in compare view

Updates github.com/cucumber/godog from 0.10.0 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.

[v0.14.1]

Added

  • Provide testing.T-compatible interface on test context, allowing usage of assertion libraries such as testify's assert/require - (571 - mrsheepuk)
  • Created releasing guidelines - (608 - glibas)

Fixed

[v0.14.0]

Added

  • Improve ErrSkip handling, add test for Summary and operations order (584 - vearutop)

Fixed

  • Remove line overwriting for scenario outlines in cucumber formatter (605 - glibas)
  • Remove duplicate warning message (590 - vearutop)
  • updated base formatter to set a scenario as passed unless there exist (582 - roskee)

Changed

[v0.13.0]

Added

Fixed

  • Improve hooks invocation flow (568 - vearutop)
  • Result of testing.T respect strict option (539 - eiel)

Changed

  • BREAKING CHANGE, upgraded cucumber and messages dependencies = (515 - otrava7)

[v0.12.6]

Changed

  • Each scenario is run with a cancellable context.Context which is cancelled at the end of the scenario. (514 - draganm)

... (truncated)

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.4.9 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)

v1.7.0

This version of fsnotify needs Go 1.17.

Additions

  • illumos: add FEN backend to support illumos and Solaris. (#371)

  • all: add NewBufferedWatcher() to use a buffered channel, which can be useful in cases where you can't control the kernel buffer and receive a large number of events in bursts. (#550, #572)

  • all: add AddWith(), which is identical to Add() but allows passing options. (#521)

  • windows: allow setting the ReadDirectoryChangesW() buffer size with fsnotify.WithBufferSize(); the default of 64K is the highest value that works on all platforms and is enough for most purposes, but in some cases a highest buffer is needed. (#521)

Changes and fixes

  • inotify: remove watcher if a watched path is renamed (#518)

    After a rename the reported name wasn't updated, or even an empty string. Inotify doesn't provide any good facilities to update it, so just remove the watcher. This is already how it worked on kqueue and FEN.

    On Windows this does work, and remains working.

  • windows: don't listen for file attribute changes (#520)

    File attribute changes are sent as FILE_ACTION_MODIFIED by the Windows API, with no way to see if they're a file write or attribute change, so would show up as a fsnotify.Write event. This is never useful, and could result in many spurious Write events.

  • windows: return ErrEventOverflow if the buffer is full (#525)

    Before it would merely return "short read", making it hard to detect this error.

... (truncated)

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

1.7.0 - 2023-10-22

This version of fsnotify needs Go 1.17.

Additions

  • illumos: add FEN backend to support illumos and Solaris. (#371)

  • all: add NewBufferedWatcher() to use a buffered channel, which can be useful in cases where you can't control the kernel buffer and receive a large number of events in bursts. (#550, #572)

  • all: add AddWith(), which is identical to Add() but allows passing options. (#521)

  • windows: allow setting the ReadDirectoryChangesW() buffer size with fsnotify.WithBufferSize(); the default of 64K is the highest value that works on all platforms and is enough for most purposes, but in some cases a

... (truncated)

Commits

Updates github.com/kubernetes-csi/csi-lib-utils from 0.7.0 to 0.19.0

Release notes

Sourced from github.com/kubernetes-csi/csi-lib-utils's releases.

v0.19.0

https://github.com/kubernetes-csi/csi-lib-utils/blob/v0.19.0/CHANGELOG/CHANGELOG-0.19.md

v0.19.0-beta.0

Pre-release with Kubernetes 1.31.0-beta.0 packages.

v0.18.1

Bug or Regression

Restored the previous behavior of ProbeForever to do a probe first before sleeping. (#175, @​Fricounet)

v0.18.0

https://github.com/kubernetes-csi/csi-lib-utils/blob/v0.18.0/CHANGELOG/CHANGELOG-0.18.md

v0.17.0

https://github.com/kubernetes-csi/csi-lib-utils/blob/v0.17.0/CHANGELOG/CHANGELOG-0.17.md

v0.16.0

Changelog

https://github.com/kubernetes-csi/csi-lib-utils/blob/v0.16.0/CHANGELOG/CHANGELOG-0.16.md

v0.15.0

Changelog

https://github.com/kubernetes-csi/csi-lib-utils/blob/v0.15.0/CHANGELOG/CHANGELOG-0.15.md

v0.15.0-rc0

No release notes provided.

v0.14.0

Changelog

https://github.com/kubernetes-csi/csi-lib-utils/blob/v0.14.0/CHANGELOG/CHANGELOG-0.14.md

v0.13.0

Changelog

https://github.com/kubernetes-csi/csi-lib-utils/blob/v0.13.0/CHANGELOG/CHANGELOG-0.13.md

v0.12.0

Changelog

https://github.com/kubernetes-csi/csi-lib-utils/blob/v0.12.0/CHANGELOG/CHANGELOG-0.12.md

v0.11.0

Changelog

https://github.com/kubernetes-csi/csi-lib-utils/blob/v0.11.0/CHANGELOG/CHANGELOG-0.11.md

v0.10.0

Changelog

https://github.com/kubernetes-csi/csi-lib-utils/blob/v0.10.0/CHANGELOG/CHANGELOG-0.10.md

v0.9.1

Changelog

https://github.com/kubernetes-csi/csi-lib-utils/blob/v0.9.1/CHANGELOG/CHANGELOG-0.9.md

... (truncated)

Commits
  • 5827ba9 Merge pull request #180 from dfajmon/changelog
  • 0186303 Add changelog for v1.19.0
  • 927e34c Merge pull request #179 from dfajmon/bump-1.31
  • 0067cde update kubernetes to 1.31
  • 4b65dcd Merge commit 'c7e0f2e01019270bb4337dd201ec835d7e96587e' into bump-1.31
  • c7e0f2e Squashed 'release-tools/' changes from edd89ad5..988496a1
  • 1884850 Merge pull request #178 from dfajmon/kubernetes-bump
  • 0363106 update kubernetes deps to 1.31.0-beta
  • 89214e5 Merge pull request #176 from jsafrane/changelog-0.18.1
  • 1afd1a3 Add changelog for v0.18.1
  • Additional commits viewable in compare view

Updates github.com/spf13/viper from 1.7.1 to 1.19.0

Release notes

Sourced from github.com/spf13/viper's releases.

v1.19.0

What's Changed

Bug Fixes 🐛

Dependency Updates ⬆️

... (truncated)

Commits
  • b9733f0 build(deps): bump actions/checkout from 4.1.4 to 4.1.6
  • 6ecc5c8 build(deps): bump cachix/install-nix-action from 26 to 27
  • 248c6fd build(deps): bump github/codeql-action from 3.25.4 to 3.25.7
  • abea773 Update references to bketelsen/crypt
  • f17acb4 build(deps): bump golangci/golangci-lint-action from 4.0.0 to 6.0.1
  • 8e285a5 build(deps): bump github/codeql-action from 3.25.2 to 3.25.4
  • 4017620 build(deps): bump actions/setup-go from 5.0.0 to 5.0.1
  • b67e814 build(deps): bump github.com/pelletier/go-toml/v2 from 2.2.1 to 2.2.2
  • 4a182c7 build(deps): bump actions/dependency-review-action from 4.2.5 to 4.3.2
  • 45a0e12 build(deps): bump mheap/github-action-required-labels
  • Additional commits viewable in compare view

Updates github.com/stretchr/testify from 1.7.0 to 1.9.0

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.9.0

What's Changed

... (truncated)

Commits
  • bb548d0 Merge pull request #1552 from stretchr/dependabot/go_modules/github.com/stret...
  • 814075f build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2
  • e045612 Merge pull request #1339 from bogdandrutu/uintptr
  • 5b6926d Merge pull request #1385 from hslatman/not-implements
  • 9f97d67 Merge pull request #1550 from stretchr/release-notes
  • bcb0d3f Include the auto-release notes in releases
  • fb770f8 Merge pull request #1247 from ccoVeille/typos
  • 85d8bb6 fix typos in comments, tests and github templates
  • e2741fa Merge pull request #1548 from arjunmahishi/msgAndArgs
  • 6e59f20 http_assertions: assert that the msgAndArgs actually works in tests
  • Additional commits viewable in compare view

Updates go.uber.org/atomic from 1.7.0 to 1.9.0

Release notes

Sourced from go.uber.org/atomic's releases.

v1.9.0

Added

  • Add Float64.Swap to match int atomic operations.
  • Add atomic.Time type for atomic operations on time.Time values.

v1.8.0

Added

  • Add atomic.Uintptr type for atomic operations on uintptr values.
  • Add atomic.UnsafePointer type for atomic operations on unsafe.Pointer values.
Changelog

Sourced from go.uber.org/atomic's changelog.

1.9.0 - 2021-07-15

Added

  • Add Float64.Swap to match int atomic operations.
  • Add atomic.Time type for atomic operations on time.Time values.

1.8.0 - 2021-06-09

Added

  • Add atomic.Uintptr type for atomic operations on uintptr values.
  • Add atomic.UnsafePointer type for atomic operations on unsafe.Pointer values.
  • ...

    Description has been truncated

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 8, 2024
@dependabot dependabot bot added the go Pull requests that update Go code label Nov 8, 2024
Bumps the golang group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/container-storage-interface/spec](https://github.com/container-storage-interface/spec) | `1.6.0` | `1.10.0` |
| [github.com/cucumber/godog](https://github.com/cucumber/godog) | `0.10.0` | `0.15.0` |
| [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) | `1.4.9` | `1.8.0` |
| [github.com/kubernetes-csi/csi-lib-utils](https://github.com/kubernetes-csi/csi-lib-utils) | `0.7.0` | `0.19.0` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.7.1` | `1.19.0` |
| [golang.org/x/net](https://github.com/golang/net) | `0.28.0` | `0.31.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.67.1` | `1.68.0` |
| google.golang.org/protobuf | `1.34.2` | `1.35.1` |
| [github.com/coreos/go-semver](https://github.com/coreos/go-semver) | `0.3.0` | `0.3.1` |
| [github.com/coreos/go-systemd/v22](https://github.com/coreos/go-systemd) | `22.3.2` | `22.5.0` |
| [github.com/golang/mock](https://github.com/golang/mock) | `1.4.4` | `1.6.0` |
| [github.com/hashicorp/golang-lru](https://github.com/hashicorp/golang-lru) | `0.5.4` | `1.0.2` |



Updates `github.com/container-storage-interface/spec` from 1.6.0 to 1.10.0
- [Release notes](https://github.com/container-storage-interface/spec/releases)
- [Commits](container-storage-interface/spec@v1.6.0...v1.10.0)

Updates `github.com/cucumber/godog` from 0.10.0 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.10.0...v0.15.0)

Updates `github.com/fsnotify/fsnotify` from 1.4.9 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.4.9...v1.8.0)

Updates `github.com/kubernetes-csi/csi-lib-utils` from 0.7.0 to 0.19.0
- [Release notes](https://github.com/kubernetes-csi/csi-lib-utils/releases)
- [Commits](kubernetes-csi/csi-lib-utils@0.7.0...v0.19.0)

Updates `github.com/spf13/viper` from 1.7.1 to 1.19.0
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.7.1...v1.19.0)

Updates `github.com/stretchr/testify` from 1.7.0 to 1.9.0
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.7.0...v1.9.0)

Updates `go.uber.org/atomic` from 1.7.0 to 1.9.0
- [Release notes](https://github.com/uber-go/atomic/releases)
- [Changelog](https://github.com/uber-go/atomic/blob/master/CHANGELOG.md)
- [Commits](uber-go/atomic@v1.7.0...v1.9.0)

Updates `golang.org/x/net` from 0.28.0 to 0.31.0
- [Commits](golang/net@v0.28.0...v0.31.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 `google.golang.org/protobuf` from 1.34.2 to 1.35.1

Updates `github.com/coreos/go-semver` from 0.3.0 to 0.3.1
- [Commits](coreos/go-semver@v0.3.0...v0.3.1)

Updates `github.com/coreos/go-systemd/v22` from 22.3.2 to 22.5.0
- [Release notes](https://github.com/coreos/go-systemd/releases)
- [Commits](coreos/go-systemd@v22.3.2...v22.5.0)

Updates `github.com/davecgh/go-spew` from 1.1.1 to 1.1.2-0.20180830191138-d8f796af33cc
- [Commits](https://github.com/davecgh/go-spew/commits)

Updates `github.com/go-logr/logr` from 0.4.0 to 1.4.2
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](go-logr/logr@v0.4.0...v1.4.2)

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

Updates `github.com/golang/groupcache` from 0.0.0-20200121045136-8c9f03a8e57e to 0.0.0-20210331224755-41bb18bfe9da
- [Commits](https://github.com/golang/groupcache/commits)

Updates `github.com/golang/mock` from 1.4.4 to 1.6.0
- [Release notes](https://github.com/golang/mock/releases)
- [Changelog](https://github.com/golang/mock/blob/main/.goreleaser.yml)
- [Commits](golang/mock@v1.4.4...v1.6.0)

Updates `github.com/google/gofuzz` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/google/gofuzz/releases)
- [Commits](google/gofuzz@v1.1.0...v1.2.0)

Updates `github.com/hashicorp/go-immutable-radix` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/hashicorp/go-immutable-radix/releases)
- [Changelog](https://github.com/hashicorp/go-immutable-radix/blob/master/CHANGELOG.md)
- [Commits](hashicorp/go-immutable-radix@v1.2.0...v1.3.1)

Updates `github.com/hashicorp/go-memdb` from 1.2.1 to 1.3.4
- [Release notes](https://github.com/hashicorp/go-memdb/releases)
- [Changelog](https://github.com/hashicorp/go-memdb/blob/main/changes.go)
- [Commits](hashicorp/go-memdb@v1.2.1...v1.3.4)

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 `github.com/json-iterator/go` from 1.1.11 to 1.1.12
- [Release notes](https://github.com/json-iterator/go/releases)
- [Commits](json-iterator/go@v1.1.11...v1.1.12)

Updates `github.com/magiconair/properties` from 1.8.1 to 1.8.7
- [Changelog](https://github.com/magiconair/properties/blob/main/CHANGELOG.md)
- [Commits](magiconair/properties@v1.8.1...v1.8.7)

Updates `github.com/mitchellh/mapstructure` from 1.1.2 to 1.5.0
- [Changelog](https://github.com/mitchellh/mapstructure/blob/main/CHANGELOG.md)
- [Commits](mitchellh/mapstructure@v1.1.2...v1.5.0)

Updates `github.com/modern-go/reflect2` from 1.0.1 to 1.0.2
- [Release notes](https://github.com/modern-go/reflect2/releases)
- [Commits](modern-go/reflect2@1.0.1...v1.0.2)

Updates `github.com/pmezard/go-difflib` from 1.0.0 to 1.0.1-0.20181226105442-5d4384ee4fb2
- [Commits](https://github.com/pmezard/go-difflib/commits)

Updates `github.com/spf13/afero` from 1.2.2 to 1.11.0
- [Release notes](https://github.com/spf13/afero/releases)
- [Commits](spf13/afero@v1.2.2...v1.11.0)

Updates `github.com/spf13/cast` from 1.3.0 to 1.6.0
- [Release notes](https://github.com/spf13/cast/releases)
- [Commits](spf13/cast@v1.3.0...v1.6.0)

Updates `github.com/subosito/gotenv` from 1.2.0 to 1.6.0
- [Changelog](https://github.com/subosito/gotenv/blob/master/CHANGELOG.md)
- [Commits](subosito/gotenv@v1.2.0...v1.6.0)

Updates `go.etcd.io/etcd/api/v3` from 3.5.0 to 3.5.12
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.0...v3.5.12)

Updates `go.etcd.io/etcd/client/pkg/v3` from 3.5.0 to 3.5.12
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.0...v3.5.12)

Updates `go.etcd.io/etcd/client/v3` from 3.5.0 to 3.5.12
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.0...v3.5.12)

Updates `go.uber.org/multierr` from 1.6.0 to 1.9.0
- [Release notes](https://github.com/uber-go/multierr/releases)
- [Changelog](https://github.com/uber-go/multierr/blob/master/CHANGELOG.md)
- [Commits](uber-go/multierr@v1.6.0...v1.9.0)

Updates `go.uber.org/zap` from 1.17.0 to 1.21.0
- [Release notes](https://github.com/uber-go/zap/releases)
- [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
- [Commits](uber-go/zap@v1.17.0...v1.21.0)

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

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

Updates `golang.org/x/sync` from 0.8.0 to 0.9.0
- [Commits](golang/sync@v0.8.0...v0.9.0)

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

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

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

Updates `golang.org/x/time` from 0.0.0-20210220033141-f8bda1e9f3ba to 0.5.0
- [Commits](https://github.com/golang/time/commits/v0.5.0)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20240814211410-ddb44dafa142 to 0.0.0-20240903143218-8af14fe29dc1
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20240814211410-ddb44dafa142 to 0.0.0-20240903143218-8af14fe29dc1
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `gopkg.in/ini.v1` from 1.51.0 to 1.67.0

Updates `k8s.io/klog/v2` from 2.9.0 to 2.130.1
- [Release notes](https://github.com/kubernetes/klog/releases)
- [Changelog](https://github.com/kubernetes/klog/blob/main/RELEASE.md)
- [Commits](kubernetes/klog@v2.9.0...v2.130.1)

Updates `k8s.io/kube-openapi` from 0.0.0-20210305001622-591a79e4bda7 to 0.0.0-20240228011516-70dd3763d340
- [Commits](https://github.com/kubernetes/kube-openapi/commits)

Updates `k8s.io/utils` from 0.0.0-20210819203725-bdf08cb9a70a to 0.0.0-20240711033017-18e509b52bc8
- [Commits](https://github.com/kubernetes/utils/commits)

Updates `sigs.k8s.io/structured-merge-diff/v4` from 4.1.2 to 4.4.1
- [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.1.2...v4.4.1)

Updates `sigs.k8s.io/yaml` from 1.2.0 to 1.4.0
- [Release notes](https://github.com/kubernetes-sigs/yaml/releases)
- [Changelog](https://github.com/kubernetes-sigs/yaml/blob/master/RELEASE.md)
- [Commits](kubernetes-sigs/yaml@v1.2.0...v1.4.0)

---
updated-dependencies:
- dependency-name: github.com/container-storage-interface/spec
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: github.com/kubernetes-csi/csi-lib-utils
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/spf13/viper
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/stretchr/testify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.uber.org/atomic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: golang.org/x/net
  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: google.golang.org/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/coreos/go-semver
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/coreos/go-systemd/v22
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/davecgh/go-spew
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/go-logr/logr
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: golang
- dependency-name: github.com/gofrs/uuid
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: golang
- dependency-name: github.com/golang/groupcache
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/golang/mock
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/google/gofuzz
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/hashicorp/go-immutable-radix
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/hashicorp/go-memdb
  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: github.com/json-iterator/go
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/magiconair/properties
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/mitchellh/mapstructure
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/modern-go/reflect2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/pmezard/go-difflib
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/spf13/afero
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/spf13/cast
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/subosito/gotenv
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.etcd.io/etcd/api/v3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: go.etcd.io/etcd/client/pkg/v3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: go.uber.org/multierr
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.uber.org/zap
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: golang.org/x/crypto
  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/sync
  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/genproto/googleapis/api
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: google.golang.org/genproto/googleapis/rpc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: gopkg.in/ini.v1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: k8s.io/klog/v2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: k8s.io/kube-openapi
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: k8s.io/utils
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: sigs.k8s.io/structured-merge-diff/v4
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: sigs.k8s.io/yaml
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: golang
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/golang-8809d1904e branch from b9d4ba3 to c7ef63b Compare November 13, 2024 18:34
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