Bump the github-dependencies group across 1 directory with 5 updates
Bumps the github-dependencies group with 3 updates in the / directory: github.com/container-storage-interface/spec, go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc and golang.org/x/net.
Updates github.com/container-storage-interface/spec from 1.9.0 to 1.10.0
Release notes
Sourced from github.com/container-storage-interface/spec's releases.
v1.10.0
What's Changed
Breaking changes/Deprecations
- None
Additions
- [Alpha] Add new "SnapshotMetadata service" to allow CO to obtain allocated or changed block metadata for snapshots by
@carlbraganzain container-storage-interface/spec#551Clarifications/Corrections/Fixes
- None
Dependencies
- Update protoc and makefile by
@huww98in container-storage-interface/spec#552- Bump google.golang.org/grpc from 1.57.0 to 1.57.1 by
@dependabotin container-storage-interface/spec#559- Bump golang.org/x/net from 0.10.0 to 0.23.0 by
@dependabotin container-storage-interface/spec#564- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by
@saad-aliin container-storage-interface/spec#566New Contributors
@huww98made their first contribution in container-storage-interface/spec#552@carlbraganzamade their first contribution in container-storage-interface/spec#551Full Changelog: https://github.com/container-storage-interface/spec/compare/v1.9.0...v1.10.0
v1.10.0-rc1
No release notes provided.
Commits
21be3f8Merge pull request #566 from saad-ali/protoBufTo1331bc2cafBump google.golang.org/protobuf from 1.32.0 to 1.33.0adb2b16Merge pull request #564 from container-storage-interface/dependabot/go_module...811799aBump golang.org/x/net from 0.10.0 to 0.23.09674d35Merge pull request #559 from container-storage-interface/dependabot/go_module...2696773Added the SnapshotMetadata service. (#551)1f2bf8aBump google.golang.org/grpc from 1.57.0 to 1.57.1abf6346update protoc and related (#552)886cd48Merge pull request #555 from saad-ali/release19bump5855142Bump master version to 1.10 for next release- See full diff in compare view
Updates go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc from 0.52.0 to 0.53.0
Release notes
Sourced from go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc's releases.
Release v1.28.0/v0.53.0/v0.22.0/v0.8.0/v0.3.0/v0.1.0
Overview
Added
- Add the new
go.opentelemetry.io/contrib/detectors/azure/azurevmpackage to provide a resource detector for Azure VMs. (#5422)- Add support to configure views when creating MeterProvider using the config package. (#5654)
- The
go.opentelemetry.io/contrib/configadd support to configure periodic reader interval and timeout. (#5661)- Add log support for the autoexport package. (#5733)
- Add support for disabling the old runtime metrics using the
OTEL_GO_X_DEPRECATED_RUNTIME_METRICS=falseenvironment variable. (#5747)- Add support for signal-specific protocols environment variables (
OTEL_EXPORTER_OTLP_TRACES_PROTOCOL,OTEL_EXPORTER_OTLP_LOGS_PROTOCOL,OTEL_EXPORTER_OTLP_METRICS_PROTOCOL) ingo.opentelemetry.io/contrib/exporters/autoexport. (#5816)- The
go.opentelemetry.io/contrib/processors/minsevmodule is added. This module provides and experimental logging processor with a configurable threshold for the minimum severity records must have to be recorded. (#5817)- The
go.opentelemetry.io/contrib/processors/baggagecopymodule. This module is a replacement ofgo.opentelemetry.io/contrib/processors/baggage/baggagetrace. (#5824)Changed
- Improve performance of
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpcwith the usage ofWithAttributeSet()instead ofWithAttribute(). (#5664)- Improve performance of
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttpwith the usage ofWithAttributeSet()instead ofWithAttribute(). (#5664)- Update
go.opentelemetry.io/contrib/configto latest released configuration schema which introduces breaking changes whereAttributesis now amap[string]interface{}. (#5758)- Upgrade all dependencies of
go.opentelemetry.io/otel/semconv/v1.25.0togo.opentelemetry.io/otel/semconv/v1.26.0. (#5847)Fixed
- Custom attributes targeting metrics recorded by the
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttpare not ignored anymore. (#5129)- The double setup in
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace/examplethat caused duplicate traces. (#5564)- The superfluous
response.WriteHeadercall ingo.opentelemetry.io/contrib/instrumentation/net/http/otelhttpwhen the response writer is flushed. (#5634)- Use
c.FullPath()method to sethttp.routeattribute ingo.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin. (#5734)- Out-of-bounds panic in case of invalid span ID in
go.opentelemetry.io/contrib/propagators/b3. (#5754)Deprecated
- The
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelechopackage is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see #5550. (#5645)- The
go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaronpackage is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see #5552. (#5646)- The
go.opentelemetry.io/contrib/samplers/aws/xraypackage is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see #5554. (#5647)- The
go.opentelemetry.io/contrib/processors/baggage/baggagetracepackage is deprecated. Use the addedgo.opentelemetry.io/contrib/processors/baggagecopypackage instead. (#5824)
- Use
baggagecopy.NewSpanProcessoras a replacement forbaggagetrace.New.
NewSpanProcessoraccepts aFitlerfunction type that selects which baggage members are added to a span.NewSpanProcessorreturns a*baggagecopy.SpanProcessorinstead of atrace.SpanProcessorinterface. The returned type still implements the interface.#5550: open-telemetry/opentelemetry-go-contrib#5550 #5552: open-telemetry/opentelemetry-go-contrib#5552 #5554: open-telemetry/opentelemetry-go-contrib#5554
... (truncated)
Changelog
Sourced from go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc's changelog.
[1.28.0/0.53.0/0.22.0/0.8.0/0.3.0/0.1.0] - 2024-07-02
Added
- Add the new
go.opentelemetry.io/contrib/detectors/azure/azurevmpackage to provide a resource detector for Azure VMs. (#5422)- Add support to configure views when creating MeterProvider using the config package. (#5654)
- The
go.opentelemetry.io/contrib/configadd support to configure periodic reader interval and timeout. (#5661)- Add log support for the autoexport package. (#5733)
- Add support for disabling the old runtime metrics using the
OTEL_GO_X_DEPRECATED_RUNTIME_METRICS=falseenvironment variable. (#5747)- Add support for signal-specific protocols environment variables (
OTEL_EXPORTER_OTLP_TRACES_PROTOCOL,OTEL_EXPORTER_OTLP_LOGS_PROTOCOL,OTEL_EXPORTER_OTLP_METRICS_PROTOCOL) ingo.opentelemetry.io/contrib/exporters/autoexport. (#5816)- The
go.opentelemetry.io/contrib/processors/minsevmodule is added. This module provides and experimental logging processor with a configurable threshold for the minimum severity records must have to be recorded. (#5817)- The
go.opentelemetry.io/contrib/processors/baggagecopymodule. This module is a replacement ofgo.opentelemetry.io/contrib/processors/baggage/baggagetrace. (#5824)Changed
- Improve performance of
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpcwith the usage ofWithAttributeSet()instead ofWithAttribute(). (#5664)- Improve performance of
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttpwith the usage ofWithAttributeSet()instead ofWithAttribute(). (#5664)- Update
go.opentelemetry.io/contrib/configto latest released configuration schema which introduces breaking changes whereAttributesis now amap[string]interface{}. (#5758)- Upgrade all dependencies of
go.opentelemetry.io/otel/semconv/v1.25.0togo.opentelemetry.io/otel/semconv/v1.26.0. (#5847)Fixed
- Custom attributes targeting metrics recorded by the
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttpare not ignored anymore. (#5129)- The double setup in
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace/examplethat caused duplicate traces. (#5564)- The superfluous
response.WriteHeadercall ingo.opentelemetry.io/contrib/instrumentation/net/http/otelhttpwhen the response writer is flushed. (#5634)- Use
c.FullPath()method to sethttp.routeattribute ingo.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin. (#5734)- Out-of-bounds panic in case of invalid span ID in
go.opentelemetry.io/contrib/propagators/b3. (#5754)Deprecated
- The
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelechopackage is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see #5550. (#5645)- The
go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaronpackage is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see #5552. (#5646)- The
go.opentelemetry.io/contrib/samplers/aws/xraypackage is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see #5554. (#5647)- The
go.opentelemetry.io/contrib/processors/baggage/baggagetracepackage is deprecated. Use the addedgo.opentelemetry.io/contrib/processors/baggagecopypackage instead. (#5824)
- Use
baggagecopy.NewSpanProcessoras a replacement forbaggagetrace.New.
NewSpanProcessoraccepts aFitlerfunction type that selects which baggage members are added to a span.NewSpanProcessorreturns a*baggagecopy.SpanProcessorinstead of atrace.SpanProcessorinterface. The returned type still implements the interface.#5550: open-telemetry/opentelemetry-go-contrib#5550 #5552: open-telemetry/opentelemetry-go-contrib#5552 #5554: open-telemetry/opentelemetry-go-contrib#5554
Commits
af75717Release v1.28.0/v0.53.0/v0.22.0/v0.8.0/v0.3.0/v0.1.0 (#5847)b6a9271fix(deps): update module github.com/aws/aws-sdk-go to v1.54.13 (#5843)66306feAdd@XSAMand@dmathieuas repository maintainers (#5838)f783d1fUpgrade Go versions in CI (#5845)d6e791cfix(deps): update module github.com/aws/aws-sdk-go-v2/service/s3 to v1.58.0 (...efde831Removeotelmongodeprecation while we onboard a Code Owner (#5840)32d3e6afix(deps): update module google.golang.org/grpc to v1.65.0 (#5837)1ce0d1cRevert toolchain addition to autoexport (#5841)53f34f2fix(deps): update module cloud.google.com/go/compute/metadata to v0.4.0 (#5835)56e279efix(deps): update module github.com/aws/aws-sdk-go to v1.54.12 (#5834)- Additional commits viewable in compare view
Updates golang.org/x/net from 0.26.0 to 0.27.0
Commits
e2310aego.mod: update golang.org/x dependencies77708f7quic: skip tests which depend on unimplemented UDP functions on Plan 99617c63http2: avoid Transport hang with Connection: close and AllowHTTP- See full diff in compare view
Updates golang.org/x/sys from 0.21.0 to 0.22.0
Commits
faed7ecunix: add PthreadChdir and PthreadFchdir on darwinc892bb7unix: fix MmapPtr test failing on OpenBSDa0ef40aunix: fix MremapPtr test failing on NetBSDdaa2394unix: add unsafe mmap, munmap, mremap7670087windows: add GetAce Windows API348425awindows/svc: do not pass theService to windows.RegisterServiceCtrlHandlerEx- See full diff in compare view
Updates golang.org/x/term from 0.21.0 to 0.22.0
Commits
c976cb1go.mod: update golang.org/x dependencies- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Hi @dependabot[bot]. Thanks for your PR.
I'm waiting for a kubernetes-csi 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.
[APPROVALNOTIFIER] This PR is NOT APPROVED
This pull-request has been approved by: dependabot[bot] Once this PR has been reviewed and has the lgtm label, please assign xing-yang for approval. For more information see the Kubernetes Code Review Process.
The full list of commands accepted by this bot can be found here.
Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment
@dependabot[bot]: The following test failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:
| Test name | Commit | Details | Required | Rerun command |
|---|---|---|---|---|
| pull-kubernetes-csi-external-health-monitor | 2c06cd727a7ae045865a110fff0007b4b381b981 | link | true | /test pull-kubernetes-csi-external-health-monitor |
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR.
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. I understand the commands that are listed here.
Looks like these dependencies are updatable in another way, so this is no longer needed.