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 across 1 directory with 12 updates #1009

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Apr 30, 2024

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

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.21.1
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.33.1

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.21.1

Commits
  • 029f751 client: adjust TestClientAuthTrimSpace comments
  • dd39b35 Fix anonymous authentication with empty trace information string
  • ff8f376 server: rename toSMTPStatus to dataErrorToStatus
  • bec733d server: add Conn.writeError
  • 53172ad Update example server auth for AuthSession interface in 0.21.0 update
  • dd32c05 Rename SendMail PLAIN auth example
  • ab41a2a client: drop defaultTimeout constant
  • 1f30586 Drop Server.AuthDisabled
  • 968926f Drop Session.AuthPlain
  • 8063c1a Disable AUTH when AuthSession.AuthMechanisms is empty
  • 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.33.1

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/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, @​cdvr1993 for their contributions to this release.

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

| 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.21.1` |
| [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.33.1` |



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.21.1
- [Release notes](https://github.com/emersion/go-smtp/releases)
- [Commits](emersion/go-smtp@v0.11.2...v0.21.1)

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.33.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.33.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.22.0
- [Commits](https://github.com/golang/crypto/commits/v0.22.0)

Updates `golang.org/x/mod` from 0.4.2 to 0.17.0
- [Commits](golang/mod@v0.4.2...v0.17.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: 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 force-pushed the dependabot/go_modules/golang-cef01a1729 branch from a1a3334 to 1bf270a Compare May 6, 2024 03:13
Copy link
Author

dependabot bot commented on behalf of github May 8, 2024

Superseded by #1010.

@dependabot dependabot bot closed this May 8, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/golang-cef01a1729 branch May 8, 2024 03:42
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