Skip to content

fix(deps): update go modules #1479

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

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

Conversation

red-hat-konflux[bot]
Copy link
Contributor

This PR contains the following updates:

Package Type Update Change
cel.dev/expr indirect minor v0.20.0 -> v0.23.1
github.com/bpfman/bpfman-operator require digest cd81bc6 -> 4bd625b
github.com/google/cel-go indirect minor v0.22.0 -> v0.25.0
github.com/google/pprof indirect digest 337e5dd -> c008609
github.com/netobserv/flowlogs-pipeline require patch v1.9.0-crc0.0.20250502080315-db59695ae6de -> v1.9.0-crc1
github.com/netobserv/netobserv-ebpf-agent require digest 0cd2534 -> 5a3a4f8
github.com/openshift/api require digest e577b4d -> 7152b1b
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring require minor v0.81.0 -> v0.82.0
go.opentelemetry.io/proto/otlp indirect minor v1.5.0 -> v1.6.0
google.golang.org/genproto/googleapis/api indirect digest 7b38467 -> 10db94c
google.golang.org/genproto/googleapis/rpc indirect digest 7b38467 -> 10db94c
k8s.io/api require minor v0.32.3 -> v0.33.0
k8s.io/apiextensions-apiserver require minor v0.32.3 -> v0.33.0
k8s.io/apimachinery require minor v0.32.3 -> v0.33.0
k8s.io/apiserver indirect 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-aggregator require minor v0.32.3 -> v0.33.0
k8s.io/utils require digest 1f6e0b7 -> 0f33e8f

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

google/cel-spec (cel.dev/expr)

v0.23.1

Compare Source

What's Changed

Full Changelog: google/cel-spec@v0.23.0...v0.23.1

v0.23.0

Compare Source

What's Changed

New Contributors

Full Changelog: google/cel-spec@v0.22.1...v0.23.0

v0.22.1

Compare Source

What's Changed

Full Changelog: google/cel-spec@v0.22.0...v0.22.1

v0.22.0

Compare Source

What's Changed

  • Add test_suite and test_config under conformance [#​441]

New Contributors

Full Changelog: google/cel-spec@v0.21.2...v0.22.0

v0.21.2

Compare Source

What's Changed

Full Changelog: google/cel-spec@v0.21.1...v0.21.2

v0.21.1

Compare Source

What's Changed

Full Changelog: google/cel-spec@v0.21.0...v0.21.1

v0.21.0

Compare Source

What's Changed

Full Changelog: google/cel-spec@v0.20.0...v0.21.0

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

v0.25.0

Compare Source

Features & Enhancements

This release introduces features for richer configuration-based CEL, AI prompt generation from config files, additional documentation, and 3x performance when evaluating traced / state-tracking expressions. This release also introduces a unit test runner framwork.

#​1141: Expose extension option factory as a public method

#​1143: Add a new compiler tool which can be used to compile CEL expressions and policies using serialized environment

#​1151: Lightweight observable evaluation

#​1155: Utilities for formatting and parsing documentation strings

#​1156: Support for documentation and example strings in CEL environments

#​1158: Re-export interpreter.AttributePattern in package cel.

#​1159: Document the standard library macros and functions

#​1160: Prompt generation for AI-assisted authoring based on a CEL environment

#​1117: Add LateFunctionBinding declaration and fix constant folding

#​1163: Initialize stateful observers prior to evaluation

#​1164: Unparse Expr values to strings

#​1149: Add test runner library

#​1167: REPL: Add an extension option for two var comprehensions

Fixes

Several fixes were implemented, including updating strings.format to better adhere to the specification, correcting constant folding logic alongside the late binding feature, removing a non-functional check in test code, and adding argument count validation for optFieldSelect.

#​1133: Update strings.format to adhere to the specification

#​1117: Add LateFunctionBinding declaration and fix constant folding

#​1161: Remove non-functional optional check in test-only selection

#​1168: Check arg count when validating optFieldSelect

Refactoring & Internal Improvements

General refactoring was performed across the codebase. Coverage and comments for Activation methods were improved. The test runner library was refactored to create options from flags and improve code structure.

#​1145: Refactoring changes

#​1150: Additional comments and coverage for Activation methods

#​1165: Refactoring changes to create a test runner option from passed flags, correct indentation and add package level comment for test

Documentation

Documentation was enhanced, including updates to the NativeTypes documentation regarding the cel tag, adding documentation for the optional library, and documenting the standard library functions/macros as part of the documentation string feature.

#​1148: Update NativeTypes doc to reflect how to enable cel tag

#​1155: Utilities for formatting and parsing documentation strings

#​1156: Support for documentation and example strings in CEL environments

#​1159: Document the standard library macros and functions

#​1162: Document optional library and increase docs coverage

Build System

Configuration fixes were made for Bzlmod compatibility.

#​1146: Bzlmod configuration fixes

Type System

Type formatting was updated to correctly handle type parameters.

#​1154: Update type formatting for type params

v0.24.1

Compare Source

Fixes

  • Separate unnest optimization from composer to capture type info [#​1138]

Full Changelog: google/cel-go@v0.24.0...v0.24.1

v0.24.0

Compare Source

Support for subsetting CEL standard library and serialization of CEL environments to YAML.

CEL is an official Google product [#​1122]

Features

  • Helper methods for subsetting function overloads [#​1120]
  • Introduce cel package aliases for Activation [#​1123]
  • Canonical environment description and stdlib subsetting [#​1125]
  • Support for cel.Env conversion to YAML-serializable config [#​1128]
  • Option to configure CEL via env.Config object [#​1129]
  • Support for feature flags and validators in env.Config [#​1132]
  • Add k8s custom policy tag handler for test [#​1121]

Fixes

  • ContextEval support for Unknowns [#​1126]
  • Fix godoc formatting for Lists and OptionalTypes functions [#​1127]
  • Default enable DefaultUTCTimeZone [#​1130]
  • Support for splitting nested branching operators within policies [#​1136]

New Contributors

Full Changelog: google/cel-go@v0.23.2...v0.24.0

v0.23.2

Compare Source

Corrects one remaining issue for cost computations from the v0.23.0 releases

Fixes

Full Changelog: google/cel-go@v0.23.1...v0.23.2

v0.23.1

Compare Source

Minor release to address cost tracking and size estimation [#​1113]

Full Changelog: google/cel-go@v0.23.0...v0.23.1

v0.23.0

Compare Source

Features

  • First and last element in list support [#​1067]
  • Add support for typed conformance tests. [#​1089]
  • Add syntax for escaped field selectors. [#​1002]
  • Add optional.unwrap() / .unwrapOpt() function [#​1103]
  • Cost tracking for two-variable comprehensions and bindings [#​1104]

Fixes

PR #​1099 enables a change in the internal variable name used for comprehension result accumulation. This change may break some tests which inspect the AST contents in text form; however, will not break any existing uses of CEL during parse, check, or evaluation.

  • Improve policy compiler error message for incompatible outputs. [#​1082]
  • Fix partial evaluation with the comprehension folder objects [#​1084]
  • Introduce versioning options to all extensions [#​1075]
  • Fix a crash in mismatched output check for nested rules [#​1086]
  • improve debug output to properly quote byte strings [#​1088]
  • Fix two-variable comprehension pruning [#​1083]
  • Replace checks for valid UTF-8 in strings with go-maintained calls [#​1094]
  • Policy nested rule fix [#​1092]
  • Address non-const format string lint findings [#​1096]
  • Fix typos in ext/README.md [#​1098]
  • Add option to use inaccessible accumulator var [#​1097]
  • Add test cases for string.format covering various edge cases [#​1101]
  • Add base_config and partial_config files under restricted_destination testdata [#​1106]
  • Default enable using hidden accumulator name [#​1099]
  • Update PruneAst to support constants of optional type [#​1109]

New Contributors

Full Changelog: google/cel-go@v0.22.1...v0.23.0

v0.22.1

Compare Source

Fixes

New Contributors

Full Changelog: google/cel-go@v0.22.0...v0.22.1

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

v1.9.0-crc1

Compare Source

prometheus-operator/prometheus-operator (github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring)

v0.82.0: 0.82.0 / 2025-04-17

Compare Source

  • [CHANGE] Add more API validations to the ScrapeConfig CRD. #​7413
  • [CHANGE] Remove web console arguments if Prometheus version >= 3. #​7457
  • [FEATURE] Add RemoteWrite support for ThanosRuler CRD. Note that when remote write is configured, Thanos Ruler runs in stateless mode. #​7444
  • [FEATURE] Add msTeamsV2Configs receiver to AlertManagerConfig CRD. #​7464
  • [FEATURE] Add content, username and avatarURL fields to discordConfigs receiver in AlertmanagerConfig CRD. #​7307
  • [FEATURE] Add convertClassicHistogramsToNHCB field to ServiceMonitor, PodMonitor, Probe and ScrapeConfig CRDs. #​7448
  • [FEATURE] Add timeout field to webhookConfigs receiver in AlertManagerConfig CRD. #​7310
  • [FEATURE] Add additionalArgs field to AlertManager CRD. #​7385
  • [ENHANCEMENT] Add maxSamplesPerSend field to RemoteWrite Metadata Config. #​7443
  • [ENHANCEMENT] Add the terminationGracePeriodSeconds to the Alertmanager, Prometheus, PrometheusAgent and ThanosRuler CRDs. #​7439
  • [ENHANCEMENT] Validate proxyURL field in AlertManagerConfig CRD. #​6876
  • [BUGFIX] Fix nameValidationScheme support for Prometheus and PrometheusAgent CRDs. #​7414
  • [BUGFIX] Support socks5 scheme in proxyUrl field for all CRDs. #​7460 #​7466
open-telemetry/opentelemetry-proto-go (go.opentelemetry.io/proto/otlp)

v1.6.0

Compare Source

Overview

Generated Go code for the v1.6.0 version of the OTLP

OTLP Changelog

Added

  • resource: Add EntityRef. #​635
  • general: add specs for empty telemetry envelopes. #​622

Changed

  • logs: Stabilize event_name field in LogRecord message. #​643
  • profiles: Move the lookup tables to ProfilesData. #​644
  • profiles: Move default sample_type from the string table to sample_type. #​620
  • general: remove comment on each service about keeping the RPC alive #​637
  • metrics: clarify when bucket_counts array may be empty #​619

Full Changelog: open-telemetry/opentelemetry-proto@v1.5.0...v1.6.0

What's Changed

Full Changelog: open-telemetry/opentelemetry-proto-go@v1.5.0...v1.6.0

kubernetes/api (k8s.io/api)

v0.33.0

Compare Source

v0.32.4

Compare Source

kubernetes/apiextensions-apiserver (k8s.io/apiextensions-apiserver)

v0.33.0

Compare Source

v0.32.4

Compare Source

kubernetes/apimachinery (k8s.io/apimachinery)

v0.33.0

Compare Source

v0.32.4

Compare Source

kubernetes/apiserver (k8s.io/apiserver)

v0.33.0

Compare Source

v0.32.4

Compare Source

kubernetes/client-go (k8s.io/client-go)

v0.33.0

Compare Source

v0.32.4

Compare Source

kubernetes/component-base (k8s.io/component-base)

v0.33.0

Compare Source

v0.32.4

Compare Source

kubernetes/kube-aggregator (k8s.io/kube-aggregator)

v0.33.0

Compare Source

v0.32.4

Compare Source


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 May 4, 2025
Copy link

openshift-ci bot commented May 4, 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.

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

Copy link

openshift-ci bot commented May 4, 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.

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.

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.

0 participants