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

fix(deps): update mend: high confidence minor and patch dependency updates #19

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

mend-for-github-com[bot]
Copy link

@mend-for-github-com mend-for-github-com bot commented Jan 3, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/docker/docker v20.10.8+incompatible -> v20.10.27+incompatible age adoption passing confidence
github.com/onsi/ginkgo/v2 v2.17.3 -> v2.22.2 age adoption passing confidence
github.com/stretchr/testify v1.9.0 -> v1.10.0 age adoption passing confidence
github.com/stretchr/testify v1.8.4 -> v1.10.0 age adoption passing confidence
github.com/stretchr/testify v1.7.0 -> v1.10.0 age adoption passing confidence
go.uber.org/zap v1.21.0 -> v1.27.0 age adoption passing confidence
golang.org/x/sys v0.15.0 -> v0.29.0 age adoption passing confidence
golang.org/x/sys v0.3.0 -> v0.29.0 age adoption passing confidence
golang.org/x/text v0.14.0 -> v0.21.0 age adoption passing confidence
golang.org/x/text v0.5.0 -> v0.21.0 age adoption passing confidence
k8s.io/apimachinery v0.27.4 -> v0.32.0 age adoption passing confidence
k8s.io/klog/v2 v2.5.0 -> v2.130.1 age adoption passing confidence
sigs.k8s.io/controller-runtime v0.14.6 -> v0.19.4 age adoption passing confidence
sigs.k8s.io/yaml v1.3.0 -> v1.4.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

docker/docker (github.com/docker/docker)

v20.10.27+incompatible

Compare Source

v20.10.26+incompatible

Compare Source

v20.10.25+incompatible

Compare Source

v20.10.24+incompatible

Compare Source

v20.10.23+incompatible

Compare Source

v20.10.22+incompatible

Compare Source

v20.10.21+incompatible

Compare Source

v20.10.20+incompatible

Compare Source

v20.10.19+incompatible

Compare Source

v20.10.18+incompatible

Compare Source

v20.10.17+incompatible

Compare Source

v20.10.16+incompatible

Compare Source

v20.10.15+incompatible

Compare Source

v20.10.14+incompatible

Compare Source

v20.10.13+incompatible

Compare Source

v20.10.12+incompatible

Compare Source

v20.10.11+incompatible

Compare Source

v20.10.10+incompatible

Compare Source

v20.10.9+incompatible

Compare Source

onsi/ginkgo (github.com/onsi/ginkgo/v2)

v2.22.2

Compare Source

What's Changed

Full Changelog: onsi/ginkgo@v2.22.1...v2.22.2

v2.22.1

Compare Source

2.22.1

Fixes

Fix CSV encoding

Maintenance
  • ensure *.test files are gitignored so we don't accidentally commit compiled tests again [c88c634]
  • remove golang.org/x/net/context in favour of stdlib context [4df44bf]

v2.22.0

Compare Source

2.22.0

Features
  • Add label to serial nodes [0fcaa08]

This allows serial tests to be filtered using the label-filter

Maintenance

Various doc fixes

v2.21.0

Compare Source

2.21.0

Features
  • add support for GINKGO_TIME_FORMAT [a69eb39]
  • add GINKGO_NO_COLOR to disable colors via environment variables [bcab9c8]
Fixes
  • increase threshold in timeline matcher [e548367]
  • Fix the document by replacing SpecsThatWillBeRun with SpecsThatWillRun
    [c2c4d3c]
Maintenance
  • bump various dependencies [7e65a00]

v2.20.2

Compare Source

2.20.2

Require Go 1.22+

Maintenance

v2.20.1

Compare Source

2.20.1

Fixes
  • make BeSpecEvent duration matcher more forgiving [d6f9640]

v2.20.0

Compare Source

2.20.0

Features
Maintenance
  • Add update-deps to makefile [d303d14]
  • bump all dependencies [7a50221]

v2.19.1

Compare Source

2.19.1

Fixes
  • update supported platforms for race conditions [63c8c30]
  • [build] Allow custom name for binaries. [ff41e27]
Maintenance

v2.19.0

Compare Source

2.19.0

Features

Label Sets allow for more expressive and flexible label filtering.

v2.18.0

Compare Source

2.18.0

Features
  • Add --slience-skips and --force-newlines [f010b65]
  • fail when no tests were run and --fail-on-empty was set [d80eebe]
Fixes
  • Fix table entry context edge case [42013d6]
Maintenance
stretchr/testify (github.com/stretchr/testify)

v1.10.0

Compare Source

What's Changed
Functional Changes
Fixes
Documantation, Build & CI
New Contributors

Full Changelog: stretchr/testify@v1.9.0...v1.10.0

uber-go/zap (go.uber.org/zap)

v1.27.0

Compare Source

Enhancements:

  • #​1378: Add WithLazy method for SugaredLogger.
  • #​1399: zaptest: Add NewTestingWriter for customizing TestingWriter with more flexibility than NewLogger.
  • #​1406: Add Log, Logw, Logln methods for SugaredLogger.
  • #​1416: Add WithPanicHook option for testing panic logs.

Thanks to @​defval, @​dimmo, @​arxeiss, and @​MKrupauskas for their contributions to this release.

v1.26.0

Compare Source

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.

v1.25.0

Compare Source

This release contains several improvements including performance, API additions,
and two new experimental packages whose APIs are unstable and may change in the
future.

Enhancements:

  • #​1246: Add zap/exp/zapslog package for integration with slog.
  • #​1273: Add Name to Logger which returns the Logger's name if one is set.
  • #​1281: Add zap/exp/expfield package which contains helper methods
    Str and Strs for constructing String-like zap.Fields.
  • #​1310: Reduce stack size on Any.

Thanks to @​knight42, @​dzakaammar, @​bcspragu, and @​rexywork for their contributions
to this release.

v1.24.0

Compare Source

Enhancements:

  • #​1148: Add Level to both Logger and SugaredLogger that reports the
    current minimum enabled log level.
  • #​1185: SugaredLogger turns errors to zap.Error automatically.

Thanks to @​Abirdcfly, @​craigpastro, @​nnnkkk7, and @​sashamelentyev for their
contributions to this release.

v1.23.0

Compare Source

Enhancements:

  • #​1147: Add a zapcore.LevelOf function to determine the level of a
    LevelEnabler or Core.
  • #​1155: Add zap.Stringers field constructor to log arrays of objects
    that implement String() string.

v1.22.0

Compare Source

Enhancements:

  • #​1071: Add zap.Objects and zap.ObjectValues field constructors to log
    arrays of objects. With these two constructors, you don't need to implement
    zapcore.ArrayMarshaler for use with zap.Array if those objects implement
    zapcore.ObjectMarshaler.
  • #​1079: Add SugaredLogger.WithOptions to build a copy of an existing
    SugaredLogger with the provided options applied.
  • #​1080: Add *ln variants to SugaredLogger for each log level.
    These functions provide a string joining behavior similar to fmt.Println.
  • #​1088: Add zap.WithFatalHook option to control the behavior of the
    logger for Fatal-level log entries. This defaults to exiting the program.
  • #​1108: Add a zap.Must function that you can use with NewProduction or
    NewDevelopment to panic if the system was unable to build the logger.
  • #​1118: Add a Logger.Log method that allows specifying the log level for
    a statement dynamically.

Thanks to @​cardil, @​craigpastro, @​sashamelentyev, @​shota3506, and @​zhupeijun
for their contributions to this release.

kubernetes/apimachinery (k8s.io/apimachinery)

v0.32.0

Compare Source

v0.31.4

Compare Source

v0.31.3

Compare Source

v0.31.2

Compare Source

v0.31.1

Compare Source

v0.31.0

Compare Source

v0.30.8

Compare Source

v0.30.7

Compare Source

v0.30.6

Compare Source

v0.30.5

Compare Source

v0.30.4

Compare Source

v0.30.3

Compare Source

v0.30.2

Compare Source

v0.30.1

Compare Source

v0.30.0

Compare Source

v0.29.12

Compare Source

v0.29.11

Compare Source

v0.29.10

Compare Source

v0.29.9

Compare Source

v0.29.8

Compare Source

v0.29.7

Compare Source

v0.29.6

Compare Source

v0.29.5

Compare Source

v0.29.4

Compare Source

v0.29.3

Compare Source

v0.29.2

Compare Source

v0.29.1

Compare Source

v0.29.0

Compare Source

v0.28.15

Compare Source

v0.28.14

Compare Source

v0.28.13

Compare Source

v0.28.12

Compare Source

v0.28.11

Compare Source

v0.28.10

Compare Source

v0.28.9

Compare Source

v0.28.8

Compare Source

v0.28.7

Compare Source

v0.28.6

Compare Source

v0.28.5

Compare Source

v0.28.4

Compare Source

v0.28.3

Compare Source

v0.28.2

Compare Source

v0.28.1

Compare Source

v0.28.0

Compare Source

v0.27.16

Compare Source

v0.27.15

Compare Source

v0.27.14

Compare Source

v0.27.13

Compare Source

v0.27.12

Compare Source

v0.27.11

Compare Source

v0.27.10

Compare Source

v0.27.9

Compare Source

v0.27.8

Compare Source

v0.27.7

Compare Source

v0.27.6

Compare Source

v0.27.5

Compare Source

kubernetes/klog (k8s.io/klog/v2)

v2.130.1: Prepare klog release for Kubernetes v1.31 (Take 2)

Compare Source

What's Changed

Full Changelog: kubernetes/klog@v2.130.0...v2.130.1

v2.130.0: Prepare klog release for Kubernetes v1.31 (Take 1)

Compare Source

What's Changed

New Contributors

Full Changelog: kubernetes/klog@v2.120.1...v2.130.0

v2.120.1: Prepare klog release for Kubernetes v1.30 (Take 2)

Compare Source

What's Changed

Full Changelog: kubernetes/klog@v2.120.0...v2.120.1

v2.120.0: Prepare klog release for Kubernetes v1.30 (Take 1)

Compare Source

What's Changed

New Contributors

Full Changelog: kubernetes/klog@v2.110.1...v2.120.0

v2.110.1: Prepare klog release for Kubernetes v1.29 (Take 1)

Compare Source

What's Changed

New Contributors

Full Changelog: kubernetes/klog@v2.100.1...v2.110.1

v2.100.1: Prepare klog release for Kubernetes v1.28 (Take 1)

Compare Source

What's Changed

New Contributors

Full Changelog: kubernetes/klog@v2.90.1...v2.100.1

v2.90.1: Prepare klog release for Kubernetes v1.27 (Take 2)

Compare Source

What's Changed


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from cc90c13 to 1edf2e7 Compare January 22, 2024 02:01
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from d51a704 to 57e0813 Compare February 19, 2024 02:01
@mend-for-github-com mend-for-github-com bot changed the title Update Mend: high confidence minor and patch dependency updates Update module sigs.k8s.io/yaml to v1.4.0 Feb 28, 2024
@mend-for-github-com mend-for-github-com bot changed the title Update module sigs.k8s.io/yaml to v1.4.0 Update Mend: high confidence minor and patch dependency updates Mar 1, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 57e0813 to 096e37a Compare March 2, 2024 02:01
@mend-for-github-com mend-for-github-com bot changed the title Update Mend: high confidence minor and patch dependency updates Update module sigs.k8s.io/yaml to v1.4.0 Mar 3, 2024
@mend-for-github-com mend-for-github-com bot changed the title Update module sigs.k8s.io/yaml to v1.4.0 Update Mend: high confidence minor and patch dependency updates Mar 5, 2024
@mend-for-github-com mend-for-github-com bot changed the title Update Mend: high confidence minor and patch dependency updates Update module sigs.k8s.io/yaml to v1.4.0 Mar 6, 2024
@mend-for-github-com mend-for-github-com bot changed the title Update module sigs.k8s.io/yaml to v1.4.0 Update Mend: high confidence minor and patch dependency updates Mar 7, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 096e37a to 8a43630 Compare March 9, 2024 02:01
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 3 times, most recently from 9a49a1e to 23170fb Compare March 21, 2024 02:01
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 8 times, most recently from e565b8c to b7f1574 Compare April 2, 2024 02:01
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 5 times, most recently from d10dbe6 to a462ace Compare April 9, 2024 02:02
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 42569d3 to 769b106 Compare April 10, 2024 12:42
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 9 times, most recently from b4bf474 to 918112a Compare December 23, 2024 02:00
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 6 times, most recently from 5c96387 to 7caca7c Compare December 29, 2024 02:00
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 7 times, most recently from 8091766 to 36a79e4 Compare January 7, 2025 02:01
@mend-for-github-com mend-for-github-com bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates Jan 7, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 5 times, most recently from 11ba846 to 5dddf22 Compare January 13, 2025 02:01
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 5dddf22 to 3723783 Compare January 14, 2025 02:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants