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

build(deps): bump the golang group with 16 updates #989

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 18, 2024

Bumps the golang group with 16 updates:

Package From To
github.com/bndr/gojenkins 1.0.1 1.1.0
github.com/docker/distribution 2.7.1+incompatible 2.8.3+incompatible
github.com/emersion/go-smtp 0.11.2 0.20.2
github.com/go-logr/logr 0.3.0 1.4.1
github.com/go-logr/zapr 0.2.0 1.3.0
github.com/golang/mock 1.4.1 1.6.0
github.com/onsi/ginkgo 1.14.1 1.16.5
github.com/onsi/gomega 1.10.2 1.31.1
github.com/stretchr/testify 1.6.1 1.8.4
go.uber.org/zap 1.15.0 1.26.0
golang.org/x/crypto 0.0.0-20201002170205-7f63de1d35b0 0.16.0
k8s.io/cli-runtime 0.20.2 0.29.3
k8s.io/client-go 0.20.2 0.29.3
k8s.io/utils 0.0.0-20201110183641-67b214c5f920 0.0.0-20230726121419-3b25d923346b
sigs.k8s.io/controller-runtime 0.7.0 0.17.2
golang.org/x/mod 0.4.2 0.14.0

Updates github.com/bndr/gojenkins from 1.0.1 to 1.1.0

Release notes

Sourced from github.com/bndr/gojenkins's releases.

v1.1.0

API Changes:

Added context as input parameter to functions to enable better debugging

Bug fixes:

#214 Jenkins.Init() should check Response.StatusCode

Features:

#220 Add GetBuildFromQueueID() function return the build object base on task/queue id #221 BuildJob accept map as argument rather than a slice

Commits
  • b39080e Merge pull request #214 from Bpazy/master
  • ab81397 Merge pull request #221 from figo/master
  • 27e7500 BuildJob accept map as argument rather than a slice
  • 980672b Merge pull request #220 from figo/context
  • 9a48339 Address review comments
  • e585cee Add GetBuildFromQueueID() function
  • 71e145f Add context in functions to make debugging easier
  • aa8503c Merge pull request #204 from rms1000watt/duration-int64-to-float64
  • 3655c42 Jenkins.Init() should check Response.StatusCode #210
  • 7c9e106 durations from int64 to float64
  • Additional commits viewable in compare view

Updates github.com/docker/distribution from 2.7.1+incompatible to 2.8.3+incompatible

Release notes

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

v2.8.3

What's Changed

New Contributors

Full Changelog: distribution/distribution@v2.8.2...v2.8.3

v2.8.2

What's Changed

Full Changelog: distribution/distribution@v2.8.1...v2.8.2

v2.8.2-beta.2

What's Changed

Full Changelog: distribution/distribution@v2.8.1...v2.8.2-beta.2

v2.8.2-beta.1

... (truncated)

Commits
  • 4772604 Merge pull request #4088 from distribution/2.8.3-release-notes
  • a4fa699 Add v2.8.3 release notes
  • 1eb2c30 Merge pull request #4068 from milosgajdos/2_8-dont-close-request-body
  • 5e6b1b5 Do not close HTTP request body in HTTP handler
  • 2b76378 Merge pull request #4064 from thaJeztah/2.8_backport_nodigestset
  • 29b00e8 digestset: deprecate package in favor of go-digest/digestset
  • d1ab243 [release/2.8] vendor: github.com/opencontainers/go-digest v1.0.0
  • 11eb419 Merge pull request #4063 from thaJeztah/2.8_backport_switch_reference
  • 3dda067 deprecate reference package, migrate to github.com/distribution/reference
  • da05539 Merge pull request #4053 from thaJeztah/2.8_backport_set-content-type-client-...
  • Additional commits viewable in compare view

Updates github.com/emersion/go-smtp from 0.11.2 to 0.20.2

Commits
  • 434ddca Parse DATA\r\n\r\n.\r\n as \r\n\r\n message
  • df9dfa9 Fix Conn.Hostname being empty when NewSession is called
  • da7af50 server: use netcat -C instead of telnet for example testing
  • 4877066 Prevent <LF>.<CR><LF> SMTP smuggling attacks
  • 6ecbad7 client: drop Client.tls
  • 4e0e400 client: delay greeting
  • c28f507 Add SMTP smuggling test
  • cd06f48 Remove DotLF to EOFState case
  • 7c803aa Remove host argument from NewClient
  • 7f9654d Add TLS warning in Dial
  • Additional commits viewable in compare view

Updates github.com/go-logr/logr from 0.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

v1.3.0

This release adds support for slog in a new, self-contained logr/slogr package. Implementers of a logr.LogSink are encouraged, but not required, to extend their implementation to improve the quality of log output coming from a slog API call.

Breaking change: the call depth for LogSink.Enabled when called via Logger.Enabled was fixed to be the same as for other call paths. Implementers of a LogSink who have worked around this bug will need to remove their workarounds.

Security best practices were improved. Only Go versions >= 1.18 are supported by this release.

What's Changed

... (truncated)

Changelog

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

CHANGELOG

v1.0.0-rc1

This is the first logged release. Major changes (including breaking changes) have occurred since earlier tags.

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/go-logr/zapr from 0.2.0 to 1.3.0

Release notes

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

v1.3.0

This release adds support for slog. zapr implements slogr.SlogSink and therefore can be used through slogr.NewSlogHandler as backend for slog.

What's Changed


New Contributors

Full Changelog: go-logr/zapr@v1.2.4...v1.3.0

v1.2.4

What's Changed

New Contributors

Full Changelog: go-logr/zapr@v1.2.3...v1.2.4

v1.2.3

What's Changed

Full Changelog: go-logr/zapr@v1.2.2...v1.2.3

v1.2.2

Update to logr v1.2.2

v1.2.0

This release has some improvements:

  • added support for logr.Marshaler
  • moved code examples to make them visible in gopkg.dev

... (truncated)

Commits
  • 78b8af5 Merge pull request #60 from pohly/slog
  • ae27dfc support slog + logr 1.3.0
  • 6684601 Merge pull request #71 from go-logr/dependabot/go_modules/github.com/go-logr/...
  • 4d152a1 Bump github.com/go-logr/logr from 1.2.4 to 1.3.0
  • 191bfc4 Merge pull request #61 from pohly/linting
  • fe8a3cc Merge pull request #70 from go-logr/dependabot/go_modules/go.uber.org/zap-1.26.0
  • 575b337 Bump go.uber.org/zap from 1.25.0 to 1.26.0
  • 437f574 Merge pull request #64 from go-logr/dependabot/go_modules/go.uber.org/zap-1.25.0
  • 203c517 Merge pull request #69 from go-logr/dependabot/github_actions/actions/checkout-4
  • 2aef912 Bump actions/checkout from 3 to 4
  • Additional commits viewable in compare view

Updates github.com/golang/mock from 1.4.1 to 1.6.0

Release notes

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

v1.6.0

Changelog

317c030 Best effort guesses for output package path (#547) c59ba11 add ARM to support apple M1 chip to releaser (#562) 58935d8 add a basic CONTRIBUTING.md (#535) a5582fc add docs on 1.16 install and adding to PATH (#534) 0cd3aaf add flags documentation (#539) 64b0b80 add notes and error helper for vendor+reflect error (#567) e303461 add type information to error messages (#559) 0cdccf5 feat add InAnyOrder matcher (#546) 82ce4a7 feat validate Do & DoReturn args (#558) 93308c3 fix broken badge (#525) 9336b7e fix error message in parse.go (#540) ab03293 fix ill-formatted message with fmt-verbs like %s (#564) bb5fd5e fix linter errors (#552) aba2ff9 fix parse array with the external const correctly (#569) 6ff1070 fix parse arrays with const length correctly (#520) 7f5f64d fixup some docs and templates (#524) 7078515 refactor go:generate lines so they are consistently placed (#527) 7105dde refactor mockgen and cleanup (#536) f36d14a test(sample/user_test.go): minor correction at t.Errorf (#544) ef4ad87 update CI for 1.16 (#526) ad820b0 update Finish docs for Go1.14+ (#556) 2421472 update dependencies (#528) 953a5bb update user mock to be in test package (#566) d19a212 upgrade dependencies (#557)

v1.5.0

Changelog

0b87a54 Add a period to the end of comments (#414) d2fe5cd Add example for Call.Do and Call.DoAndReturn (#470) 91d4b5c Add tests for various Do/DoAndReturn calls (#430) 92f53b0 Avoid using packages.Load (#420) aff3767 Fix empty error message when call is exhausted (#460) 8734ec5 Format generated files with goimports (#458) 69e02d3 MOCK-429: add support for assignable types to Eq matcher (#481) d476d65 Parse parenthesized parameter-type. (#421) ccaa079 Using pacakges.NeedName (#418) f67ce0c add CODEOWNERS file (#522) 6d816de add default calling of ctrl.Finish() in go1.14+ (#422) 7b53c4d check error for os.Setenv in parse_test.go (#472) b9a8584 deduplicate methods to allow overlapping methods on embedded interfaces (#498) 10192bd fix 1.11 ga test failure (#511) dcd893e fix Test_createPackageMap for 1.15 (#512) 44e6f1e fix docs for AssignableToTypeOf (#452) a23c5e7 fix issues related to source package imports (#507) 11d9cab fix readme docs on removing Finish calls (#461) 0f6dc21 format variadic arguments with GotFormatter (#434)

... (truncated)

Commits

Updates github.com/onsi/ginkgo from 1.14.1 to 1.16.5

Release notes

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

v1.16.5

1.16.5

Ginkgo 2.0 now has a Release Candidate. 1.16.5 advertises the existence of the RC. 1.16.5 deprecates GinkgoParallelNode in favor of GinkgoParallelProcess

You can silence the RC advertisement by setting an ACK_GINKG_RC=true environment variable or creating a file in your home directory called .ack-ginkgo-rc

v1.16.4

1.16.4

Fixes

1.16.4 retracts 1.16.3. There are no code changes. The 1.16.3 tag was associated with the wrong commit and an attempt to change it after-the-fact has proven problematic. 1.16.4 retracts 1.16.3 in Ginkgo's go.mod and creates a new, correctly tagged, release.

v1.16.3

1.16.3

Features

  • Measure is now deprecated and emits a deprecation warning.

v1.16.2

1.16.2

Fixes

  • Deprecations can be suppressed by setting an ACK_GINKGO_DEPRECATIONS=<semver> environment variable.

v1.16.1

Fixes

  • Supress --stream deprecation warning on windows (#793)

1.16.0

Features

  • Advertise Ginkgo 2.0. Introduce deprecations. [9ef1913]

    • Update README.md to advertise that Ginkgo 2.0 is coming.
    • Backport the 2.0 DeprecationTracker and start alerting users about upcoming deprecations.
  • Add slim-sprig template functions to bootstrap/generate (#775) [9162b86]

Fixes

  • Fix accidental reference to 1488 (#784) [9fb7fe4]

v1.15.2

Fixes

  • ignore blank -focus and -skip flags (#780) [e90a4a0]

v1.15.1

Fixes

  • reporters/junit: Use system-out element instead of passed (#769) [9eda305]

... (truncated)

Changelog

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

1.16.5

Ginkgo 2.0 now has a Release Candidate. 1.16.5 advertises the existence of the RC. 1.16.5 deprecates GinkgoParallelNode in favor of GinkgoParallelProcess

You can silence the RC advertisement by setting an ACK_GINKGO_RC=true environment variable or creating a file in your home directory called .ack-ginkgo-rc

1.16.4

Fixes

1.16.4 retracts 1.16.3. There are no code changes. The 1.16.3 tag was associated with the wrong commit and an attempt to change it after-the-fact has proven problematic. 1.16.4 retracts 1.16.3 in Ginkgo's go.mod and creates a new, correctly tagged, release.

1.16.3

Features

  • Measure is now deprecated and emits a deprecation warning.

1.16.2

Fixes

  • Deprecations can be suppressed by setting an ACK_GINKGO_DEPRECATIONS=<semver> environment variable.

1.16.1

Fixes

  • Suppress --stream deprecation warning on windows (#793)

1.16.0

Features

  • Advertise Ginkgo 2.0. Introduce deprecations. [9ef1913]

    • Update README.md to advertise that Ginkgo 2.0 is coming.
    • Backport the 2.0 DeprecationTracker and start alerting users about upcoming deprecations.
  • Add slim-sprig template functions to bootstrap/generate (#775) [9162b86]

  • Fix accidental reference to 1488 (#784) [9fb7fe4]

1.15.2

Fixes

  • ignore blank -focus and -skip flags (#780) [e90a4a0]

1.15.1

Fixes

  • reporters/junit: Use system-out element instead of passed (#769) [9eda305]

1.15.0

... (truncated)

Commits
  • d38b9d9 v1.16.5
  • b55f80d Mention release candidate and deprecate GinkgoParallelNode in favor of Ginkgo...
  • d8e9d10 Move v2 to ver2 to play better with the go toolchain
  • 8a172cc Advertise GInkgo 2.0 beta
  • a12d699 Add no-op Setenv to GinkgoT
  • 81705fc chore: Go 1.17 released
  • f250977 remove travis-ci
  • afce52e drop 1.15 in github test workflow
  • d125cd0 v1.16.4
  • 3286b30 v1.16.3
  • Additional commits viewable in compare view

Updates github.com/onsi/gomega from 1.10.2 to 1.31.1

Release notes

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

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

Features

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

Maintenance

  • Bump minimum go version [dee1e3c]
  • docs: fix typo in example usage "occured" -> "occurred" [49005fe]
  • Bump actions/setup-go from 4 to 5 (#714) [f1c8757]
  • Bump github/codeql-action from 2 to 3 (#715) [9836e76]
  • Bump github.com/onsi/ginkgo/v2 from 2.13.0 to 2.13.2 (#713) [54726f0]
  • Bump golang.org/x/net from 0.17.0 to 0.19.0 (#711) [df97ecc]
  • docs: fix HaveExactElement typo (#712) [a672c86]

v1.30.0

1.30.0

Features

  • BeTrueBecause and BeFalseBecause allow for better failure messages [4da4c7f]

Maintenance

  • Bump actions/checkout from 3 to 4 (#694) [6ca6e97]
  • doc: fix type on gleak go doc [f1b8343]

v1.29.0

1.29.0

Features

  • MatchError can now take an optional func(error) bool + description [2b39142]

v1.28.1

1.28.1

Maintenance

  • Bump github.com/onsi/ginkgo/v2 from 2.12.0 to 2.13.0 [635d196]
  • Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 [14f8859]
  • Bump golang.org/x/net from 0.14.0 to 0.17.0 [d8a6508]

... (truncated)

Changelog

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

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]
  • docs: fix typo in example usage "occured" -> "occurred" [49005fe]
  • Bump actions/setup-go from 4 to 5 (#714) [f1c8757]
  • Bump github/codeql-action from 2 to 3 (#715) [9836e76]
  • Bump github.com/onsi/ginkgo/v2 from 2.13.0 to 2.13.2 (#713) [54726f0]
  • Bump golang.org/x/net from 0.17.0 to 0.19.0 (#711) [df97ecc]
  • docs: fix HaveExactElement typo (#712) [a672c86]

1.30.0

Features

  • BeTrueBecause and BeFalseBecause allow for better failure messages [4da4c7f]

Maintenance

  • Bump actions/checkout from 3 to 4 (#694) [6ca6e97]
  • doc: fix type on gleak go doc [f1b8343]

1.29.0

Features

  • MatchError can now take an optional func(error) bool + description [2b39142]

1.28.1

Maintenance

  • Bump github.com/onsi/ginkgo/v2 from 2.12.0 to 2.13.0 [635d196]
  • Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 [14f8859]
  • Bump golang.org/x/net from 0.14.0 to 0.17.0 [d8a6508]
  • #703 doc(matchers): HaveEach() doc comment updated [2705bdb]
  • Minor typos (#699) [375648c]

1.28.0

... (truncated)

Commits
  • 762b171 v1.31.1
  • 26661b8 tidy up go.sum
  • bde8f7a bump dependencies
  • 24e958d Show how to import the format sub package
  • ad1a367 Update test in case keeping msg is desired
  • e0dd999 Inverted arguments order of FailureMessage of BeComparableToMatcher
  • ba8bba2 v1.31.0
  • 121c37f Async assertions include context cancellation cause if present
  • dee1e3c Bump minimum go version
  • 49005fe docs: fix typo in example usage "occured" -> "occurred"
  • Additional commits viewable in compare view

Updates github.com/stretchr/testify from 1.6.1 to 1.8.4

Release notes

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

v1.8.4

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.8.3...v1.8.4

v1.8.3

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.8.2...v1.8.3

v1.8.2

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.8.1...v1.8.2

v1.8.1

What's Changed

Full Changelog: stretchr/testify@v1.8.0...v1.8.1

v1.8.0

... (truncated)

Commits

Updates go.uber.org/zap from 1.15.0 to 1.26.0

Release notes

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

v1.26.0

Enhancements:

  • #1297[]: Add Dict as a Field.
  • #1319[]: Add WithLazy method to Logger which lazily evaluates the structured context.
  • #1350[]: String encoding is much (~50%) faster now.

Thanks to @​hhk7734, @​jquirke,

Bumps the golang group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/bndr/gojenkins](https://github.com/bndr/gojenkins) | `1.0.1` | `1.1.0` |
| [github.com/docker/distribution](https://github.com/docker/distribution) | `2.7.1+incompatible` | `2.8.3+incompatible` |
| [github.com/emersion/go-smtp](https://github.com/emersion/go-smtp) | `0.11.2` | `0.20.2` |
| [github.com/go-logr/logr](https://github.com/go-logr/logr) | `0.3.0` | `1.4.1` |
| [github.com/go-logr/zapr](https://github.com/go-logr/zapr) | `0.2.0` | `1.3.0` |
| [github.com/golang/mock](https://github.com/golang/mock) | `1.4.1` | `1.6.0` |
| [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) | `1.14.1` | `1.16.5` |
| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.10.2` | `1.31.1` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.6.1` | `1.8.4` |
| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.15.0` | `1.26.0` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.0.0-20201002170205-7f63de1d35b0` | `0.16.0` |
| [k8s.io/cli-runtime](https://github.com/kubernetes/cli-runtime) | `0.20.2` | `0.29.3` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.20.2` | `0.29.3` |
| [k8s.io/utils](https://github.com/kubernetes/utils) | `0.0.0-20201110183641-67b214c5f920` | `0.0.0-20230726121419-3b25d923346b` |
| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.7.0` | `0.17.2` |
| [golang.org/x/mod](https://github.com/golang/mod) | `0.4.2` | `0.14.0` |


Updates `github.com/bndr/gojenkins` from 1.0.1 to 1.1.0
- [Release notes](https://github.com/bndr/gojenkins/releases)
- [Changelog](https://github.com/bndr/gojenkins/blob/master/build_history.go)
- [Commits](bndr/gojenkins@v1.0.1...v1.1.0)

Updates `github.com/docker/distribution` from 2.7.1+incompatible to 2.8.3+incompatible
- [Release notes](https://github.com/docker/distribution/releases)
- [Commits](distribution/distribution@v2.7.1...v2.8.3)

Updates `github.com/emersion/go-smtp` from 0.11.2 to 0.20.2
- [Release notes](https://github.com/emersion/go-smtp/releases)
- [Commits](emersion/go-smtp@v0.11.2...v0.20.2)

Updates `github.com/go-logr/logr` from 0.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@v0.3.0...v1.4.1)

Updates `github.com/go-logr/zapr` from 0.2.0 to 1.3.0
- [Release notes](https://github.com/go-logr/zapr/releases)
- [Commits](go-logr/zapr@v0.2.0...v1.3.0)

Updates `github.com/golang/mock` from 1.4.1 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.1...v1.6.0)

Updates `github.com/onsi/ginkgo` from 1.14.1 to 1.16.5
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v1.14.1...v1.16.5)

Updates `github.com/onsi/gomega` from 1.10.2 to 1.31.1
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.10.2...v1.31.1)

Updates `github.com/stretchr/testify` from 1.6.1 to 1.8.4
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.6.1...v1.8.4)

Updates `go.uber.org/zap` from 1.15.0 to 1.26.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.15.0...v1.26.0)

Updates `golang.org/x/crypto` from 0.0.0-20201002170205-7f63de1d35b0 to 0.16.0
- [Commits](https://github.com/golang/crypto/commits/v0.16.0)

Updates `k8s.io/cli-runtime` from 0.20.2 to 0.29.3
- [Commits](kubernetes/cli-runtime@v0.20.2...v0.29.3)

Updates `k8s.io/client-go` from 0.20.2 to 0.29.3
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.20.2...v0.29.3)

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

Updates `sigs.k8s.io/controller-runtime` from 0.7.0 to 0.17.2
- [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.7.0...v0.17.2)

Updates `golang.org/x/mod` from 0.4.2 to 0.14.0
- [Commits](golang/mod@v0.4.2...v0.14.0)

---
updated-dependencies:
- dependency-name: github.com/bndr/gojenkins
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/docker/distribution
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/emersion/go-smtp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/go-logr/logr
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: golang
- dependency-name: github.com/go-logr/zapr
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: golang
- dependency-name: github.com/golang/mock
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/onsi/ginkgo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/onsi/gomega
  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/zap
  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: k8s.io/cli-runtime
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: k8s.io/utils
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: golang.org/x/mod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 18, 2024
Copy link
Author

dependabot bot commented on behalf of github Mar 19, 2024

Superseded by #990.

@dependabot dependabot bot closed this Mar 19, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/golang-83fd8d58db branch March 19, 2024 04:05
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