Skip to content

Update Go modules#278

Closed
red-hat-konflux[bot] wants to merge 1 commit intorelease-1.8from
konflux/mintmaker/release-1.8/go-modules
Closed

Update Go modules#278
red-hat-konflux[bot] wants to merge 1 commit intorelease-1.8from
konflux/mintmaker/release-1.8/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/emicklei/go-restful/v3 indirect minor v3.11.0 -> v3.12.2
github.com/evanphx/json-patch/v5 indirect patch v5.9.0 -> v5.9.11
github.com/fxamacker/cbor/v2 indirect minor v2.7.0 -> v2.8.0
github.com/go-openapi/jsonpointer indirect patch v0.21.0 -> v0.21.1
github.com/go-openapi/jsonreference indirect minor v0.20.2 -> v0.21.0
github.com/go-openapi/swag indirect patch v0.23.0 -> v0.23.1
github.com/google/go-cmp indirect minor v0.6.0 -> v0.7.0
github.com/klauspost/compress indirect minor v1.17.9 -> v1.18.0
github.com/mailru/easyjson indirect minor v0.7.7 -> v0.9.0
github.com/mattn/go-sqlite3 require patch v1.14.24 -> v1.14.28
github.com/netobserv/netobserv-ebpf-agent indirect minor v1.6.1-crc2.0.20241001154044-8c6c4c91c326 -> v1.9.0-crc0
github.com/prometheus/client_golang indirect minor v1.20.3 -> v1.22.0
github.com/prometheus/client_model indirect patch v0.6.1 -> v0.6.2
github.com/prometheus/common indirect minor v0.55.0 -> v0.63.0
github.com/prometheus/procfs indirect minor v0.15.1 -> v0.16.1
github.com/spf13/cobra require minor v1.8.1 -> v1.9.1
github.com/spf13/pflag indirect patch v1.0.5 -> v1.0.6
github.com/vladimirvivien/gexe require minor v0.4.1 -> v0.5.0
go (source) toolchain minor 1.23.5 -> 1.24.2
go.opentelemetry.io/otel indirect minor v1.29.0 -> v1.35.0
go.opentelemetry.io/otel/trace indirect minor v1.29.0 -> v1.35.0
golang.org/x/net indirect minor v0.36.0 -> v0.39.0
golang.org/x/oauth2 indirect minor v0.24.0 -> v0.29.0
golang.org/x/sys indirect minor v0.30.0 -> v0.32.0
golang.org/x/term indirect minor v0.29.0 -> v0.31.0
golang.org/x/text indirect minor v0.22.0 -> v0.24.0
golang.org/x/time indirect minor v0.7.0 -> v0.11.0
google.golang.org/genproto/googleapis/rpc indirect digest b45e905 -> 7b38467
google.golang.org/grpc indirect minor v1.66.0 -> v1.72.0
k8s.io/api indirect minor v0.32.1 -> v0.33.0
k8s.io/apimachinery indirect minor v0.32.1 -> v0.33.0
k8s.io/client-go indirect minor v0.32.1 -> v0.33.0
k8s.io/component-base indirect minor v0.32.1 -> v0.33.0
k8s.io/utils indirect digest 3ea5e8c -> 1f6e0b7
sigs.k8s.io/controller-runtime indirect patch v0.20.0 -> v0.20.4
sigs.k8s.io/structured-merge-diff/v4 indirect minor v4.6.0 -> v4.7.0

Release Notes

emicklei/go-restful (github.com/emicklei/go-restful/v3)

v3.12.2

Compare Source

  • allow empty payloads in post,put,patch, issue #​580 ( thanks @​liggitt, Jordan Liggitt)

v3.12.1

Compare Source

  • fix misroute when dealing multiple webservice with regex (#​549) (thanks Haitao Chen)

v3.12.0

Compare Source

v3.11.3

Compare Source

  • better not have 2 tags on one commit

v3.11.2

Compare Source

  • fix by restoring custom JSON handler functions (Mike Beaumont #​540)

v3.11.1

Compare Source

  • fix by restoring custom JSON handler functions (Mike Beaumont #​540)
evanphx/json-patch (github.com/evanphx/json-patch/v5)

v5.9.11

Compare Source

What's Changed

Full Changelog: evanphx/json-patch@v5.9.10...v5.9.11

v5.9.10

Compare Source

What's Changed

New Contributors

Full Changelog: evanphx/json-patch@v5.9.0...v5.9.10

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

go-openapi/jsonpointer (github.com/go-openapi/jsonpointer)

v0.21.1

Compare Source

go-openapi/jsonreference (github.com/go-openapi/jsonreference)

v0.21.0

Compare Source

v0.20.5

Compare Source

v0.20.4

Compare Source

v0.20.3

Compare Source

go-openapi/swag (github.com/go-openapi/swag)

v0.23.1

Compare Source

google/go-cmp (github.com/google/go-cmp)

v0.7.0

Compare Source

New API:

  • (#​367) Support compare functions with SortSlices and SortMaps

Panic messaging:

  • (#​370) Detect proto.Message types when failing to export a field
klauspost/compress (github.com/klauspost/compress)

v1.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: klauspost/compress@v1.17.11...v1.18.0

v1.17.11

Compare Source

What's Changed

New Contributors

Full Changelog: klauspost/compress@v1.17.10...v1.17.11

v1.17.10

Compare Source

What's Changed

New Contributors

Full Changelog: klauspost/compress@v1.17.9...v1.17.10

mailru/easyjson (github.com/mailru/easyjson)

v0.9.0

Compare Source

up go version and bugfixes

v0.8.0

Compare Source

stable version before go version bump

mattn/go-sqlite3 (github.com/mattn/go-sqlite3)

v1.14.28

Compare Source

v1.14.27

Compare Source

v1.14.26

Compare Source

v1.14.25

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

v1.8.0-community

Compare Source

What's Changed

Non-breaking changes

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 oliviercazade 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.

@jotak jotak closed this Apr 28, 2025
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