kubewarden-controller
kubewarden-controller copied to clipboard
chore(deps): update all non-major dependencies
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| actions/checkout | action | minor | v3.0.0 -> v3.1.0 |
| github.com/onsi/gomega | require | minor | v1.20.1 -> v1.24.1 |
| go.opentelemetry.io/otel | require | patch | v1.11.1 -> v1.11.2 |
| go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc | require | minor | v0.33.0 -> v0.34.0 |
| go.opentelemetry.io/otel/metric | require | minor | v0.33.0 -> v0.34.0 |
| go.opentelemetry.io/otel/sdk/metric | require | minor | v0.33.0 -> v0.34.0 |
| k8s.io/api | require | minor | v0.25.3 -> v0.26.0 |
| k8s.io/apimachinery | require | minor | v0.25.3 -> v0.26.0 |
| ossf/scorecard-action | action | patch | v2.0.3 -> v2.0.6 |
| sigs.k8s.io/controller-runtime | require | patch | v0.13.0 -> v0.13.1 |
Release Notes
onsi/gomega
v1.24.1
v1.24.0
1.24.0
Features
Introducting gcustom - a convenient mechanism for building custom matchers.
This is an RC release for gcustom. The external API may be tweaked in response to feedback however it is expected to remain mostly stable.
Maintenance
- Update BeComparableTo documentation [
756eaa0]
v1.23.0
1.23.0
Features
-
Custom formatting on a per-type basis can be provided using
format.RegisterCustomFormatter()-- see the docs here -
Substantial improvement have been made to
StopTrying():- Users can now use
StopTrying().Wrap(err)to wrap errors andStopTrying().Attach(description, object)to attach arbitrary objects to theStopTrying()error StopTrying()is now always interpreted as a failure. If you are an early adopter ofStopTrying()you may need to change your code as the prior version would match against the returned value even ifStopTrying()was returned. Going forward theStopTrying()api should remain stable.StopTrying()andStopTrying().Now()can both be used in matchers - not just polled functions.
- Users can now use
-
TryAgainAfter(duration)is used likeStopTrying()but instructsEventuallyandConsistentlythat the poll should be tried again after the specified duration. This allows you to dynamically adjust the polling duration. -
ctxcan now be passed-in as the first argument toEventuallyandConsistently.
Maintenance
- Bump github.com/onsi/ginkgo/v2 from 2.3.0 to 2.3.1 (#597) [
afed901] - Bump nokogiri from 1.13.8 to 1.13.9 in /docs (#599) [
7c691b3] - Bump github.com/google/go-cmp from 0.5.8 to 0.5.9 (#587) [
ff22665]
v1.22.1
1.22.1
Fixes
- When passed a context and no explicit timeout, Eventually will only timeout when the context is cancelled [
e5105cf] - Allow StopTrying() to be wrapped [
bf3cba9]
Maintenance
- bump to ginkgo v2.3.0 [
c5d5c39]
v1.22.0
1.22.0
Features
Several improvements have been made to Eventually and Consistently in this and the most recent releases:
- Eventually and Consistently can take a context.Context [
65c01bc] This enables integration with Ginkgo 2.3.0's interruptible nodes and node timeouts. - Eventually and Consistently that are passed a SpecContext can provide reports when an interrupt occurs [
0d063c9] - Eventually/Consistently will forward an attached context to functions that ask for one [
e2091c5] - Eventually/Consistently supports passing arguments to functions via WithArguments() [
a2dc7c3] - Eventually and Consistently can now be stopped early with StopTrying(message) and StopTrying(message).Now() [
52976bb]
These improvements are all documented in Gomega's docs
v1.21.1
v1.21.1
Features
- Eventually and Consistently that are passed a SpecContext can provide reports when an interrupt occurs [
0d063c9]
v1.21.0
1.21.0
Features
- Eventually and Consistently can take a context.Context [
65c01bc] This enables integration with Ginkgo 2.3.0's interruptible nodes and node timeouts. - Introduces Eventually.Within.ProbeEvery with tests and documentation (#591) [
f633800] - New BeKeyOf matcher with documentation and unit tests (#590) [
fb586b3]
Fixes
- Cover the entire gmeasure suite with leak detection [
8c54344] - Fix gmeasure leak [
119d4ce] - Ignore new Ginkgo ProgressSignal goroutine in gleak [
ba548e2]
Maintenance
- Fixes crashes on newer Ruby 3 installations by upgrading github-pages gem dependency (#596) [
12469a0]
v1.20.2
1.20.2
Fixes
- label specs that rely on remote access; bump timeout on short-circuit test to make it less flaky [
35eeadf] - gexec: allow more headroom for SIGABRT-related unit tests (#581) [
5b78f40] - Enable reading from a closed gbytes.Buffer (#575) [
061fd26]
Maintenance
open-telemetry/opentelemetry-go
v1.11.2: /0.34.0
Added
- The
WithViewOptionis added to thego.opentelemetry.io/otel/sdk/metricpackage. This option is used to configure the view(s) aMeterProviderwill use for allReaders that are registered with it. (#3387) - Add Instrumentation Scope and Version as info metric and label in Prometheus exporter.
This can be disabled using the
WithoutScopeInfo()option added to that package.(#3273, #3357) - OTLP exporters now recognize: (#3363)
OTEL_EXPORTER_OTLP_INSECUREOTEL_EXPORTER_OTLP_TRACES_INSECUREOTEL_EXPORTER_OTLP_METRICS_INSECUREOTEL_EXPORTER_OTLP_CLIENT_KEYOTEL_EXPORTER_OTLP_TRACES_CLIENT_KEYOTEL_EXPORTER_OTLP_METRICS_CLIENT_KEYOTEL_EXPORTER_OTLP_CLIENT_CERTIFICATEOTEL_EXPORTER_OTLP_TRACES_CLIENT_CERTIFICATEOTEL_EXPORTER_OTLP_METRICS_CLIENT_CERTIFICATE
- The
Viewtype and relatedNewViewfunction to create a view according to the OpenTelemetry specification are added togo.opentelemetry.io/otel/sdk/metric. These additions are replacements for theViewtype andNewfunction fromgo.opentelemetry.io/otel/sdk/metric/view. (#3459) - The
InstrumentandInstrumentKindtype are added togo.opentelemetry.io/otel/sdk/metric. These additions are replacements for theInstrumentandInstrumentKindtypes fromgo.opentelemetry.io/otel/sdk/metric/view. (#3459) - The
Streamtype is added togo.opentelemetry.io/otel/sdk/metricto define a metric data stream a view will produce. (#3459) - The
AssertHasAttributesallows instrument authors to test that datapoints returned have appropriate attributes. (#3487)
Changed
- The
"go.opentelemetry.io/otel/sdk/metric".WithReaderoption no longer accepts views to associate with theReader. Instead, views are now registered directly with theMeterProvidervia the newWithViewoption. The views registered with theMeterProviderapply to allReaders. (#3387) - The
Temporality(view.InstrumentKind) metricdata.TemporalityandAggregation(view.InstrumentKind) aggregation.Aggregationmethods are added to the"go.opentelemetry.io/otel/sdk/metric".Exporterinterface. (#3260) - The
Temporality(view.InstrumentKind) metricdata.TemporalityandAggregation(view.InstrumentKind) aggregation.Aggregationmethods are added to the"go.opentelemetry.io/otel/exporters/otlp/otlpmetric".Clientinterface. (#3260) - The
WithTemporalitySelectorandWithAggregationSelectorReaderOptions have been changed toManualReaderOptions in thego.opentelemetry.io/otel/sdk/metricpackage. (#3260) - The periodic reader in the
go.opentelemetry.io/otel/sdk/metricpackage now uses the temporality and aggregation selectors from its configured exporter instead of accepting them as options. (#3260)
Fixed
- The
go.opentelemetry.io/otel/exporters/prometheusexporter fixes duplicated_totalsuffixes. (#3369) - Remove comparable requirement for
Readers. (#3387) - Cumulative metrics from the OpenCensus bridge (
go.opentelemetry.io/otel/bridge/opencensus) are defined as monotonic sums, instead of non-monotonic. (#3389) - Asynchronous counters (
CounterandUpDownCounter) from the metric SDK now produce delta sums when configured with delta temporality. (#3398) - Exported
Statuscodes in thego.opentelemetry.io/otel/exporters/zipkinexporter are now exported as all upper case values. (#3340) Aggregations fromgo.opentelemetry.io/otel/sdk/metricwith no data are not exported. (#3394, #3436)- Reenabled Attribute Filters in the Metric SDK. (#3396)
- Asynchronous callbacks are only called if they are registered with at least one instrument that does not use drop aggragation. (#3408)
- Do not report empty partial-success responses in the
go.opentelemetry.io/otel/exporters/otlpexporters. (#3438, #3432) - Handle partial success responses in
go.opentelemetry.io/otel/exporters/otlp/otlpmetricexporters. (#3162, #3440) - Prevent duplicate Prometheus description, unit, and type. (#3469)
- Prevents panic when using incorrect
attribute.Value.As[Type]Slice(). (#3489)
Removed
- The
go.opentelemetry.io/otel/exporters/otlp/otlpmetric.Clientinterface is removed. (#3486) - The
go.opentelemetry.io/otel/exporters/otlp/otlpmetric.Newfunction is removed. Use theotlpmetric[http|grpc].Newdirectly. (#3486)
Deprecated
- The
go.opentelemetry.io/otel/sdk/metric/viewpackage is deprecated. UseInstrument,InstrumentKind,View, andNewViewingo.opentelemetry.io/otel/sdk/metricinstead. (#3476)
ossf/scorecard-action
v2.0.6
What's Changed
- Fix - Broken dockerfile by @naveensrinivasan in https://github.com/ossf/scorecard-action/pull/979
Full Changelog: https://github.com/ossf/scorecard-action/compare/v2.0.5...v2.0.6
v2.0.5
What's Changed
- Remove trailing space from example by @jamacku in https://github.com/ossf/scorecard-action/pull/955
- :seedling: Bump actions/cache from 3.0.8 to 3.0.10 by @dependabot in https://github.com/ossf/scorecard-action/pull/956
- :seedling: Bump github/codeql-action from 2.1.25 to 2.1.26 by @dependabot in https://github.com/ossf/scorecard-action/pull/957
- :seedling: Bump step-security/harden-runner from 1.4.5 to 1.5.0 by @dependabot in https://github.com/ossf/scorecard-action/pull/958
- :seedling: Bump debian from
5cf1d98tob46fc4eby @dependabot in https://github.com/ossf/scorecard-action/pull/959 - :seedling: Bump github.com/sigstore/cosign from 1.12.1 to 1.13.0 by @dependabot in https://github.com/ossf/scorecard-action/pull/962
- :seedling: Upgrade to go 1.19 by @naveensrinivasan in https://github.com/ossf/scorecard-action/pull/961
- :seedling: Bump github.com/spf13/cobra from 1.5.0 to 1.6.0 by @dependabot in https://github.com/ossf/scorecard-action/pull/967
- :seedling: Bump golang from
c2a98a5tob850621by @dependabot in https://github.com/ossf/scorecard-action/pull/966 - :seedling: Bump golang from
b850621to25de7b6by @dependabot in https://github.com/ossf/scorecard-action/pull/968 - New release for Scorecard v4.8.0 by @naveensrinivasan in https://github.com/ossf/scorecard-action/pull/969
New Contributors
- @jamacku made their first contribution in https://github.com/ossf/scorecard-action/pull/955
Full Changelog: https://github.com/ossf/scorecard-action/compare/v2.0.4...v2.0.5
v2.0.4
Fixes #856
What's Changed
- :seedling: Bump github.com/caarlos0/env/v6 from 6.10.0 to 6.10.1 by @dependabot in https://github.com/ossf/scorecard-action/pull/934
- feat: do not run signing on pull requests by @laurentsimon in https://github.com/ossf/scorecard-action/pull/935
- :seedling: Bump debian from 11.4-slim to 11.5-slim by @dependabot in https://github.com/ossf/scorecard-action/pull/936
- :seedling: Bump github.com/sigstore/cosign from 1.11.1 to 1.12.0 by @dependabot in https://github.com/ossf/scorecard-action/pull/938
- :seedling: Bump github/codeql-action from 2.1.22 to 2.1.24 by @dependabot in https://github.com/ossf/scorecard-action/pull/941
- 🐛 Restore behavior of ignoring scorecard runtime errors by @spencerschrock in https://github.com/ossf/scorecard-action/pull/948
- :seedling: Bump actions/dependency-review-action from 2.1.0 to 2.4.0 by @dependabot in https://github.com/ossf/scorecard-action/pull/950
- :seedling: Bump github.com/sigstore/cosign from 1.12.0 to 1.12.1 by @dependabot in https://github.com/ossf/scorecard-action/pull/947
- :seedling: Bump github/codeql-action from 2.1.24 to 2.1.25 by @dependabot in https://github.com/ossf/scorecard-action/pull/949
- :seedling: Bump codecov/codecov-action from 3.1.0 to 3.1.1 by @dependabot in https://github.com/ossf/scorecard-action/pull/942
- Create v2.0.4 patch by @spencerschrock in https://github.com/ossf/scorecard-action/pull/952
New Contributors
- @spencerschrock made their first contribution in https://github.com/ossf/scorecard-action/pull/948
Full Changelog: https://github.com/ossf/scorecard-action/compare/v2.0.3...v2.0.4
kubernetes-sigs/controller-runtime
v0.13.1
What's Changed
- ✨ Add tls options to manager.Options in https://github.com/kubernetes-sigs/controller-runtime/pull/2028
Full Changelog: https://github.com/kubernetes-sigs/controller-runtime/compare/v0.13.0...v0.13.1
Configuration
📅 Schedule: Branch creation - "before 3am on Monday" (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
This PR has been generated by Mend Renovate. View repository job log here.
This looks like another API breakage in open-telemetry, again:
Error: ../../../go/pkg/mod/go.opentelemetry.io/otel/exporters/otlp/[email protected]/internal/oconf/options.go:107:62: undefined: internal.GetUserAgentHeader
looking at controller-runtime bump, together with https://github.com/kubewarden/audit-scanner/pull/39.
I've built the container image and ran the e2e test with the controller with these updates. All passed