Skip to content
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

chore(deps): update all non-major dependencies #849

Merged
merged 7 commits into from
Aug 28, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 14, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
docker/build-push-action action minor v6.6.1 -> v6.7.0 age adoption passing confidence
github.com/onsi/ginkgo/v2 require patch v2.20.0 -> v2.20.1 age adoption passing confidence
github.com/testcontainers/testcontainers-go/modules/k3s require minor v0.32.0 -> v0.33.0 age adoption passing confidence
go (source) toolchain minor 1.22.6 -> 1.23.0 age adoption passing confidence
go.opentelemetry.io/otel require minor v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc require minor v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/metric require minor v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/sdk/metric require minor v1.28.0 -> v1.29.0 age adoption passing confidence
golang stage minor 1.22 -> 1.23 age adoption passing confidence
k8s.io/api require minor v0.30.3 -> v0.31.0 age adoption passing confidence
k8s.io/apimachinery require minor v0.30.3 -> v0.31.0 age adoption passing confidence
k8s.io/apiserver require minor v0.30.3 -> v0.31.0 age adoption passing confidence
kubewarden/github-actions action patch v3.3.1 -> v3.3.3 age adoption passing confidence
sigs.k8s.io/controller-runtime require minor v0.18.5 -> v0.19.0 age adoption passing confidence

Release Notes

docker/build-push-action (docker/build-push-action)

v6.7.0

Compare Source

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

v2.20.1

Compare Source

2.20.1

Fixes
  • make BeSpecEvent duration matcher more forgiving [d6f9640]
testcontainers/testcontainers-go (github.com/testcontainers/testcontainers-go/modules/k3s)

v0.33.0

Compare Source

What's Changed
⚠️ Breaking Changes

If you are building Docker images with the FromDockerfile struct in the GenericContainerRequest, please consider that the ContextArchive field in that struct has changed from io.Reader to io.ReadSeeker. This is needed because we want to be able to rewind to do multiple passes when reading all the images that are present in a Dockerfile.

🔒 Security
  • chore(deps): bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible (#​2733) @​mdelapenya
🚀 Features
🐛 Bug Fixes
📖 Documentation
🧹 Housekeeping
📦 Dependency updates
golang/go (go)

v1.23.0

open-telemetry/opentelemetry-go (go.opentelemetry.io/otel)

v1.29.0: /v0.51.0/v0.5.0

Compare Source

Overview

This release is the last to support Go 1.21. The next release will require at least Go 1.22.

Added
  • Add MacOS ARM64 platform to the compatibility testing suite. (#​5577)
  • Add InstrumentationScope field to SpanStub in go.opentelemetry.io/otel/sdk/trace/tracetest, as a replacement for the deprecated InstrumentationLibrary. (#​5627)
  • Make the initial release of go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc. This new module contains an OTLP exporter that transmits log telemetry using gRPC. This module is unstable and breaking changes may be introduced. See our versioning policy for more information about these stability guarantees. (#​5629)
  • Add Walk function to TraceState in go.opentelemetry.io/otel/trace to iterate all the key-value pairs. (#​5651)
  • Bridge the trace state in go.opentelemetry.io/otel/bridge/opencensus. (#​5651)
  • Zero value of SimpleProcessor in go.opentelemetry.io/otel/sdk/log no longer panics. (#​5665)
  • The FilterProcessor interface type is added in go.opentelemetry.io/otel/sdk/log/internal/x. This is an optional and experimental interface that log Processors can implement to instruct the Logger if a Record will be processed or not. It replaces the existing Enabled method that is removed from the Processor interface itself. It does not fall within the scope of the OpenTelemetry Go versioning and stability policy and it may be changed in backwards incompatible ways or removed in feature releases. (#​5692)
  • Support Go 1.23. (#​5720)
Changed
  • NewMemberRaw, NewKeyProperty and NewKeyValuePropertyRaw in go.opentelemetry.io/otel/baggage allow UTF-8 string in key. (#​5132)
  • Processor.OnEmit in go.opentelemetry.io/otel/sdk/log now accepts a pointer to Record instead of a value so that the record modifications done in a processor are propagated to subsequent registered processors. (#​5636)
  • SimpleProcessor.Enabled in go.opentelemetry.io/otel/sdk/log now returns false if the exporter is nil. (#​5665)
  • Update the concurrency requirements of Exporter in go.opentelemetry.io/otel/sdk/log. (#​5666)
  • SimpleProcessor in go.opentelemetry.io/otel/sdk/log synchronizes OnEmit calls. (#​5666)
  • The Processor interface in go.opentelemetry.io/otel/sdk/log no longer includes the Enabled method. See the FilterProcessor interface type added in go.opentelemetry.io/otel/sdk/log/internal/x to continue providing this functionality. (#​5692)
  • The SimpleProcessor type in go.opentelemetry.io/otel/sdk/log is no longer comparable. (#​5693)
  • The BatchProcessor type in go.opentelemetry.io/otel/sdk/log is no longer comparable. (#​5693)
Fixed
  • Correct comments for the priority of the WithEndpoint and WithEndpointURL options and their corresponding environment variables in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​5584)
  • Pass the underlying error rather than a generic retry-able failure in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp, go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp and go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​5541)
  • Correct the Tracer, Meter, and Logger names used in go.opentelemetry.io/otel/example/dice. (#​5612)
  • Correct the Tracer names used in go.opentelemetry.io/otel/example/namedtracer. (#​5612)
  • Correct the Tracer name used in go.opentelemetry.io/otel/example/opencensus. (#​5612)
  • Correct the Tracer and Meter names used in go.opentelemetry.io/otel/example/otel-collector. (#​5612)
  • Correct the Tracer names used in go.opentelemetry.io/otel/example/passthrough. (#​5612)
  • Correct the Meter name used in go.opentelemetry.io/otel/example/prometheus. (#​5612)
  • Correct the Tracer names used in go.opentelemetry.io/otel/example/zipkin. (#​5612)
  • Correct comments for the priority of the WithEndpoint and WithEndpointURL options and their corresponding environment variables in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc and go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp. (#​5641)
  • Correct comments for the priority of the WithEndpoint and WithEndpointURL options and their corresponding environment variables in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#​5650)
  • Stop percent encoding header environment variables in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc, go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp, go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc and go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp (#​5705)
  • Remove invalid environment variable header keys in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc, go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp, go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc and go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp (#​5705)
Removed
  • The Enabled method of the SimpleProcessor in go.opentelemetry.io/otel/sdk/log is removed. (#​5692)
  • The Enabled method of the BatchProcessor in go.opentelemetry.io/otel/sdk/log is removed. (#​5692)
What's Changed

Configuration

📅 Schedule: Branch creation - "before 4am 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 is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner August 14, 2024 08:51
Copy link
Contributor Author

renovate bot commented Aug 14, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 20 additional dependencies were updated

Details:

Package Change
k8s.io/client-go v0.30.3 -> v0.31.0
github.com/davecgh/go-spew v1.1.1 -> v1.1.2-0.20180830191138-d8f796af33cc
github.com/google/cel-go v0.17.8 -> v0.20.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 -> v2.22.0
github.com/pmezard/go-difflib v1.0.0 -> v1.0.1-0.20181226105442-5d4384ee4fb2
github.com/prometheus/client_golang v1.19.0 -> v1.19.1
github.com/prometheus/client_model v0.6.0 -> v0.6.1
github.com/prometheus/common v0.51.1 -> v0.55.0
github.com/prometheus/procfs v0.13.0 -> v0.15.1
github.com/testcontainers/testcontainers-go v0.32.0 -> v0.33.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 -> v0.53.0
go.opentelemetry.io/otel/sdk v1.28.0 -> v1.29.0
go.opentelemetry.io/otel/trace v1.28.0 -> v1.29.0
golang.org/x/oauth2 v0.20.0 -> v0.22.0
golang.org/x/sys v0.23.0 -> v0.24.0
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240822170219-fc7c04adadcd
google.golang.org/genproto/googleapis/rpc v0.0.0-20240730163845-b1a4ccb954bf -> v0.0.0-20240822170219-fc7c04adadcd
k8s.io/apiextensions-apiserver v0.30.1 -> v0.31.0
k8s.io/component-base v0.30.3 -> v0.31.0
k8s.io/klog/v2 v2.120.1 -> v2.130.1

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f3c8f52 to d6c108d Compare August 20, 2024 14:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 1650787 to dfef187 Compare August 27, 2024 13:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dfef187 to d8b11ed Compare August 28, 2024 10:12
@viccuad viccuad self-assigned this Aug 28, 2024
Signed-off-by: Víctor Cuadrado Juan <vcuadradojuan@suse.de>
The RBAC changes are equivalent.

Signed-off-by: Víctor Cuadrado Juan <vcuadradojuan@suse.de>
Copy link

codecov bot commented Aug 28, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 70.26%. Comparing base (d4277d8) to head (cbbbbad).
Report is 8 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #849      +/-   ##
==========================================
+ Coverage   70.02%   70.26%   +0.23%     
==========================================
  Files          29       29              
  Lines        2599     2603       +4     
==========================================
+ Hits         1820     1829       +9     
+ Misses        603      599       -4     
+ Partials      176      175       -1     
Flag Coverage Δ
integration-tests 61.18% <ø> (+0.25%) ⬆️
unit-tests 35.92% <ø> (ø)

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

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Signed-off-by: Víctor Cuadrado Juan <vcuadradojuan@suse.de>
Signed-off-by: Víctor Cuadrado Juan <vcuadradojuan@suse.de>
Signed-off-by: Víctor Cuadrado Juan <vcuadradojuan@suse.de>
Copy link
Contributor Author

renovate bot commented Aug 28, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

ParseInt(x,x,32) makes sure it will fit into int32.

See also securego/gosec#1185

Signed-off-by: Víctor Cuadrado Juan <vcuadradojuan@suse.de>
@viccuad viccuad merged commit a744dcb into main Aug 28, 2024
13 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch August 28, 2024 14:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

1 participant