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 go-patch group across 3 directories with 13 updates #1493

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2024

Bumps the go-patch group with 6 updates in the / directory:

Package From To
github.com/aws/aws-sdk-go-v2/credentials 1.17.17 1.17.48
github.com/cyphar/filepath-securejoin 0.3.1 0.3.6
github.com/elgohr/go-localstack 1.0.20 1.0.119
github.com/jenkins-x/go-scm 1.14.11 1.14.46
github.com/kubescape/go-git-url 0.0.25 0.0.30
github.com/spf13/cobra 1.8.0 1.8.1

Bumps the go-patch group with 1 update in the /api directory: github.com/go-logr/logr.
Bumps the go-patch group with 2 updates in the /tfctl directory: github.com/go-logr/logr and github.com/spf13/cobra.

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.17.17 to 1.17.48

Commits

Updates github.com/aws/smithy-go from 1.20.3 to 1.22.1

Changelog

Sourced from github.com/aws/smithy-go's changelog.

Release (2024-11-15)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.1
    • Bug Fix: Fix failure to replace URI path segments when their names overlap.

Release (2024-10-03)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.0
    • Feature: Add HTTP client metrics.

Release (2024-09-25)

Module Highlights

  • github.com/aws/smithy-go/aws-http-auth: v1.0.0
    • Release: Initial release of module aws-http-auth, which implements generically consumable SigV4 and SigV4a request signing.

Release (2024-09-19)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.21.0
    • Feature: Add tracing and metrics APIs, and builtin instrumentation for both, in generated clients.
  • github.com/aws/smithy-go/metrics/smithyotelmetrics: v1.0.0
    • Release: Initial release of smithyotelmetrics module, which is used to adapt an OpenTelemetry SDK meter provider to be used with Smithy clients.
  • github.com/aws/smithy-go/tracing/smithyoteltracing: v1.0.0
    • Release: Initial release of smithyoteltracing module, which is used to adapt an OpenTelemetry SDK tracer provider to be used with Smithy clients.

Release (2024-08-14)

Module Highlights

  • github.com/aws/smithy-go: v1.20.4
    • Dependency Update: Bump minimum Go version to 1.21.

Release (2024-06-27)

Module Highlights

  • github.com/aws/smithy-go: v1.20.3
    • Bug Fix: Fix encoding/cbor test overflow on x86.

Release (2024-03-29)

... (truncated)

Commits
  • bed421c Release 2024-11-15
  • 4d1e793 add changelog for fix pr
  • 84c6c7e Fix: URI path element replace issue due to elements name overlap (#553)
  • 253cd26 fixup jmespath multiselect codegen (#551)
  • a4c9efc Update Smithy version to 1.52.1 (#550)
  • 48250f4 Update string shape from synthetic to base (#549)
  • e6338ca Allow all headers to be set to an empty value (#547)
  • e3a9df9 add annotation to package docs when the service shape is deprecated (#546)
  • 90c085e fix: allow empty headers on prefix headers (#544)
  • a73f41b stabilize order of client plugin additions (#545)
  • Additional commits viewable in compare view

Updates github.com/cyphar/filepath-securejoin from 0.3.1 to 0.3.6

Release notes

Sourced from github.com/cyphar/filepath-securejoin's releases.

v0.3.6

This release lowers the minimum Go version to Go 1.18 as well as some library dependencies, in order to make it easier for folks that need to backport patches using the new filepath-securejoin API onto branches that are stuck using old Go compilers. For users using Go >= 1.21, this release contains no functional changes.

  • The minimum Go version requirement for filepath-securejoin is now Go 1.18 (we use generics internally).

    For reference, [email protected] somewhat-arbitrarily bumped the Go version requirement to 1.21.

    While we did make some use of Go 1.21 stdlib features (and in principle Go versions <= 1.21 are no longer even supported by upstream anymore), some downstreams have complained that the version bump has meant that they have to do workarounds when backporting fixes that use the new filepath-securejoin API onto old branches. This is not an ideal situation, but since using this library is probably better for most downstreams than a hand-rolled workaround, we now have compatibility shims that allow us to build on older Go versions.

  • Lower minimum version requirement for golang.org/x/sys to v0.18.0 (we need the wrappers for fsconfig(2)), which should also make backporting patches to older branches easier.

Signed-off-by: Aleksa Sarai [email protected]

v0.3.5

This release primarily includes a fix for an issue involving two programs racing to MkdirAll the same directory, which caused a regression with BuildKit.

  • MkdirAll will now no longer return an EEXIST error if two racing processes are creating the same directory. We will still verify that the path is a directory, but this will avoid spurious errors when multiple threads or programs are trying to MkdirAll the same path. opencontainers/runc#4543

Signed-off-by: Aleksa Sarai [email protected]

v0.3.4

This release primarily includes a fix that blocked using filepath-securejoin in Kubernetes.

  • Previously, some testing mocks we had resulted in us doing import "testing" in non-_test.go code, which made some downstreams like Kubernetes unhappy. This has been fixed. (#32)

Thanks to all of the contributors who made this release possible:

... (truncated)

Changelog

Sourced from github.com/cyphar/filepath-securejoin's changelog.

[0.3.6] - 2024-12-17

Compatibility

  • The minimum Go version requirement for filepath-securejoin is now Go 1.18 (we use generics internally).

    For reference, [email protected] somewhat-arbitrarily bumped the Go version requirement to 1.21.

    While we did make some use of Go 1.21 stdlib features (and in principle Go versions <= 1.21 are no longer even supported by upstream anymore), some downstreams have complained that the version bump has meant that they have to do workarounds when backporting fixes that use the new filepath-securejoin API onto old branches. This is not an ideal situation, but since using this library is probably better for most downstreams than a hand-rolled workaround, we now have compatibility shims that allow us to build on older Go versions.

  • Lower minimum version requirement for golang.org/x/sys to v0.18.0 (we need the wrappers for fsconfig(2)), which should also make backporting patches to older branches easier.

[0.3.5] - 2024-12-06

Fixed

  • MkdirAll will now no longer return an EEXIST error if two racing processes are creating the same directory. We will still verify that the path is a directory, but this will avoid spurious errors when multiple threads or programs are trying to MkdirAll the same path. opencontainers/runc#4543

[0.3.4] - 2024-10-09

Fixed

  • Previously, some testing mocks we had resulted in us doing import "testing" in non-_test.go code, which made some downstreams like Kubernetes unhappy. This has been fixed. (#32)

[0.3.3] - 2024-09-30

Fixed

  • The mode and owner verification logic in MkdirAll has been removed. This was originally intended to protect against some theoretical attacks but upon further consideration these protections don't actually buy us anything and they were causing spurious errors with more complicated filesystem setups.
  • The "is the created directory empty" logic in MkdirAll has also been removed. This was not causing us issues yet, but some pseudofilesystems (such as cgroup) create non-empty directories and so this logic would've been wrong for such cases.

[0.3.2] - 2024-09-13

... (truncated)

Commits
  • 200008e VERSION: release v0.3.6
  • 43784dc tests: lower github.com/stretchr/testify requirement to v1.7.1
  • 2ec07d2 merge #37 into cyphar/filepath-securejoin:main
  • d17d372 gha: use stable/oldstable go versions
  • 2d9831f gha: compile-test for all supported Go versions
  • 31bfec2 gha: test older Go versions in CI
  • e11873c deps: downgrade golang.org/x/sys requirement
  • 6ef6896 go: lower Go requirement to Go 1.18
  • a06a225 tests: don't call testing.Testing() in mocks
  • 07ceaf0 merge #36 into cyphar/filepath-securejoin:main
  • Additional commits viewable in compare view

Updates github.com/elgohr/go-localstack from 1.0.20 to 1.0.119

Commits
  • f3af5eb Merge pull request #989 from elgohr/dependabot/go_modules/github.com/maxbruns...
  • 7680783 Bump github.com/maxbrunsfeld/counterfeiter/v6 from 6.10.0 to 6.11.2
  • fd3abca Merge pull request #988 from elgohr/dependabot/go_modules/docker-28fed8613c
  • d26c9ef Bump the docker group with 2 updates
  • 7d0edec Merge pull request #987 from elgohr/dependabot/go_modules/docker-312bf20254
  • 4244e3c Bump the docker group with 2 updates
  • 5e9ff71 Merge pull request #985 from elgohr/dependabot/go_modules/github.com/Mastermi...
  • 4cc99ad Bump github.com/Masterminds/semver/v3 from 3.3.0 to 3.3.1
  • 594e2dd Merge pull request #986 from elgohr/dependabot/go_modules/github.com/stretchr...
  • 305f089 Bump github.com/stretchr/testify from 1.9.0 to 1.10.0
  • Additional commits viewable in compare view

Updates github.com/jenkins-x/go-scm from 1.14.11 to 1.14.46

Release notes

Sourced from github.com/jenkins-x/go-scm's releases.

1.14.46

Changes in version 1.14.46

Bug Fixes

  • fix a typo for the dismissed action (Maximilien Raulic)
  • add missing actions in UnmarshalJSON (Maximilien Raulic)

Tests

  • add regression tests on Action JSON methods (Maximilien Raulic)

Chores

  • release 1.14.46 (jenkins-x-bot)
  • add variables (jenkins-x-bot)

1.14.45

Changes in version 1.14.45

Chores

  • release 1.14.45 (jenkins-x-bot)
  • add variables (jenkins-x-bot)

Other Changes

These commits did not use Conventional Commits formatted messages:

  • Add modifiy field in changes APIs (Zaki Shaikh)

1.14.44

Changes in version 1.14.44

Bug Fixes

  • make fmt (Mårten Svantesson)
  • linting fixes (Mårten Svantesson)
  • github now requires explicit make_latest=true on create (Mårten Svantesson)

Chores

  • release 1.14.44 (jenkins-x-bot)
  • add variables (jenkins-x-bot)

1.14.43

Changes in version 1.14.43

Chores

... (truncated)

Commits
  • 9c88414 chore: release 1.14.46
  • b2875d9 chore: add variables
  • 6c8f164 Merge pull request #469 from Maximilien-R/mra/fix-action-unmarshal-json
  • 3a2188a fix: fix a typo for the dismissed action
  • 979e577 fix: add missing actions in UnmarshalJSON
  • b8a257e test: add regression tests on Action JSON methods
  • cadb6f7 Merge pull request #466 from zakisk/add-modify-field-in-changes
  • c29efab Add modifiy field in changes APIs
  • af08d2b Merge pull request #462 from jenkins-x/createlatest
  • d95cc43 fix: make fmt
  • Additional commits viewable in compare view

Updates github.com/kubescape/go-git-url from 0.0.25 to 0.0.30

Commits
  • d27eb58 Merge pull request #16 from kubescape/fix-gitlab
  • 1ba58cb use detected host in gitlab api
  • afc1c54 Merge pull request #15 from kubescape/fix-gitlab
  • 29a0174 also support self hosted gitlab in NewGitAPI
  • 1d0b89d Merge pull request #14 from kubescape/fix-gitlab
  • ec5afaf add support for self-hosted gitlab
  • 0a7f7ed Merge pull request #13 from kubescape/fix-gitlab
  • 5dd5ab2 fix gitlab project ID generation
  • 36432da Merge pull request #12 from hectorj2f/fix_git_urls_cve
  • e2ce7a0 replace whilp/git-urls module by chainguard-dev/git-urls
  • See full diff in compare view

Updates github.com/maxbrunsfeld/counterfeiter/v6 from 6.9.0 to 6.11.2

Release notes

Sourced from github.com/maxbrunsfeld/counterfeiter/v6's releases.

v6.11.2

Revert changes from v6.11.1.

Full Changelog: maxbrunsfeld/counterfeiter@v6.11.1...v6.11.2

v6.11.1

Restore compatibility for go 1.22.

Full Changelog: maxbrunsfeld/counterfeiter@v6.11.0...v6.11.1

v6.11.0

What's Changed

New Contributors

Full Changelog: maxbrunsfeld/counterfeiter@v6.10.0...v6.11.0

v6.10.0

What's Changed

New Contributors

Full Changelog: maxbrunsfeld/counterfeiter@v6.9.0...v6.10.0

Commits
  • 9d1ef65 Revert "don’t include toolchain directive, support go 1.22+ until 1.24 is rel...
  • 432aa38 don’t include toolchain directive, support go 1.22+ until 1.24 is released
  • 1db6bf1 test with built in constraint
  • 00d12aa removed unused fake
  • ceb8b76 parser changes undone. requiring args to not include type params or constraints
  • e7c0976 remove test printing
  • 204c067 multiple generic types in one interface
  • 9a80e3f handle interfaces with generics
  • 27aec33 Merge pull request #310 from maxbrunsfeld/dependabot/go_modules/github.com/on...
  • b4c2c54 Bump github.com/onsi/gomega from 1.36.0 to 1.36.1
  • Additional commits viewable in compare view

Updates github.com/onsi/gomega from 1.34.1 to 1.36.1

Release notes

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

v1.36.1

1.36.1

Fixes

v1.36.0

1.36.0

Features

  • new: make collection-related matchers Go 1.23 iterator aware [4c964c6]

Maintenance

  • Replace min/max helpers with built-in min/max [ece6872]
  • Fix some typos in docs [8e924d7]

v1.35.1

1.35.1

Fixes

  • Export EnforceDefaultTimeoutsWhenUsingContexts and DisableDefaultTimeoutsWhenUsingContext [ca36da1]

v1.35.0

1.35.0

Features

  • You can now call EnforceDefaultTimeoutsWhenUsingContexts() to have Eventually honor the default timeout when passed a context. (prior to this you had to expclility add a timeout) [e4c4265]
  • You can call StopTrying(message).Successfully() to abort a Consistently early without failure [eeca931]

Fixes

  • Stop memoizing the result of HaveField to avoid unexpected errors when used with async assertions. [3bdbc4e]

Maintenance

  • Bump all dependencies [a05a416]

v1.34.2

1.34.2

Require Go 1.22+

Maintenance

  • bump ginkgo as well [c59c6dc]
  • bump to go 1.22 - remove x/exp dependency [8158b99]
Changelog

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

1.36.1

Fixes

1.36.0

Features

  • new: make collection-related matchers Go 1.23 iterator aware [4c964c6]

Maintenance

  • Replace min/max helpers with built-in min/max [ece6872]
  • Fix some typos in docs [8e924d7]

1.35.1

Fixes

  • Export EnforceDefaultTimeoutsWhenUsingContexts and DisableDefaultTimeoutsWhenUsingContext [ca36da1]

1.35.0

Features

  • You can now call EnforceDefaultTimeoutsWhenUsingContexts() to have Eventually honor the default timeout when passed a context. (prior to this you had to expclility add a timeout) [e4c4265]
  • You can call StopTrying(message).Successfully() to abort a Consistently early without failure [eeca931]

Fixes

  • Stop memoizing the result of HaveField to avoid unexpected errors when used with async assertions. [3bdbc4e]

Maintenance

  • Bump all dependencies [a05a416]

1.34.2

Require Go 1.22+

Maintenance

  • bump ginkgo as well [c59c6dc]
  • bump to go 1.22 - remove x/exp dependency [8158b99]
Commits

Updates github.com/spf13/cobra from 1.8.0 to 1.8.1

Release notes

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

v1.8.1

✨ Features

🐛 Bug fixes

🔧 Maintenance

🧪 Testing & CI/CD

✏️ Documentation

... (truncated)

Commits

Updates github.com/stretchr/testify from 1.9.0 to 1.10.0

Release notes

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

v1.10.0

What's Changed

Functional Changes

Fixes

Documantation, Build & CI

New Contributors

... (truncated)

Commits
  • 89cbdd9 Merge pull request #1626 from arjun-1/fix-functional-options-diff-indirect-calls
  • 07bac60 Merge pull request #1667 from sikehish/flaky
  • 716de8d Increase timeouts in Test_Mock_Called_blocks to reduce flakiness in CI
  • 118fb83 NotSame should fail if args are not pointers #1661 (#1664)
  • 7d99b2b attempt 2
  • 05f87c0 more similar
  • ea7129e better fmt
  • a1b9c9e Merge pull request #1663 from ybrustin/master
  • 8302de9 Merge branch 'master' into master
  • 89352f7 Merge pull request #1518 from hendrywiranto/adjust-readme-remove-v2
  • Additional commits viewable in compare view

Updates golang.org/x/net from 0.30.0 to 0.32.0

Commits
  • 285e1cf go.mod: update golang.org/x dependencies
  • d0a1049 route: remove unused sizeof* consts on freebsd
  • 6e41410 http2: fix benchmarks using common frame read/write functions
  • 4be1253 route: change from syscall to x/sys/unix
  • bc37675 http2: limit number of PINGs bundled with RST_STREAMs
  • e9cd716 route: fix parse of zero-length sockaddrs in RIBs
  • 9a51899 http2: add SETTINGS_ENABLE_CONNECT_PROTOCOL support
  • 334afa0 go.mod: update golang.org/x dependencies
  • d7f220d quic: add LocalAddr and RemoteAddr to quic.Conn
  • 858db1a http2: surface errors occurring very early in a client conn's lifetime
  • Additional commits viewable in compare view

Updates k8s.io/apimachinery from 0.30.1 to 0.30.3

Commits

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

Release notes

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

v1.4.2

What's Changed

Dependencies:

Bumps the go-patch group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/aws/aws-sdk-go-v2/credentials](https://github.com/aws/aws-sdk-go-v2) | `1.17.17` | `1.17.48` |
| [github.com/cyphar/filepath-securejoin](https://github.com/cyphar/filepath-securejoin) | `0.3.1` | `0.3.6` |
| [github.com/elgohr/go-localstack](https://github.com/elgohr/go-localstack) | `1.0.20` | `1.0.119` |
| [github.com/jenkins-x/go-scm](https://github.com/jenkins-x/go-scm) | `1.14.11` | `1.14.46` |
| [github.com/kubescape/go-git-url](https://github.com/kubescape/go-git-url) | `0.0.25` | `0.0.30` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.8.0` | `1.8.1` |

Bumps the go-patch group with 1 update in the /api directory: [github.com/go-logr/logr](https://github.com/go-logr/logr).
Bumps the go-patch group with 2 updates in the /tfctl directory: [github.com/go-logr/logr](https://github.com/go-logr/logr) and [github.com/spf13/cobra](https://github.com/spf13/cobra).


Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.17.17 to 1.17.48
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@credentials/v1.17.17...credentials/v1.17.48)

Updates `github.com/aws/smithy-go` from 1.20.3 to 1.22.1
- [Release notes](https://github.com/aws/smithy-go/releases)
- [Changelog](https://github.com/aws/smithy-go/blob/main/CHANGELOG.md)
- [Commits](aws/smithy-go@v1.20.3...v1.22.1)

Updates `github.com/cyphar/filepath-securejoin` from 0.3.1 to 0.3.6
- [Release notes](https://github.com/cyphar/filepath-securejoin/releases)
- [Changelog](https://github.com/cyphar/filepath-securejoin/blob/main/CHANGELOG.md)
- [Commits](cyphar/filepath-securejoin@v0.3.1...v0.3.6)

Updates `github.com/elgohr/go-localstack` from 1.0.20 to 1.0.119
- [Commits](elgohr/go-localstack@v1.0.20...v1.0.119)

Updates `github.com/jenkins-x/go-scm` from 1.14.11 to 1.14.46
- [Release notes](https://github.com/jenkins-x/go-scm/releases)
- [Changelog](https://github.com/jenkins-x/go-scm/blob/main/CHANGELOG.md)
- [Commits](jenkins-x/go-scm@v1.14.11...v1.14.46)

Updates `github.com/kubescape/go-git-url` from 0.0.25 to 0.0.30
- [Release notes](https://github.com/kubescape/go-git-url/releases)
- [Commits](kubescape/go-git-url@v0.0.25...v0.0.30)

Updates `github.com/maxbrunsfeld/counterfeiter/v6` from 6.9.0 to 6.11.2
- [Release notes](https://github.com/maxbrunsfeld/counterfeiter/releases)
- [Commits](maxbrunsfeld/counterfeiter@v6.9.0...v6.11.2)

Updates `github.com/onsi/gomega` from 1.34.1 to 1.36.1
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.34.1...v1.36.1)

Updates `github.com/spf13/cobra` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.8.0...v1.8.1)

Updates `github.com/stretchr/testify` from 1.9.0 to 1.10.0
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.9.0...v1.10.0)

Updates `golang.org/x/net` from 0.30.0 to 0.32.0
- [Commits](golang/net@v0.30.0...v0.32.0)

Updates `k8s.io/apimachinery` from 0.30.1 to 0.30.3
- [Commits](kubernetes/apimachinery@v0.30.1...v0.30.3)

Updates `github.com/go-logr/logr` from 1.4.1 to 1.4.2
- [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.4.1...v1.4.2)

Updates `github.com/go-logr/logr` from 1.4.1 to 1.4.2
- [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.4.1...v1.4.2)

Updates `github.com/spf13/cobra` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.8.0...v1.8.1)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-patch
- dependency-name: github.com/aws/smithy-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-patch
- dependency-name: github.com/cyphar/filepath-securejoin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-patch
- dependency-name: github.com/elgohr/go-localstack
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-patch
- dependency-name: github.com/jenkins-x/go-scm
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-patch
- dependency-name: github.com/kubescape/go-git-url
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-patch
- dependency-name: github.com/maxbrunsfeld/counterfeiter/v6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-patch
- dependency-name: github.com/onsi/gomega
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-patch
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-patch
- dependency-name: github.com/stretchr/testify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-patch
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-patch
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-patch
- dependency-name: github.com/go-logr/logr
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-patch
- dependency-name: github.com/go-logr/logr
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-patch
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added area/ci Continuous Integration pipeline dependencies Dependency management for library and code labels Dec 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/ci Continuous Integration pipeline dependencies Dependency management for library and code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants