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 all-go-mod-patch-and-minor group across 3 directories with 30 updates #203

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 8, 2024

Bumps the all-go-mod-patch-and-minor group with 15 updates in the / directory:

Package From To
github.com/distribution/reference 0.5.0 0.6.0
github.com/evanphx/json-patch/v5 5.7.0 5.9.0
github.com/go-logr/logr 1.3.0 1.4.1
github.com/onsi/ginkgo/v2 2.13.1 2.17.3
github.com/prometheus/client_golang 1.17.0 1.19.0
github.com/spf13/viper 1.17.0 1.18.2
go.etcd.io/etcd/api/v3 3.5.10 3.5.13
go.etcd.io/etcd/client/v3 3.5.10 3.5.13
golang.org/x/text 0.14.0 0.15.0
k8s.io/api 0.28.4 0.28.9
k8s.io/apiextensions-apiserver 0.28.4 0.28.9
k8s.io/cluster-bootstrap 0.28.4 0.28.9
k8s.io/kubectl 0.28.4 0.28.9
sigs.k8s.io/controller-runtime 0.16.5 0.16.6
github.com/emicklei/go-restful/v3 3.11.0 3.12.0

Bumps the all-go-mod-patch-and-minor group with 15 updates in the /hack/tools directory:

Package From To
github.com/distribution/reference 0.5.0 0.6.0
github.com/evanphx/json-patch/v5 5.7.0 5.9.0
github.com/go-logr/logr 1.3.0 1.4.1
github.com/onsi/gomega 1.30.0 1.33.1
github.com/prometheus/client_golang 1.17.0 1.19.0
github.com/spf13/viper 1.17.0 1.18.2
golang.org/x/text 0.14.0 0.15.0
k8s.io/api 0.28.4 0.28.9
k8s.io/apiextensions-apiserver 0.28.4 0.28.9
k8s.io/cluster-bootstrap 0.28.4 0.28.9
sigs.k8s.io/controller-runtime 0.16.5 0.16.6
cloud.google.com/go/storage 1.35.1 1.40.0
sigs.k8s.io/controller-tools 0.13.0 0.15.0
github.com/docker/go-connections 0.4.0 0.5.0
github.com/emicklei/go-restful/v3 3.11.0 3.12.0

Bumps the all-go-mod-patch-and-minor group with 16 updates in the /test directory:

Package From To
github.com/distribution/reference 0.5.0 0.6.0
github.com/evanphx/json-patch/v5 5.7.0 5.9.0
github.com/go-logr/logr 1.3.0 1.4.1
github.com/onsi/ginkgo/v2 2.13.1 2.17.3
github.com/prometheus/client_golang 1.17.0 1.19.0
github.com/spf13/viper 1.17.0 1.18.2
go.etcd.io/etcd/api/v3 3.5.10 3.5.13
go.etcd.io/etcd/client/v3 3.5.10 3.5.13
golang.org/x/text 0.14.0 0.15.0
k8s.io/api 0.28.4 0.28.9
k8s.io/apiextensions-apiserver 0.28.4 0.28.9
k8s.io/cluster-bootstrap 0.28.4 0.28.9
sigs.k8s.io/controller-runtime 0.16.5 0.16.6
github.com/docker/go-connections 0.4.0 0.5.0
github.com/emicklei/go-restful/v3 3.11.0 3.12.0
sigs.k8s.io/kind 0.20.0 0.22.0

Updates github.com/distribution/reference from 0.5.0 to 0.6.0

Release notes

Sourced from github.com/distribution/reference's releases.

v0.6.0

What's Changed

New Contributors

Full Changelog: distribution/reference@v0.5.0...v0.6.0

Commits
  • ff14faf Merge pull request #9 from ozairasim/exclude-domain-from-name-length-validation
  • 2a66312 Merge pull request #10 from xrstf/patch-1
  • 094e717 fix typo in readme
  • aaca75e Exclude domain from name length check
  • 8507c7f Merge pull request #7 from thaJeztah/cleanup_splitDockerDomain
  • 89ee7ec refactor splitDockerDomain to include more documentation
  • a3fb784 Merge pull request #5 from thaJeztah/rm_deprecated
  • 4894124 remove deprecated SplitHostname
  • See full diff in compare view

Updates github.com/evanphx/json-patch/v5 from 5.7.0 to 5.9.0

Release notes

Sourced from github.com/evanphx/json-patch/v5's releases.

v5.9.0

What's Changed

Full Changelog: evanphx/json-patch@v5.8.1...v5.9.0

Fix API breakage

This PR fixes Operation containing a reference to internal/json and breaking the ability to manually compose one. This restores that ability using a type alias.

Full Changelog: evanphx/json-patch@v5.8.0...v5.8.1

Blargh Phixs and Empathyprovements

This release fixes a few stray panics, addresses large number accuracy, and improves performance!

What's Changed

Full Changelog: evanphx/json-patch@v5.7.0...v5.8.0

Commits
  • b7a4e4a Merge pull request #202 from evanphx/f-html-escape
  • 7eef36c Guard using options to avoid a crash bug
  • 1bcbd0f Merge pull request #201 from evanphx/b-null
  • 9d7ba23 Add option to control if the output is HTMLEscaped
  • 009bc56 Validate that the partialDoc is decoded correctly
  • b82b685 Use a type alias for RawMessage to avoid breaking the public API of Operation
  • 05c9526 Merge pull request #197 from evanphx/f-perf
  • 7a438a6 Minor simplifications
  • 2a122d1 More optimizations
  • 174e1d7 Add MergePatch benchmark
  • Additional commits viewable in compare view

Updates github.com/go-logr/logr from 1.3.0 to 1.4.1

Release notes

Sourced from github.com/go-logr/logr's releases.

v1.4.1

What's Changed

Full Changelog: go-logr/logr@v1.4.0...v1.4.1

v1.4.0

This release dramatically improves interoperability with Go's log/slog package. In particular, logr.NewContext and logr.NewContextWithSlogLogger use the same context key, which allows logr.FromContext and logr.FromContextAsSlogLogger to return logr.Logger or *slog.Logger respectively, including transparently converting each to the other as needed.

Functions logr/slogr.NewLogr and logr/slogr.ToSlogHandler have been superceded by logr.FromSlogHandler and logr.ToSlogHandler respectively, and type logr/slogr.SlogSink has been superceded by logr.SlogSink. All of the old names in logr/slogr remain, for compatibility.

Package logr/funcr now supports logr.SlogSink, meaning that it's output passes all but one of the Slog conformance tests (that exception being that funcr handles the timestamp itself).

Users who have a logr.Logger and need a *slog.Logger can call slog.New(logr.ToSlogHandler(...)) and all output will go through the same stack.

Users who have a *slog.Logger or slog.Handler can call logr.FromSlogHandler(...) and all output will go through the same stack.

What's Changed

New Contributors

Full Changelog: go-logr/logr@v1.3.0...v1.4.0

Commits
  • dcdc3f2 slogr: fix unintended API break in v0.8.0 (#253)
  • 5d88f52 funcr: Add LogInfoLevel Option to skip logging level in the info log (#240)
  • 177005d build(deps): bump actions/upload-artifact from 3.1.3 to 4.0.0
  • e7f489a build(deps): bump github/codeql-action from 2.22.9 to 3.22.11
  • cf56c3b build(deps): bump actions/setup-go from 4 to 5
  • 2ad296e build(deps): bump github/codeql-action from 2.22.8 to 2.22.9
  • d55b4e2 Merge pull request #241 from thockin/master
  • 98ee9d9 Clean up slog testing and restore coverage
  • b228ba8 Break examples to new file
  • 6432877 Add benchmarks for slogSink
  • Additional commits viewable in compare view

Updates github.com/onsi/ginkgo/v2 from 2.13.1 to 2.17.3

Release notes

Sourced from github.com/onsi/ginkgo/v2's releases.

v2.17.3

2.17.3

Fixes

ginkgo watch now ignores hidden files [bde6e00]

v2.17.2

2.17.2

Fixes

  • fix: close files [32259c8]
  • fix github output log level for skipped specs [780e7a3]

Maintenance

  • Bump github.com/google/pprof [d91fe4e]
  • Bump github.com/go-task/slim-sprig to v3 [8cb662e]
  • Bump golang.org/x/net in /integration/_fixtures/version_mismatch_fixture (#1391) [3134422]
  • Bump github-pages from 230 to 231 in /docs (#1384) [eca81b4]
  • Bump golang.org/x/tools from 0.19.0 to 0.20.0 (#1383) [760def8]
  • Bump golang.org/x/net from 0.23.0 to 0.24.0 (#1381) [4ce33f4]
  • Fix test for gomega version bump [f2fcd97]
  • Bump github.com/onsi/gomega from 1.30.0 to 1.33.0 (#1390) [fd622d2]
  • Bump golang.org/x/tools from 0.17.0 to 0.19.0 (#1368) [5474a26]
  • Bump github-pages from 229 to 230 in /docs (#1359) [e6d1170]
  • Bump google.golang.org/protobuf from 1.28.0 to 1.33.0 (#1374) [7f447b2]
  • Bump golang.org/x/net from 0.20.0 to 0.23.0 (#1380) [f15239a]

v2.17.1

2.17.1

Fixes

  • If the user sets --seed=0, make sure all parallel nodes get the same seed [af0330d]

v2.17.0

2.17.0

Features

  • add --github-output for nicer output in github actions [e8a2056]

Maintenance

  • fix typo in core_dsl.go [977bc6f]
  • Fix typo in docs [e297e7b]

v2.16.0

2.16.0

Features

  • add SpecContext to reporting nodes

... (truncated)

Changelog

Sourced from github.com/onsi/ginkgo/v2's changelog.

2.17.3

Fixes

ginkgo watch now ignores hidden files [bde6e00]

2.17.2

Fixes

  • fix: close files [32259c8]
  • fix github output log level for skipped specs [780e7a3]

Maintenance

  • Bump github.com/google/pprof [d91fe4e]
  • Bump github.com/go-task/slim-sprig to v3 [8cb662e]
  • Bump golang.org/x/net in /integration/_fixtures/version_mismatch_fixture (#1391) [3134422]
  • Bump github-pages from 230 to 231 in /docs (#1384) [eca81b4]
  • Bump golang.org/x/tools from 0.19.0 to 0.20.0 (#1383) [760def8]
  • Bump golang.org/x/net from 0.23.0 to 0.24.0 (#1381) [4ce33f4]
  • Fix test for gomega version bump [f2fcd97]
  • Bump github.com/onsi/gomega from 1.30.0 to 1.33.0 (#1390) [fd622d2]
  • Bump golang.org/x/tools from 0.17.0 to 0.19.0 (#1368) [5474a26]
  • Bump github-pages from 229 to 230 in /docs (#1359) [e6d1170]
  • Bump google.golang.org/protobuf from 1.28.0 to 1.33.0 (#1374) [7f447b2]
  • Bump golang.org/x/net from 0.20.0 to 0.23.0 (#1380) [f15239a]

2.17.1

Fixes

  • If the user sets --seed=0, make sure all parallel nodes get the same seed [af0330d]

2.17.0

Features

  • add --github-output for nicer output in github actions [e8a2056]

Maintenance

  • fix typo in core_dsl.go [977bc6f]
  • Fix typo in docs [e297e7b]

2.16.0

Features

  • add SpecContext to reporting nodes

Fixes

  • merge coverages instead of combining them (#1329) (#1340) [23f0cc5]
  • core_dsl: disable Getwd() with environment variable (#1357) [cd418b7]

... (truncated)

Commits

Updates github.com/onsi/gomega from 1.30.0 to 1.33.0

Release notes

Sourced from github.com/onsi/gomega's releases.

v1.33.1

1.33.1

Fixes

  • fix confusing eventually docs [3a66379]

Maintenance

  • Bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.17.2 [e9bc35a]

v1.33.0

1.33.0

Features

Receive not accepts Receive(<POINTER>, MATCHER>), allowing you to pick out a specific value on the channel that satisfies the provided matcher and is stored in the provided pointer.

Maintenance

  • Bump github.com/onsi/ginkgo/v2 from 2.15.0 to 2.17.1 (#745) [9999deb]
  • Bump github-pages from 229 to 230 in /docs (#735) [cb5ff21]
  • Bump golang.org/x/net from 0.20.0 to 0.23.0 (#746) [bac6596]

v1.32.0

1.32.0

Maintenance

  • Migrate github.com/golang/protobuf to google.golang.org/protobuf [436a197]

    This release drops the deprecated github.com/golang/protobuf and adopts google.golang.org/protobuf. Care was taken to ensure the release is backwards compatible (thanks @​jbduncan !). Please open an issue if you run into one.

  • chore: test with Go 1.22 (#733) [32ef35e]

  • Bump golang.org/x/net from 0.19.0 to 0.20.0 (#717) [a0d0387]

  • Bump github-pages and jekyll-feed in /docs (#732) [b71e477]

  • docs: fix typo and broken anchor link to gstruct [f460154]

  • docs: fix HaveEach matcher signature [a2862e4]

v1.31.1

1.31.1

Fixes

  • Inverted arguments order of FailureMessage of BeComparableToMatcher [e0dd999]
  • Update test in case keeping msg is desired [ad1a367]

Maintenance

  • Show how to import the format sub package [24e958d]
  • tidy up go.sum [26661b8]
  • bump dependencies [bde8f7a]

v1.31.0

1.31.0

... (truncated)

Changelog

Sourced from github.com/onsi/gomega's changelog.

1.33.1

Fixes

  • fix confusing eventually docs [3a66379]

Maintenance

  • Bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.17.2 [e9bc35a]

1.33.0

Features

Receive not accepts Receive(<POINTER>, MATCHER>), allowing you to pick out a specific value on the channel that satisfies the provided matcher and is stored in the provided pointer.

Maintenance

  • Bump github.com/onsi/ginkgo/v2 from 2.15.0 to 2.17.1 (#745) [9999deb]
  • Bump github-pages from 229 to 230 in /docs (#735) [cb5ff21]
  • Bump golang.org/x/net from 0.20.0 to 0.23.0 (#746) [bac6596]

1.32.0

Maintenance

  • Migrate github.com/golang/protobuf to google.golang.org/protobuf [436a197]

    This release drops the deprecated github.com/golang/protobuf and adopts google.golang.org/protobuf. Care was taken to ensure the release is backwards compatible (thanks @​jbduncan !). Please open an issue if you run into one.

  • chore: test with Go 1.22 (#733) [32ef35e]

  • Bump golang.org/x/net from 0.19.0 to 0.20.0 (#717) [a0d0387]

  • Bump github-pages and jekyll-feed in /docs (#732) [b71e477]

  • docs: fix typo and broken anchor link to gstruct [f460154]

  • docs: fix HaveEach matcher signature [a2862e4]

1.31.1

Fixes

  • Inverted arguments order of FailureMessage of BeComparableToMatcher [e0dd999]
  • Update test in case keeping msg is desired [ad1a367]

Maintenance

  • Show how to import the format sub package [24e958d]
  • tidy up go.sum [26661b8]
  • bump dependencies [bde8f7a]

1.31.0

Features

  • Async assertions include context cancellation cause if present [121c37f]

Maintenance

  • Bump minimum go version [dee1e3c]

... (truncated)

Commits
  • 8a658bb v1.33.1
  • e9bc35a Bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.17.2
  • 3a66379 fix confusing eventually docs
  • f2e65fc v1.33.0
  • 02e8706 docs: Receive(POINTER, MATCHER)
  • ec1f186 feat: receiver matcher accepting (POINTER, MATCHER), includes unit tests
  • 9999deb Bump github.com/onsi/ginkgo/v2 from 2.15.0 to 2.17.1 (#745)
  • cb5ff21 Bump github-pages from 229 to 230 in /docs (#735)
  • bac6596 Bump golang.org/x/net from 0.20.0 to 0.23.0 (#746)
  • 4379951 v1.32.0
  • Additional commits viewable in compare view

Updates github.com/prometheus/client_golang from 1.17.0 to 1.19.0

Release notes

Sourced from github.com/prometheus/client_golang's releases.

v1.19.0

What's Changed

The module prometheus/common v0.48.0 introduced an incompatibility when used together with client_golang (See prometheus/client_golang#1448 for more details). If your project uses client_golang and you want to use prometheus/common v0.48.0 or higher, please update client_golang to v1.19.0.

  • [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #1445 #1449
  • [FEATURE] collectors: Add version collector. #1422 #1427

New Contributors

Full Changelog: prometheus/client_golang@v1.18.0...v1.19.0

v1.18.0

What's Changed

  • [FEATURE] promlint: Allow creation of custom metric validations. #1311
  • [FEATURE] Go programs using client_golang can be built in wasip1 OS. #1350
  • [BUGFIX] histograms: Add timer to reset ASAP after bucket limiting has happened. #1367
  • [BUGFIX] testutil: Fix comparison of metrics with empty Help strings. #1378
  • [ENHANCEMENT] Improved performance of MetricVec.WithLabelValues(...). #1360

New Contributors

Full Changelog: prometheus/client_golang@v1.17.0...v1.18.0

Changelog

Sourced from github.com/prometheus/client_golang's changelog.

1.19.0 / 2023-02-27

The module prometheus/common v0.48.0 introduced an incompatibility when used together with client_golang (See prometheus/client_golang#1448 for more details). If your project uses client_golang and you want to use prometheus/common v0.48.0 or higher, please update client_golang to v1.19.0.

  • [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #1445 #1449
  • [FEATURE] collectors: Add version collector. #1422 #1427

1.18.0 / 2023-12-22

  • [FEATURE] promlint: Allow creation of custom metric validations. #1311
  • [FEATURE] Go programs using client_golang can be built in wasip1 OS. #1350
  • [BUGFIX] histograms: Add timer to reset ASAP after bucket limiting has happened. #1367
  • [BUGFIX] testutil: Fix comparison of metrics with empty Help strings. #1378
  • [ENHANCEMENT] Improved performance of MetricVec.WithLabelValues(...). #1360
Commits
  • 77d4003 Add 1.19.0 changelog (#1451)
  • 14259fa Merge pull request #1448 from ywwg/owilliams/content-negotiation
  • 6d03920 deps: bump prometheus/common version
  • 353395b Remove support for go 1.19 (#1449)
  • 9dd5d2a Merge pull request #1445 from kavu/add_go122_metrics_test
  • c906a5e Add support for Go 1.22
  • 7ac9036 Merge pull request #1440 from prometheus/dependabot/github_actions/github-act...
  • 8c7e30f Merge pull request #1441 from prometheus/dependabot/go_modules/tutorial/whats...
  • 08769f8 Bump github.com/prometheus/common in /tutorial/whatsup
  • 83d5940 Bump the github-actions group with 2 updates
  • Additional commits viewable in compare view

Updates github.com/spf13/viper from 1.17.0 to 1.18.2

Release notes

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

v1.18.2

tl;dr Skip 1.18.0 and 1.18.1 and upgrade to this version instead.

This release fixes a regression that appears in rare circumstances when using Unmarshal or UnmarshalExact to decode values onto pointers with multiple indirection (eg. pointer to a pointer, etc). The change was introduced in 1.18.0 as a means to resolve a long-standing bug when decoding environment variables to structs.

The feature is now disabled by default and can be enabled using the viper_bind_struct build tag. It's also considered experimental at this point, so breaking changes may be introduced in the future.

What's Changed

Bug Fixes 🐛

Full Changelog: spf13/viper@v1.18.1...v1.18.2

v1.18.1

What's Changed

Bug Fixes 🐛

Full Changelog: spf13/viper@v1.18.0...v1.18.1

v1.18.0

Major changes

Highlighting some of the changes for better visibility.

Please share your feedback in the Discussion forum. Thanks! ❤️

AutomaticEnv works with Unmarshal

Previously, environment variables that weren't bound manually or had no defaults could not be mapped by Unmarshal. (The problem is explained in details in this issue: #761)

#1429 introduced a solution that solves that issue.

What's Changed

Enhancements 🚀

Bug Fixes 🐛

Dependency Updates ⬆️

... (truncated)

Commits
  • ab3a50c fix!: hide struct binding behind a feature flag
  • 9154b90 build(deps): bump actions/setup-go from 4.1.0 to 5.0.0
  • 08e4a00 build(deps): bump github/codeql-action from 2.22.8 to 2.22.9
  • fb6eb1e fix: merge missing struct keys inside UnmarshalExact
  • f5fcb4a chore: update crypt
  • f736363 fix isPathShadowedInFlatMap type cast bug (#1585)
  • 36a3868 Review changes
  • f0c4ccd fix: gocritic lint issues
  • 3a23b80 ci: enable test shuffle; fix tests
  • 73dfb94 feat: make Unmarshal work with AutomaticEnv
  • Additional commits viewable in compare view

Updates go.etcd.io/etcd/api/v3 from 3.5.10 to 3.5.13

Release notes

Sourced from go.etcd.io/etcd/api/v3's releases.

v3.5.13

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.5.13
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version

# start a local etcd server
/tmp/etcd-download-test/etcd
write,read to etcd
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

macOS (Darwin)
ETCD_VER=v3.5.13
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
</tr></table>

... (truncated)

Commits
  • c9063a0 version: bump up to 3.5.13
  • 38f3eb3 Merge pull request #17625 from etcd-io/dependabot/docker/release-3.5/distrole...
  • 59e3f7d build(deps): bump distroless/static-debian11 from 9be3fcc to 7e5c6a2
  • 2ee038d Merge pull request #17612 from chaochn47/release-3.5-backport-fix-watch-event...
  • 46d2caa [release-3.5] backport fix watch event loss after compaction
  • 8383107 Merge pull request #17566 from serathius/progressrequest-new-watch-3.5
  • 579b22c Fix progress notification for watch that doesn't get any events
  • d0a0281 Merge pull request #17550 from ivanvc/release-3.5-add-govuln-github-workflow
  • 67afad6 Add govuln GitHub workflow
  • 65c10bc Merge pull request #17553 from ivanvc/release-3.5-bump-google-protobuf-to-1.33.0
  • Additional commits viewable in compare view

Updates go.etcd.io/etcd/client/v3 from 3.5.10 to 3.5.13

Release notes

Sourced from go.etcd.io/etcd/client/v3's releases.

v3.5.13

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.5.13
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version

# start a local etcd server
/tmp/etcd-download-test/etcd
write,read to etcd
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

macOS (Darwin)
ETCD_VER=v3.5.13
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
</tr></table>

... (truncated)

Commits
  • c9063a0 version: bump up to 3.5.13
  • 38f3eb3 Merge pull request #17625 from etcd-io/dependabot/docker/release-3.5/distrole...
  • 59e3f7d build(deps): bump distroless/static-debian11 from 9be3fcc to 7e5c6a2
  • 2ee038d Merge pull request #17612 from chaochn47/release-3.5-backport-fix-watch-event...
  • 46d2caa [release-3.5] backport fix watch event loss after compaction
  • 8383107 Merge pull request #17566 from serathius/progressrequest-new-watch-3.5
  • 579b22c Fix progress notification for watch that doesn't get any events
  • d0a0281 Merge pull request #17550 from ivanvc/release-3.5-add-govuln-github-workflow
  • 67afad6 Add govuln GitHub workflow
  • 65c10bc Merge pull request #17553 from ivanvc/release-3.5-bump-google-protobuf-to-1.33.0
  • Additional commits viewable in compare view

Updates golang.org/x/oauth2 from 0.14.0 to 0.16.0

Commits
  • 39adbb7 go.mod: update golang.org/x dependencies
  • 4ce7bbb google: add Credentials.GetUniverseDomain with GCE MDS support
  • 1e6999b google: add UniverseDomain to CredentialsParams
  • 6e9ec93 go.mod: update golang.org/x dependencies
  • See full diff in compare view

Updates golang.org/x/text from 0.14.0 to 0.15.0

Commits

Updates k8s.io/api from 0.28.4 to 0.28.9

Commits

Updates k8s.io/apiextensions-apiserver from 0.28.4 to 0.28.9

Commits

Updates k8s.io/apimachinery from 0.28.4 to 0.28.9

Commits

@dependabot dependabot bot added the ok-to-test label May 8, 2024
Copy link
Author

dependabot bot commented on behalf of github May 8, 2024

The following labels could not be found: area/dependency.

… 30 updates

Bumps the all-go-mod-patch-and-minor group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/distribution/reference](https://github.com/distribution/reference) | `0.5.0` | `0.6.0` |
| [github.com/evanphx/json-patch/v5](https://github.com/evanphx/json-patch) | `5.7.0` | `5.9.0` |
| [github.com/go-logr/logr](https://github.com/go-logr/logr) | `1.3.0` | `1.4.1` |
| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.13.1` | `2.17.3` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.17.0` | `1.19.0` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.17.0` | `1.18.2` |
| [go.etcd.io/etcd/api/v3](https://github.com/etcd-io/etcd) | `3.5.10` | `3.5.13` |
| [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd) | `3.5.10` | `3.5.13` |
| [golang.org/x/text](https://github.com/golang/text) | `0.14.0` | `0.15.0` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.28.4` | `0.28.9` |
| [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) | `0.28.4` | `0.28.9` |
| [k8s.io/cluster-bootstrap](https://github.com/kubernetes/cluster-bootstrap) | `0.28.4` | `0.28.9` |
| [k8s.io/kubectl](https://github.com/kubernetes/kubectl) | `0.28.4` | `0.28.9` |
| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.16.5` | `0.16.6` |
| [github.com/emicklei/go-restful/v3](https://github.com/emicklei/go-restful) | `3.11.0` | `3.12.0` |

Bumps the all-go-mod-patch-and-minor group with 15 updates in the /hack/tools directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/distribution/reference](https://github.com/distribution/reference) | `0.5.0` | `0.6.0` |
| [github.com/evanphx/json-patch/v5](https://github.com/evanphx/json-patch) | `5.7.0` | `5.9.0` |
| [github.com/go-logr/logr](https://github.com/go-logr/logr) | `1.3.0` | `1.4.1` |
| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.30.0` | `1.33.1` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.17.0` | `1.19.0` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.17.0` | `1.18.2` |
| [golang.org/x/text](https://github.com/golang/text) | `0.14.0` | `0.15.0` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.28.4` | `0.28.9` |
| [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) | `0.28.4` | `0.28.9` |
| [k8s.io/cluster-bootstrap](https://github.com/kubernetes/cluster-bootstrap) | `0.28.4` | `0.28.9` |
| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.16.5` | `0.16.6` |
| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.35.1` | `1.40.0` |
| [sigs.k8s.io/controller-tools](https://github.com/kubernetes-sigs/controller-tools) | `0.13.0` | `0.15.0` |
| [github.com/docker/go-connections](https://github.com/docker/go-connections) | `0.4.0` | `0.5.0` |
| [github.com/emicklei/go-restful/v3](https://github.com/emicklei/go-restful) | `3.11.0` | `3.12.0` |

Bumps the all-go-mod-patch-and-minor group with 16 updates in the /test directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/distribution/reference](https://github.com/distribution/reference) | `0.5.0` | `0.6.0` |
| [github.com/evanphx/json-patch/v5](https://github.com/evanphx/json-patch) | `5.7.0` | `5.9.0` |
| [github.com/go-logr/logr](https://github.com/go-logr/logr) | `1.3.0` | `1.4.1` |
| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.13.1` | `2.17.3` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.17.0` | `1.19.0` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.17.0` | `1.18.2` |
| [go.etcd.io/etcd/api/v3](https://github.com/etcd-io/etcd) | `3.5.10` | `3.5.13` |
| [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd) | `3.5.10` | `3.5.13` |
| [golang.org/x/text](https://github.com/golang/text) | `0.14.0` | `0.15.0` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.28.4` | `0.28.9` |
| [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) | `0.28.4` | `0.28.9` |
| [k8s.io/cluster-bootstrap](https://github.com/kubernetes/cluster-bootstrap) | `0.28.4` | `0.28.9` |
| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.16.5` | `0.16.6` |
| [github.com/docker/go-connections](https://github.com/docker/go-connections) | `0.4.0` | `0.5.0` |
| [github.com/emicklei/go-restful/v3](https://github.com/emicklei/go-restful) | `3.11.0` | `3.12.0` |
| [sigs.k8s.io/kind](https://github.com/kubernetes-sigs/kind) | `0.20.0` | `0.22.0` |



Updates `github.com/distribution/reference` from 0.5.0 to 0.6.0
- [Release notes](https://github.com/distribution/reference/releases)
- [Commits](distribution/reference@v0.5.0...v0.6.0)

Updates `github.com/evanphx/json-patch/v5` from 5.7.0 to 5.9.0
- [Release notes](https://github.com/evanphx/json-patch/releases)
- [Commits](evanphx/json-patch@v5.7.0...v5.9.0)

Updates `github.com/go-logr/logr` from 1.3.0 to 1.4.1
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](go-logr/logr@v1.3.0...v1.4.1)

Updates `github.com/onsi/ginkgo/v2` from 2.13.1 to 2.17.3
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.13.1...v2.17.3)

Updates `github.com/onsi/gomega` from 1.30.0 to 1.33.0
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.30.0...v1.33.1)

Updates `github.com/prometheus/client_golang` from 1.17.0 to 1.19.0
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.17.0...v1.19.0)

Updates `github.com/spf13/viper` from 1.17.0 to 1.18.2
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.17.0...v1.18.2)

Updates `go.etcd.io/etcd/api/v3` from 3.5.10 to 3.5.13
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.10...v3.5.13)

Updates `go.etcd.io/etcd/client/v3` from 3.5.10 to 3.5.13
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.10...v3.5.13)

Updates `golang.org/x/oauth2` from 0.14.0 to 0.16.0
- [Commits](golang/oauth2@v0.14.0...v0.16.0)

Updates `golang.org/x/text` from 0.14.0 to 0.15.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.14.0...v0.15.0)

Updates `k8s.io/api` from 0.28.4 to 0.28.9
- [Commits](kubernetes/api@v0.28.4...v0.28.9)

Updates `k8s.io/apiextensions-apiserver` from 0.28.4 to 0.28.9
- [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases)
- [Commits](kubernetes/apiextensions-apiserver@v0.28.4...v0.28.9)

Updates `k8s.io/apimachinery` from 0.28.4 to 0.28.9
- [Commits](kubernetes/apimachinery@v0.28.4...v0.28.9)

Updates `k8s.io/apiserver` from 0.28.4 to 0.28.9
- [Commits](kubernetes/apiserver@v0.28.4...v0.28.9)

Updates `k8s.io/client-go` from 0.28.4 to 0.28.9
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.28.4...v0.28.9)

Updates `k8s.io/cluster-bootstrap` from 0.28.4 to 0.28.9
- [Commits](kubernetes/cluster-bootstrap@v0.28.4...v0.28.9)

Updates `k8s.io/component-base` from 0.28.4 to 0.28.9
- [Commits](kubernetes/component-base@v0.28.4...v0.28.9)

Updates `k8s.io/kubectl` from 0.28.4 to 0.28.9
- [Commits](kubernetes/kubectl@v0.28.4...v0.28.9)

Updates `sigs.k8s.io/controller-runtime` from 0.16.5 to 0.16.6
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-runtime@v0.16.5...v0.16.6)

Updates `github.com/emicklei/go-restful/v3` from 3.11.0 to 3.12.0
- [Release notes](https://github.com/emicklei/go-restful/releases)
- [Changelog](https://github.com/emicklei/go-restful/blob/v3/CHANGES.md)
- [Commits](emicklei/go-restful@v3.11.0...v3.12.0)

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

Updates `github.com/distribution/reference` from 0.5.0 to 0.6.0
- [Release notes](https://github.com/distribution/reference/releases)
- [Commits](distribution/reference@v0.5.0...v0.6.0)

Updates `github.com/evanphx/json-patch/v5` from 5.7.0 to 5.9.0
- [Release notes](https://github.com/evanphx/json-patch/releases)
- [Commits](evanphx/json-patch@v5.7.0...v5.9.0)

Updates `github.com/go-logr/logr` from 1.3.0 to 1.4.1
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](go-logr/logr@v1.3.0...v1.4.1)

Updates `github.com/onsi/gomega` from 1.30.0 to 1.33.1
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.30.0...v1.33.1)

Updates `github.com/prometheus/client_golang` from 1.17.0 to 1.19.0
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.17.0...v1.19.0)

Updates `github.com/spf13/viper` from 1.17.0 to 1.18.2
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.17.0...v1.18.2)

Updates `golang.org/x/oauth2` from 0.14.0 to 0.16.0
- [Commits](golang/oauth2@v0.14.0...v0.16.0)

Updates `golang.org/x/text` from 0.14.0 to 0.15.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.14.0...v0.15.0)

Updates `k8s.io/api` from 0.28.4 to 0.28.9
- [Commits](kubernetes/api@v0.28.4...v0.28.9)

Updates `k8s.io/apiextensions-apiserver` from 0.28.4 to 0.28.9
- [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases)
- [Commits](kubernetes/apiextensions-apiserver@v0.28.4...v0.28.9)

Updates `k8s.io/apimachinery` from 0.28.4 to 0.28.9
- [Commits](kubernetes/apimachinery@v0.28.4...v0.28.9)

Updates `k8s.io/apiserver` from 0.28.4 to 0.28.9
- [Commits](kubernetes/apiserver@v0.28.4...v0.28.9)

Updates `k8s.io/client-go` from 0.28.4 to 0.28.9
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.28.4...v0.28.9)

Updates `k8s.io/cluster-bootstrap` from 0.28.4 to 0.28.9
- [Commits](kubernetes/cluster-bootstrap@v0.28.4...v0.28.9)

Updates `k8s.io/component-base` from 0.28.4 to 0.28.9
- [Commits](kubernetes/component-base@v0.28.4...v0.28.9)

Updates `sigs.k8s.io/controller-runtime` from 0.16.5 to 0.16.6
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-runtime@v0.16.5...v0.16.6)

Updates `cloud.google.com/go/storage` from 1.35.1 to 1.40.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@storage/v1.35.1...spanner/v1.40.0)

Updates `google.golang.org/api` from 0.150.0 to 0.170.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.150.0...v0.170.0)

Updates `sigs.k8s.io/controller-tools` from 0.13.0 to 0.15.0
- [Release notes](https://github.com/kubernetes-sigs/controller-tools/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-tools/blob/master/envtest-releases.yaml)
- [Commits](kubernetes-sigs/controller-tools@v0.13.0...v0.15.0)

Updates `github.com/docker/go-connections` from 0.4.0 to 0.5.0
- [Commits](docker/go-connections@v0.4.0...v0.5.0)

Updates `github.com/emicklei/go-restful/v3` from 3.11.0 to 3.12.0
- [Release notes](https://github.com/emicklei/go-restful/releases)
- [Changelog](https://github.com/emicklei/go-restful/blob/v3/CHANGES.md)
- [Commits](emicklei/go-restful@v3.11.0...v3.12.0)

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

Updates `google.golang.org/grpc` from 1.59.0 to 1.62.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.59.0...v1.62.1)

Updates `k8s.io/klog/v2` from 2.100.1 to 2.120.1
- [Release notes](https://github.com/kubernetes/klog/releases)
- [Changelog](https://github.com/kubernetes/klog/blob/main/RELEASE.md)
- [Commits](kubernetes/klog@v2.100.1...v2.120.1)

Updates `k8s.io/utils` from 0.0.0-20230406110748-d93618cff8a2 to 0.0.0-20230726121419-3b25d923346b
- [Commits](https://github.com/kubernetes/utils/commits)

Updates `github.com/distribution/reference` from 0.5.0 to 0.6.0
- [Release notes](https://github.com/distribution/reference/releases)
- [Commits](distribution/reference@v0.5.0...v0.6.0)

Updates `github.com/evanphx/json-patch/v5` from 5.7.0 to 5.9.0
- [Release notes](https://github.com/evanphx/json-patch/releases)
- [Commits](evanphx/json-patch@v5.7.0...v5.9.0)

Updates `github.com/go-logr/logr` from 1.3.0 to 1.4.1
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](go-logr/logr@v1.3.0...v1.4.1)

Updates `github.com/onsi/ginkgo/v2` from 2.13.1 to 2.17.3
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.13.1...v2.17.3)

Updates `github.com/onsi/gomega` from 1.30.0 to 1.33.0
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.30.0...v1.33.1)

Updates `github.com/prometheus/client_golang` from 1.17.0 to 1.19.0
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.17.0...v1.19.0)

Updates `github.com/spf13/viper` from 1.17.0 to 1.18.2
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.17.0...v1.18.2)

Updates `go.etcd.io/etcd/api/v3` from 3.5.10 to 3.5.13
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.10...v3.5.13)

Updates `go.etcd.io/etcd/client/v3` from 3.5.10 to 3.5.13
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.10...v3.5.13)

Updates `golang.org/x/oauth2` from 0.14.0 to 0.16.0
- [Commits](golang/oauth2@v0.14.0...v0.16.0)

Updates `golang.org/x/text` from 0.14.0 to 0.15.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.14.0...v0.15.0)

Updates `k8s.io/api` from 0.28.4 to 0.28.9
- [Commits](kubernetes/api@v0.28.4...v0.28.9)

Updates `k8s.io/apiextensions-apiserver` from 0.28.4 to 0.28.9
- [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases)
- [Commits](kubernetes/apiextensions-apiserver@v0.28.4...v0.28.9)

Updates `k8s.io/apimachinery` from 0.28.4 to 0.28.9
- [Commits](kubernetes/apimachinery@v0.28.4...v0.28.9)

Updates `k8s.io/apiserver` from 0.28.4 to 0.28.9
- [Commits](kubernetes/apiserver@v0.28.4...v0.28.9)

Updates `k8s.io/client-go` from 0.28.4 to 0.28.9
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.28.4...v0.28.9)

Updates `k8s.io/cluster-bootstrap` from 0.28.4 to 0.28.9
- [Commits](kubernetes/cluster-bootstrap@v0.28.4...v0.28.9)

Updates `k8s.io/component-base` from 0.28.4 to 0.28.9
- [Commits](kubernetes/component-base@v0.28.4...v0.28.9)

Updates `sigs.k8s.io/controller-runtime` from 0.16.5 to 0.16.6
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-runtime@v0.16.5...v0.16.6)

Updates `github.com/docker/go-connections` from 0.4.0 to 0.5.0
- [Commits](docker/go-connections@v0.4.0...v0.5.0)

Updates `github.com/emicklei/go-restful/v3` from 3.11.0 to 3.12.0
- [Release notes](https://github.com/emicklei/go-restful/releases)
- [Changelog](https://github.com/emicklei/go-restful/blob/v3/CHANGES.md)
- [Commits](emicklei/go-restful@v3.11.0...v3.12.0)

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

Updates `sigs.k8s.io/kind` from 0.20.0 to 0.22.0
- [Release notes](https://github.com/kubernetes-sigs/kind/releases)
- [Commits](kubernetes-sigs/kind@v0.20.0...v0.22.0)

---
updated-dependencies:
- dependency-name: github.com/distribution/reference
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/evanphx/json-patch/v5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/go-logr/logr
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/onsi/gomega
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/spf13/viper
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: go.etcd.io/etcd/api/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/oauth2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/text
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiextensions-apiserver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiserver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/cluster-bootstrap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/component-base
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/kubectl
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/emicklei/go-restful/v3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/net
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/distribution/reference
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/evanphx/json-patch/v5
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/go-logr/logr
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/onsi/gomega
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/prometheus/client_golang
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/spf13/viper
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/oauth2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/text
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiextensions-apiserver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiserver
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/cluster-bootstrap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/component-base
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: cloud.google.com/go/storage
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: google.golang.org/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/controller-tools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/docker/go-connections
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/emicklei/go-restful/v3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/net
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: google.golang.org/grpc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/klog/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/utils
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/distribution/reference
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/evanphx/json-patch/v5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/go-logr/logr
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/onsi/gomega
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/spf13/viper
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: go.etcd.io/etcd/api/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/oauth2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/text
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiextensions-apiserver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiserver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/cluster-bootstrap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/component-base
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/docker/go-connections
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/emicklei/go-restful/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/kind
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/all-go-mod-patch-and-minor-9727c7780f branch from 983ca96 to 2eeef6c Compare May 8, 2024 09:00
Copy link
Author

dependabot bot commented on behalf of github May 8, 2024

Looks like these dependencies are no longer being updated by Dependabot, so this is no longer needed.

@dependabot dependabot bot closed this May 8, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/all-go-mod-patch-and-minor-9727c7780f branch May 8, 2024 09:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant