jenkinsci / kubernetes-operator

Kubernetes native Jenkins Operator
https://jenkinsci.github.io/kubernetes-operator
Other
591 stars 231 forks source link

build(deps): bump the golang group across 1 directory with 12 updates #1010

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

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.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.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: https://github.com/distribution/distribution/compare/v2.8.2...v2.8.3

v2.8.2

What's Changed

Full Changelog: https://github.com/distribution/distribution/compare/v2.8.1...v2.8.2

v2.8.2-beta.2

What's Changed

Full Changelog: https://github.com/distribution/distribution/compare/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.2

Commits
  • e74d8b3 server: unify logic to decode SASL response
  • 170fe35 client: add Client.readResponse helper
  • 52a8bf5 Add remote addr in error handler log
  • 5e727ac Do not use HELLO as fallback of EHLO when server responds with 421
  • 8fc2197 client: fix server responses in TestClient_TooLongLine
  • 50fb661 ci: add gofmt check
  • 55c4101 ci: enable data race detector
  • 262ffd9 ci: switch to alpine/latest
  • a990aa0 server: fix TestServerAcceptErrorHandling data race
  • 6f31b3a server: fix failingListener data race in tests
  • 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: https://github.com/go-logr/logr/compare/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: https://github.com/go-logr/logr/compare/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: https://github.com/go-logr/zapr/compare/v1.2.4...v1.3.0

v1.2.4

What's Changed

New Contributors

Full Changelog: https://github.com/go-logr/zapr/compare/v1.2.3...v1.2.4

v1.2.3

What's Changed

Full Changelog: https://github.com/go-logr/zapr/compare/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: https://github.com/stretchr/testify/compare/v1.8.3...v1.8.4

v1.8.3

What's Changed

New Contributors

Full Changelog: https://github.com/stretchr/testify/compare/v1.8.2...v1.8.3

v1.8.2

What's Changed

New Contributors

Full Changelog: https://github.com/stretchr/testify/compare/v1.8.1...v1.8.2

v1.8.1

What's Changed

Full Changelog: https://github.com/stretchr/testify/compare/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.

#1297

dependabot[bot] commented 1 month ago

Superseded by #1017.