Skip to content

Update Go modules#276

Merged
jotak merged 2 commits intomainfrom
konflux/mintmaker/main/go-modules
Apr 28, 2025
Merged

Update Go modules#276
jotak merged 2 commits intomainfrom
konflux/mintmaker/main/go-modules

Conversation

@red-hat-konflux
Copy link
Contributor

@red-hat-konflux red-hat-konflux bot commented Apr 27, 2025

This PR contains the following updates:

Package Type Update Change
github.com/fxamacker/cbor/v2 indirect minor v2.7.0 -> v2.8.0
github.com/google/pprof indirect digest a4b03ec -> 337e5dd
github.com/netobserv/flowlogs-pipeline require minor v1.7.0-community.0.20241217113023-fa0540a1658e -> v1.9.0-crc1
github.com/netobserv/netobserv-ebpf-agent require minor v1.7.0-community.0.20250220123714-ff37a09f6232 -> v1.9.0-crc0
github.com/onsi/ginkgo/v2 require patch v2.23.3 -> v2.23.4
github.com/ovn-org/ovn-kubernetes/go-controller indirect digest dd2a70c -> 14237a8
github.com/prometheus/client_golang indirect minor v1.21.1 -> v1.22.0
github.com/prometheus/procfs indirect minor v0.15.1 -> v0.16.1
go (source) toolchain minor 1.23.5 -> 1.24.2
golang.org/x/net indirect minor v0.38.0 -> v0.39.0
golang.org/x/oauth2 indirect minor v0.28.0 -> v0.29.0
golang.org/x/sys indirect minor v0.31.0 -> v0.32.0
golang.org/x/term indirect minor v0.30.0 -> v0.31.0
golang.org/x/text indirect minor v0.23.0 -> v0.24.0
golang.org/x/tools indirect minor v0.31.0 -> v0.32.0
google.golang.org/genproto/googleapis/rpc indirect digest e70fdf4 -> 7b38467
google.golang.org/grpc indirect minor v1.71.0 -> v1.72.0
k8s.io/api require minor v0.32.3 -> v0.33.0
k8s.io/apimachinery require minor v0.32.3 -> v0.33.0
k8s.io/client-go require minor v0.32.3 -> v0.33.0
k8s.io/component-base indirect minor v0.32.3 -> v0.33.0
k8s.io/kube-openapi indirect digest e5f78fe -> c8a335a
sigs.k8s.io/controller-runtime indirect patch v0.20.3 -> v0.20.4
sigs.k8s.io/structured-merge-diff/v4 indirect minor v4.6.0 -> v4.7.0

Release Notes

fxamacker/cbor (github.com/fxamacker/cbor/v2)

v2.8.0

Compare Source

v2.8.0 adds omitzero struct tag option, fixes and deprecates 3 functions, and bumps requirements to go 1.20+.

Many thanks to @​liggitt for contributing the omitzero support!

The "omitzero" option omits zero values from encoding, matching stdlib encoding/json behavior.
When specified in the cbor tag, the option is always honored.
When specified in the json tag, the option is honored when building with Go 1.24+.

This release fixes 3 functions (when called directly by user apps) to use same error handling on bad input as cbor.Unmarshal():

  • RawTag.UnmarshalCBOR() (thanks @​thomas-fossati for reporting this!)
  • ByteString.UnmarshalCBOR()
  • SimpleValue.UnmarshalCBOR()

This release also deprecates those 3 functions because they were initially created for internal use. Please use Unmarshal() or UnmarshalFirst() instead.

To preserve backward compatibility, the deprecated functions were added to fuzz tests and will not be removed in v2.x.

What's Changed

Other Changes
🔍 Details

New Contributors

Full Changelog: fxamacker/cbor@v2.7.0...v2.8.0

v2.7.1

Compare Source

v2.7.1 fixes 3 functions (when called directly by user apps) to use same error handling on bad inputs as cbor.Unmarshal():

  • ByteString.UnmarshalCBOR()
  • RawTag.UnmarshalCBOR()
  • SimpleValue.UnmarshalCBOR()

The above 3 fixed functions are deprecated because they were initially created for internal use. Please use Unmarshal() or UnmarshalFirst() instead.

To preserve backward compatibility, the deprecated functions were added to fuzz tests and will not be removed in v2.x.

Before Upgrading to v2.7.1

v2.8.0 is being fuzz tested and will be released later today. It adds support for omitzero struct tag option.

v2.7.1 is the last version to support go 1.17-1.19. v2.8.0 and newer releases will require go 1.20+.

What's Changed

Special Thanks

Thanks @​thomas-fossati for reporting the bug in RawTag.UnmarshalCBOR() when it is called directly by user apps providing bad input data!

Full Changelog: fxamacker/cbor@v2.7.0...v2.7.1

netobserv/flowlogs-pipeline (github.com/netobserv/flowlogs-pipeline)

v1.9.0-crc1

Compare Source

v1.9.0-crc0

Compare Source

v1.8.2-community

Compare Source

What's Changed

Non-breaking changes

Full Changelog: netobserv/flowlogs-pipeline@v1.8.1-community...v1.8.2-community

v1.8.1-crc0

Compare Source

v1.8.1-community

Compare Source

What's Changed

Non-breaking changes

Full Changelog: netobserv/flowlogs-pipeline@v1.8.0-community...v1.8.1-community

v1.8.0-crc0

Compare Source

netobserv/netobserv-ebpf-agent (github.com/netobserv/netobserv-ebpf-agent)

v1.9.0-crc0

Compare Source

v1.8.2-community

Compare Source

What's Changed

Non-breaking changes

Full Changelog: netobserv/netobserv-ebpf-agent@v1.8.1-community...v1.8.2-community

v1.8.1-crc0

Compare Source

v1.8.1-community

Compare Source

What's Changed

Non-breaking changes

Full Changelog: netobserv/netobserv-ebpf-agent@v1.8.0-community...v1.8.1-community

v1.8.0-crc0

Compare Source

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

v2.23.4

Compare Source

2.23.4

Prior to this release Ginkgo would compute the incorrect number of available CPUs when running with -p in a linux container. Thanks to @​emirot for the fix!

Features
  • Add automaxprocs for using CPUQuota [2b9c428]
Fixes
  • clarify gotchas about -vet flag [1f59d07]
Maintenance
prometheus/client_golang (github.com/prometheus/client_golang)

v1.22.0: - 2025-04-07

Compare Source

⚠️ This release contains potential breaking change if you use experimental zstd support introduce in #​1496 ⚠️

Experimental support for zstd on scrape was added, controlled by the request Accept-Encoding header.
It was enabled by default since version 1.20, but now you need to add a blank import to enable it.
The decision to make it opt-in by default was originally made because the Go standard library was expected to have default zstd support added soon,
https://github.com/golang/go/issues/62513 however, the work took longer than anticipated and it will be postponed to upcoming major Go versions.

e.g.:

import (
  _ "github.com/prometheus/client_golang/prometheus/promhttp/zstd"
)
  • [FEATURE] prometheus: Add new CollectorFunc utility #​1724
  • [CHANGE] Minimum required Go version is now 1.22 (we also test client_golang against latest go version - 1.24) #​1738
  • [FEATURE] api: WithLookbackDelta and WithStats options have been added to API client. #​1743
  • [CHANGE] ⚠️ promhttp: Isolate zstd support and klauspost/compress library use to promhttp/zstd package. #​1765
All Changes

New Contributors

Full Changelog: prometheus/client_golang@v1.21.1...v1.22.0-rc.0

prometheus/procfs (github.com/prometheus/procfs)

v0.16.1

Compare Source

What's Changed

New Contributors

Full Changelog: prometheus/procfs@v0.16.0...v0.16.1

v0.16.0

Compare Source

What's Changed

New Contributors

Full Changelog: prometheus/procfs@v0.15.1...v0.16.0

grpc/grpc-go (google.golang.org/grpc)

v1.72.0: Release 1.72.0

Compare Source

Dependencies

  • Minimum supported Go version is now 1.23 (#​8108)

API Changes

  • resolver: add experimental AddressMapV2 with generics to ultimately replace AddressMap. Deprecate AddressMap for deletion (#​8187)
  • resolver: convert EndpointMap in place to use generics (#​8189)

New Features

  • xds: add grpc.xds_client.server_failure counter metric on xDS client to record connectivity errors (#​8203)
  • balancer/rls: allow maxAge to exceed 5 minutes if staleAge is set in the LB policy configuration (#​8137)
  • ringhash: implement gRFC A76 improvements. (#​8159)
  • pickfirst: The new pick first LB policy is made the default. The new LB policy implements the Happy Eyeballs algorithm. To disable the new policy set the environment variable GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST to false (case insensitive).

Bug Fixes

  • xds: fix support for circuit breakers and load reporting in LOGICAL_DNS clusters (#​8169, #​8170)
  • xds/cds: improve RPC error messages when resources are not found (#​8122)
  • balancer/priority: fix race that could leak balancers and goroutines during shutdown (#​8095)
  • stats/opentelemetry: fix trace attributes message sequence numbers to start from 0 (#​8237)
  • balancer/pickfirstleaf: fix panic if deprecated Address.Metadata field is set to a non-comparable value by ignoring the field (#​8227)

Behavior Changes

  • transport: make servers send an HTTP/2 RST_STREAM frame to cancel a stream when the deadline expires (#​8071)

Documentation

v1.71.1: Release 1.71.1

Compare Source

Bug Fixes

  • grpc: fix a bug causing an extra Read from the compressor if a compressed message is the same size as the limit. This could result in a panic with the built-in gzip compressor (#​8178)
  • xds: restore the behavior of reading the bootstrap config before creating the first xDS client instead of at package init time (#​8164)
  • stats/opentelemetry: use TextMapPropagator and TracerProvider from TraceOptions instead of OpenTelemetry globals (#​8166)
  • client: fix races when an http proxy is configured that could lead to deadlocks or panics (#​8195)
  • client: fix bug causing RPC failures with message "no children to pick from" when using a custom resolver that calls the deprecated NewAddress API (#​8149)
  • wrr: fix slow processing of address updates that could result in problems including RPC failures for servers with a large number of backends (#​8179)
kubernetes/api (k8s.io/api)

v0.33.0

Compare Source

v0.32.4

Compare Source

kubernetes/apimachinery (k8s.io/apimachinery)

v0.33.0

[


Configuration

📅 Schedule: Branch creation - "after 5am on sunday" (UTC), 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

To execute skipped test pipelines write comment /ok-to-test.

This PR has been generated by MintMaker (powered by Renovate Bot).

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux bot added the dependencies Pull requests that update a dependency file label Apr 27, 2025
@openshift-ci
Copy link

openshift-ci bot commented Apr 27, 2025

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign eranra for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci
Copy link

openshift-ci bot commented Apr 27, 2025

Hi @red-hat-konflux[bot]. Thanks for your PR.

I'm waiting for a netobserv member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@codecov
Copy link

codecov bot commented Apr 28, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 22.60%. Comparing base (7e7f5da) to head (937d36a).
Report is 2 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #276   +/-   ##
=======================================
  Coverage   22.60%   22.60%           
=======================================
  Files          14       14           
  Lines        1451     1451           
=======================================
  Hits          328      328           
  Misses       1099     1099           
  Partials       24       24           
Flag Coverage Δ
unittests 22.60% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@jotak jotak merged commit 69adb76 into main Apr 28, 2025
5 of 8 checks passed
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 needs-ok-to-test

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant