Skip to content

build(deps): bump the general-dependencies group across 1 directory with 6 updates - #1094

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/general-dependencies-139e2bad31
Closed

build(deps): bump the general-dependencies group across 1 directory with 6 updates#1094
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/general-dependencies-139e2bad31

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown
Contributor

Bumps the general-dependencies group with 4 updates in the / directory: github.com/k8snetworkplumbingwg/sriovnet, github.com/onsi/ginkgo/v2, github.com/onsi/gomega and github.com/prometheus/common.

Updates github.com/k8snetworkplumbingwg/sriovnet from 1.2.0 to 1.3.0

Release notes

Sourced from github.com/k8snetworkplumbingwg/sriovnet's releases.

v1.3.0

What's Changed

New Contributors

Full Changelog: k8snetworkplumbingwg/sriovnet@v1.2.0...v1.3.0

Commits
  • 91c1407 Merge pull request #92 from adrianchiris/support-devlink-port-external-attr
  • 83ea9b4 feat: support local representors with arbitrary controller
  • dd6af9e Merge pull request #91 from adrianchiris/get-rep-without-uplink-netdev
  • 458422d feat: support getting local VF/SF representors from uplink PCI
  • 433ce1d Merge pull request #90 from adrianchiris/rep-not-found-err
  • c6c40e9 Merge pull request #88 from adrianchiris/rep-port-params-docacaps
  • 1457d9f feat: add GetRepresentorPortParamsFromVUID
  • 6f0dbc6 feat: add ErrRepresentorNotFound errors
  • 7e83257 Merge pull request #87 from adrianchiris/rep-port-params
  • 156ccb2 feat: representor port params
  • Additional commits viewable in compare view

Updates github.com/onsi/ginkgo/v2 from 2.28.3 to 2.32.0

Release notes

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

v2.32.0

2.32.0

-fd generate RSpec-style documentation output. Thank @​woodie ! --sleep-on-failure pauses a failed spec before teardown. Thanks @​qinqon !

v2.31.0

2.31.0

Add a bunch of Claude Skills via the marketplace:

/plugin marketplace add onsi/ginkgo
/plugin install ginkgo@ginkgo

v2.30.0

2.30.0

Features

Ginkgo now allows extentions/global.Reset to support running multiple suites from within a single process. This may take some massaging on your part (see 1672) but can dramatically speed up codebases with O(hundreds) of test suites.

Thanks @​lawrencejones !

Fixes

  • Fix nested --github-output group for progress report nested inside timeline [4f62d7a]

v2.29.0

2.29.0

GinkgoHelperGo makes it easier to write test helpers that need to run in goroutines. Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.

ginkgo outline now includes entries defined in DescribeTableSubtree

Changelog

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

2.32.0

-fd generate RSpec-style documentation output. Thank @​woodie ! --sleep-on-failure pauses a failed spec before teardown. Thanks @​qinqon !

2.31.0

Add a bunch of Claude Skills via the marketplace:

/plugin marketplace add onsi/ginkgo
/plugin install ginkgo@ginkgo

2.30.0

Features

Ginkgo now allows extentions/global.Reset to support running multiple suites from within a single process. This may take some massaging on your part (see 1672) but can dramatically speed up codebases with O(hundreds) of test suites.

Thanks @​lawrencejones !

Fixes

  • Fix nested --github-output group for progress report nested inside timeline [4f62d7a]

2.29.0

GinkgoHelperGo makes it easier to write test helpers that need to run in goroutines. Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.

ginkgo outline now includes entries defined in DescribeTableSubtree

Commits
  • 9ff1646 v2.32.0
  • 0491f2a Make -fd exclusive of -p/-procs and -randomize-all
  • 334f74a respect SilenceSkips in fd mode, add test
  • 21047ce No need for a new method.
  • 7d281e1 Break out to two methods.
  • 5313727 More integration, fewer changes.
  • b83f524 Fewer new methods.
  • 73c59df feat: add -fd flag for RSpec-style documentation output
  • 76a2074 feat: add --sleep-on-failure to pause a failed spec before teardown
  • 3c7bde4 v2.31.0
  • Additional commits viewable in compare view

Updates github.com/onsi/gomega from 1.40.0 to 1.42.1

Release notes

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

v1.42.1

1.42.1

Bump Dependencies

v1.42.0

1.42.0

Add a set of Claude skill as a marketplace plugin

v1.41.0

No release notes provided.

Changelog

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

1.42.1

Bump Dependencies

1.42.0

Add a set of Claude skill as a marketplace plugin

1.41.0

Features

Add BeASlice and BeAnArray matchers

Fixes

Object formatting now detects pointer cycles to avoid runaway formatting output.

Commits

Updates github.com/prometheus/common from 0.67.5 to 0.69.0

Release notes

Sourced from github.com/prometheus/common's releases.

v0.69.0

What's Changed

Full Changelog: prometheus/common@v0.68.1...v0.69.0

v0.68.1

What's Changed

Full Changelog: prometheus/common@v0.68.0...v0.68.1

v0.68.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from github.com/prometheus/common's changelog.

v0.69.0 / 2026-06-17

Security / behavior changes

  • config: credentials are no longer forwarded across cross-host redirects. When FollowRedirects is enabled, the HTTP client now strips Authorization, Cookie, Proxy-Authorization and other sensitive headers, and skips basic-auth, bearer-token and OAuth2 credentials, when a redirect points to a different host. This aligns with Go's net/http behavior. Callers that relied on credentials being sent to a redirect target on another host will need to target that host directly. #901 #920 #921
  • config: LoadHTTPConfigFile now resolves relative file paths (e.g. *_file credentials, http_headers files) against the config file's own directory instead of its parent directory. Configs that worked around the old behavior by prefixing paths with the config's directory name must drop that prefix. #925

Bugfixes

  • expfmt: fix nil pointer panic when parsing empty braces {}. #922
  • model: fix Time.UnmarshalJSON for larger negative numbers. #918

Performance

  • model: reduce allocations in Time.UnmarshalJSON. #918

Internal

  • Synchronize common files from prometheus/prometheus. #917
  • Modernize Go. #919

Full Changelog: prometheus/common@v0.68.1...v0.69.0

v0.67.2 / 2025-10-28

What's Changed

New Contributors

Full Changelog: prometheus/common@v0.67.1...v0.67.2

v0.67.1 / 2025-10-07

What's Changed

Full Changelog: prometheus/common@v0.67.0...v0.67.1

v0.67.0 / 2025-10-07

What's Changed

... (truncated)

Commits
  • e3c14a0 Merge pull request #925 from roidelapluie/roidelapluie/fix-loadhttpconfigfile...
  • a7b791d config: resolve LoadHTTPConfigFile paths relative to the config file
  • f84efec Merge pull request #918 from prometheus/time-split
  • 2269d3d Merge pull request #922 from roidelapluie/roidelapluie/fix-textparse-empty-br...
  • a1600af expfmt: fix nil pointer panic when parsing empty braces "{}"
  • 56fe395 Merge pull request #921 from roidelapluie/roidelapluie/oauth2-cross-host-check
  • 0fcda47 Merge pull request #920 from roidelapluie/roidelapluie/cross-host-sticky
  • 30ba470 Merge pull request #919 from prometheus/superq/modernize
  • 2b55b3e config: check cross-host redirect before OAuth2 token fetch
  • 428856f config: make isCrossHostRedirect sticky across the redirect chain
  • Additional commits viewable in compare view

Updates github.com/vishvananda/netlink from 1.3.1 to 1.3.2-0.20251101063711-6e61cd407d1d

Commits

Updates golang.org/x/sys from 0.44.0 to 0.46.0

Commits
  • d58dcfa unix: add GPIO constants and structs
  • 397d5f8 unix: update to Linux kernel 7.0
  • 0a387f7 cpu: detect zbc extension on riscv64
  • 758f71c cpu: add LLACQ_SCREL, SCQ, DBAR_HINTS detection for loong64
  • 99666ae unix: merge Linux readv/writev implementation with Darwin/OpenBSD
  • e4444cb windows: add NtSetEaFile, NtQueryEaFile and NtQueryInformationFile
  • 04396e8 unix: add Readv, Writev, Preadv, Pwritev for OpenBSD
  • See full diff in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Jun 15, 2026
@github-actions

Copy link
Copy Markdown

Thanks for your PR,
To run vendors CIs, Maintainers can use one of:

  • /test-all: To run all tests for all vendors.
  • /test-e2e-all: To run all E2E tests for all vendors.
  • /test-e2e-nvidia-all: To run all E2E tests for NVIDIA vendor.

To skip the vendors CIs, Maintainers can use one of:

  • /skip-all: To skip all tests for all vendors.
  • /skip-e2e-all: To skip all E2E tests for all vendors.
  • /skip-e2e-nvidia-all: To skip all E2E tests for NVIDIA vendor.
    Best regards.

@coveralls

coveralls commented Jun 15, 2026

Copy link
Copy Markdown

Coverage Report for CI Build 28431050818

Coverage decreased (-0.05%) to 63.76%

Details

  • Coverage decreased (-0.05%) from the base build.
  • Patch coverage: No coverable lines changed in this PR.
  • 15 coverage regressions across 4 files.

Uncovered Changes

No uncovered changes found.

Coverage Regressions

15 previously-covered lines in 4 files lost coverage.

File Lines Losing Coverage Coverage
controllers/generic_network_controller.go 8 79.75%
pkg/daemon/status.go 5 72.92%
controllers/drain_controller_helper.go 1 66.96%
controllers/helper.go 1 70.45%

Coverage Stats

Coverage Status
Relevant Lines: 15229
Covered Lines: 9710
Line Coverage: 63.76%
Coverage Strength: 0.71 hits per line

💛 - Coveralls

@SchSeba SchSeba left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/hold

Comment thread go.mod
github.com/spf13/cobra v1.10.2
github.com/stretchr/testify v1.11.1
github.com/vishvananda/netlink v1.3.1
github.com/vishvananda/netlink v1.3.2-0.20251101063711-6e61cd407d1d

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lets hold this one for now based on vishvananda/netlink#1173

@SchSeba

SchSeba commented Jun 24, 2026

Copy link
Copy Markdown
Collaborator

/hold

@github-actions github-actions Bot added the hold label Jun 24, 2026
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/general-dependencies-139e2bad31 branch from 2f89066 to b7e419d Compare June 29, 2026 19:33
…ith 6 updates

Bumps the general-dependencies group with 4 updates in the / directory: [github.com/k8snetworkplumbingwg/sriovnet](https://github.com/k8snetworkplumbingwg/sriovnet), [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo), [github.com/onsi/gomega](https://github.com/onsi/gomega) and [github.com/prometheus/common](https://github.com/prometheus/common).


Updates `github.com/k8snetworkplumbingwg/sriovnet` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/k8snetworkplumbingwg/sriovnet/releases)
- [Commits](k8snetworkplumbingwg/sriovnet@v1.2.0...v1.3.0)

Updates `github.com/onsi/ginkgo/v2` from 2.28.3 to 2.32.0
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.28.3...v2.32.0)

Updates `github.com/onsi/gomega` from 1.40.0 to 1.42.1
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.40.0...v1.42.1)

Updates `github.com/prometheus/common` from 0.67.5 to 0.69.0
- [Release notes](https://github.com/prometheus/common/releases)
- [Changelog](https://github.com/prometheus/common/blob/main/CHANGELOG.md)
- [Commits](prometheus/common@v0.67.5...v0.69.0)

Updates `github.com/vishvananda/netlink` from 1.3.1 to 1.3.2-0.20251101063711-6e61cd407d1d
- [Release notes](https://github.com/vishvananda/netlink/releases)
- [Commits](https://github.com/vishvananda/netlink/commits)

Updates `golang.org/x/sys` from 0.44.0 to 0.46.0
- [Commits](golang/sys@v0.44.0...v0.46.0)

---
updated-dependencies:
- dependency-name: github.com/k8snetworkplumbingwg/sriovnet
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: general-dependencies
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: general-dependencies
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: general-dependencies
- dependency-name: github.com/prometheus/common
  dependency-version: 0.68.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: general-dependencies
- dependency-name: github.com/vishvananda/netlink
  dependency-version: 1.3.2-0.20251101063711-6e61cd407d1d
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: general-dependencies
- dependency-name: golang.org/x/sys
  dependency-version: 0.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: general-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/general-dependencies-139e2bad31 branch from b7e419d to e8aa0f9 Compare June 30, 2026 08:30
@dependabot @github

dependabot Bot commented on behalf of github Jul 6, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jul 6, 2026
@dependabot
dependabot Bot deleted the dependabot/go_modules/general-dependencies-139e2bad31 branch July 6, 2026 19:33
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 hold

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants