chore(deps): update all dependencies #61
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.19.0
->0.20.0
v2.17.1
->v2.17.3
v1.32.0
->v1.33.1
v0.98.0
->v0.100.0
v0.97.1
->v0.99.0
v1.19.0
->v1.19.1
v0.10.0
->v0.12.0
v3.24.10
->v3.25.4
1.22.1
->1.22.3
v0.98.0
->v0.100.0
v1.5.0
->v1.7.0
v1.5.0
->v1.7.0
v0.0.0-20240404231335-c0f41cb1a7a0
->v0.0.0-20240506185415-9bf2ced13842
v0.29.3
->v0.30.0
v0.29.3
->v0.30.0
v0.29.3
->v0.30.0
v0.17.3
->v0.18.2
Release Notes
aquasecurity/trivy-action (aquasecurity/trivy-action)
v0.20.0
Compare Source
What's Changed
--docker-host
option for GH Action users by @calinmarina in https://github.com/aquasecurity/trivy-action/pull/267New Contributors
Full Changelog: aquasecurity/trivy-action@0.19.0...0.20.0
onsi/ginkgo (github.com/onsi/ginkgo/v2)
v2.17.3
Compare Source
2.17.3
Fixes
ginkgo watch
now ignores hidden files [bde6e00
]v2.17.2
Compare Source
2.17.2
Fixes
32259c8
]780e7a3
]Maintenance
d91fe4e
]8cb662e
]3134422
]eca81b4
]760def8
]4ce33f4
]f2fcd97
]fd622d2
]5474a26
]e6d1170
]7f447b2
]f15239a
]onsi/gomega (github.com/onsi/gomega)
v1.33.1
Compare Source
1.33.1
Fixes
3a66379
]Maintenance
e9bc35a
]v1.33.0
Compare Source
1.33.0
Features
Receive
not acceptsReceive(<POINTER>, MATCHER>)
, allowing you to pick out a specific value on the channel that satisfies the provided matcher and is stored in the provided pointer.Maintenance
9999deb
]cb5ff21
]bac6596
]open-telemetry/opentelemetry-collector-contrib (github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry)
v0.100.0
Compare Source
🛑 Breaking changes 🛑
receiver/hostmetrics
: enable feature gatereceiver.hostmetrics.normalizeProcessCPUUtilization
(#31368)This changes the value of the metric
process.cpu.utilization
by dividing it by the number of CPU cores.For example, if a process is using 2 CPU cores on a 16-core machine,
the value of this metric was previously
2
, but now it will be0.125
.testbed
: Remove deprecatedGetAvailablePort
function (#32800)🚀 New components 🚀
healthcheckv2extension
: Introduce the skeleton for the temporary healthcheckv2 extension. (#26661)intervalprocessor
: Implements the new interval processor. See the README for more info about how to use it (#29461)OpenTelemetry Protocol with Apache Arrow Receiver
: Implementation copied from opentelemetry/otel-arrow repository @v0.20.0. (#26491)roundrobinconnector
: Add a roundrobin connector, that can help single thread components to scale (#32853)💡 Enhancements 💡
telemetrygen
: Add support to set metric name (#32840)exporter/kafkaexporter
: Enable setting message topics using resource attributes. (#31178)exporter/datadog
: Introduces the Datadog Agent logs pipeline for exporting logs to Datadog under the "exporter.datadogexporter.UseLogsAgentExporter" feature gate. (#32327)elasticsearchexporter
: Add retry.retry_on_status config (#32584)Previously, the status codes that trigger retries were hardcoded to be 429, 500, 502, 503, 504.
It is now configurable using
retry.retry_on_status
, and defaults to[429, 500, 502, 503, 504]
to avoid a breaking change.To avoid duplicates, it is recommended to configure
retry.retry_on_status
to[429]
, which would be the default in a future version.exporter/splunkhec
: add experimental exporter batcher config (#32545)windowsperfcountersreceiver
: Returns partial errors for failures during scraping to prevent throwing out all successfully retrieved metrics (#16712)jaegerencodingextension
: Promote jaegerencodingextension to alpha (#32699)kafkaexporter
: add an ability to publish kafka messages with message key based on metric resource attributes - it will allow partitioning metrics in Kafka. (#29433, #30666, #31675)cmd/opampsupervisor
: Switch the OpAMP Supervisor's bootstrap config to use the nopreceiver and nopexporter (#32455)otlpencodingextension
: Move otlpencodingextension to alpha (#32701)prometheusreceiver
: Prometheus receivers and exporters now preserve 'unknown', 'info', and 'stateset' types. (#16768)It uses the metric.metadata field with the 'prometheus.type' key to store the original type.
ptracetest
: Add support for ignore scope span instrumentation scope information (#32852)sqlserverreceiver
: Enable direct connection to SQL Server (#30297)Directly connecting to SQL Server will enable the receiver to gather more metrics
for observing the SQL Server instance. The first metric added with this update is
sqlserver.database.io.read_latency
.connector/datadog
: The Datadog connector now has a config option to identify top-level spans by span kind. This new logic can be enabled by settingtraces::compute_top_level_by_span_kind
to true in the Datadog connector config. Default is false. (#32005)traces::compute_top_level_by_span_kind
needs to be enabled in both the Datadog connector and Datadog exporter configs if both components are being used.With this new logic, root spans and spans with a server or consumer
span.kind
will be marked as top-level. Additionally, spans with a client or producerspan.kind
will have stats computed.Enabling this config option may increase the number of spans that generate trace metrics, and may change which spans appear as top-level in Datadog.
exporter/datadog
: The Datadog exporter now has a config option to identify top-level spans by span kind. This new logic can be enabled by settingtraces::compute_top_level_by_span_kind
to true in the Datadog exporter config. Default is false. (#32005)traces::compute_top_level_by_span_kind
needs to be enabled in both the Datadog connector and Datadog exporter configs if both components are being used.With this new logic, root spans and spans with a server or consumer
span.kind
will be marked as top-level. Additionally, spans with a client or producerspan.kind
will have stats computed.Enabling this config option may increase the number of spans that generate trace metrics, and may change which spans appear as top-level in Datadog.
exporter/datadog
: Support stable semantic conventions for HTTP spans (#32823)cmd/opampsupervisor
: Persist collector remote config & telemetry settings (#21078)cmd/opampsupervisor
: Support AcceptsRestartCommand Capability. (#21077)telemetrygen
: Add headers to gRPC metadata for logs (#32668)sshcheckreceiver
: Add support for running this receiver on Windows (#30650)zipkinencodingextension
: Move zipkinencodingextension to alpha (#32702)🧰 Bug fixes 🧰
prometheusremotewrite
: Modify prometheusremotewrite.FromMetrics to only generate target_info if there are metrics, as otherwise you can't deduce the timestamp. (#32318)prometheusremotewrite
: Change prometheusremotewrite.FromMetrics so that the target_info metric is only generated if at least one identifying OTel resource attribute (service.name and/or service.instance.id) is defined. (#32148)k8sclusterreceiver
: Fix container state metadata (#32676)sumologicexporter
: do not replace.
with_
for prometheus format (#31479)pkg/stanza
: Allow sorting by ascending order when using the mtime sort_type. (#32792)opampextension
: Add a newppid
parameter that can be used to enable orphan detection for the supervisor. (#32189)awsxrayreceiver
: Retain CloudWatch Log Group when translating X-Ray segments (#31784)pkg/stanza
: Fix issue whenexclude_older_than
is enabled withoutordering_criteria
configured (#32681)awskinesisexporter
: the compressor was crashing under high load due it not being thread safe. (#32589)removed compressor abstraction and each execution has its own buffer (so it's thread safe)
filelogreceiver
: When a flush timed out make sure we are at EOF (can't read more) (#31512, #32170)vcenterreceiver
: Adds thevcenter.cluster.name
resource attribute to resource pool with a ClusterComputeResource parent (#32535)vcenterreceiver
: Updatesvcenter.cluster.memory.effective
(primarily that the value was reporting MiB when it should have been bytes) (#32782)vcenterreceiver
: Adds warning tovcenter.cluster.memory.used
metric if configured about its future removal (#32805)vcenterreceiver
: Updates thevcenter.cluster.vm.count
metric to also report suspended VM counts (#32803)vcenterreceiver
: Addsvcenter.datacenter.name
attributes to all resource types to help with resource identification (#32531)vcenterreceiver
: Addsvcenter.cluster.name
attributes warning log related to Datastore resource (#32674)vcenterreceiver
: Adds newvcenter.virtual_app.name
andvcenter.virtual_app.inventory_path
resource attributes to appropriate VM Resources (#32557)vcenterreceiver
: Adds functionality forvcenter.vm.disk.throughput
while also changing to a gauge. (#32772)vcenterreceiver
: Adds initially disabled functionality for VM Templates (#32821)remotetapprocessor
: Fix memory leak on shutdown (#32571)haproxyreceiver
: Fix reading stats larger than 4096 bytes (#32652)connector/count
: Fix handling of non-string attributes in the count connector (#30314)datadogexporter
: Fix nil pointer dereference when using beta infrastructure monitoring offering (#32865)The bug happened under the following conditions:
datadog.host.use_as_host_metadata
to true on a payload with data about the Datadog exporter hostpkg/translator/jaeger
: translate binary attribute values to/from Jaeger as is, without encoding them as base64 strings (#32204)awscloudwatchreceiver
: Fixed a bug where autodiscovery would not use nextToken in the paginated request (#32053)awsxrayexporter
: make comma,
as invalid char for x-ray segment name (#32610)v0.99.0
Compare Source
🛑 Breaking changes 🛑
dynatraceexporter
: remove deprecated component (#32278)extension/filestorage
: Replace path-unsafe characters in component names (#3148)The feature gate
extension.filestorage.replaceUnsafeCharacters
is now stable and cannot be disabled.See the File Storage extension's README for details.
gitproviderreceiver
: Changed git provider metrics to better match conventions (#31985)git.repository.pull_request.open.time
togit.repository.pull_request.time_open
git.repository.pull_request.merged.time
togit.repository.pull_request.time_to_merge
git.repository.pull_request.approved.time
togit.repository.pull_request.time_to_approval
git.repository.pull_request.merged.count
andgit.repository.pull_request.open.count
intogit.repository.pull_request.count
with an attribute ofpull_request.state
equal toopen
ormerged
all
: Bump minimum version to go 1.21.0 (#32451)exporter/loadbalancing
: Change AWS Cloud map resolver config fields from camelCase to snake_case. (#32331)The snake_case is required in OTel Collector config fields. It used to be enforced by tests in cmd/oteltestbedcol,
but we had to disable them. Now, the tests are going to be enforced on every component independently.
Hence, the camelCase config fields recently added with the new AWS Cloud Map resolver has to be fixed.
connector/servicegraphconnector
: Changeconnector.servicegraph.virtualNode
feature gate from Alpha to Beta (now enabled by default) and changevirtual_node_peer_attributes
default values. (#31734)🚀 New components 🚀
googleclientauthextension
: Add implementation of Google Client Auth Extension. (#32029)ackextension
: Promote toalpha
stability (#26376)💡 Enhancements 💡
deltatocumulativeprocessor
: exposes max_stale as metric (#32441)sumologicexporter
: use Sumo Logic Extension for authentication and to obtain endpoint (#31479)failoverconnector
: This change puts the failoverconnector into alpha (#20766)vcenterreceiver
: Changes process for collecting VMs & VM perf metrics used by thevccenterreceiver
to be more efficient (one call now for all VMs) (#31837)opampextension
: Added a newagent_description.non_identifying_attributes
config option to allow setting user-defined non-identifying attributes (#32107)googleclientauthextension
: Mark Google Client Auth Extension alpha stability. (#32442)splunkhecreceiver
: adding support for ack in the splunkhecreceiver (#26376)hostmetricsreceiver
: The hostmetricsreceiver now caches the system boot time at receiver start and uses it for all subsequent calls. The featuregatehostmetrics.process.bootTimeCache
can be disabled to restore previous behaviour. (#28849)This change was made because it greatly reduces the CPU usage of the process and processes scrapers.
filelogreceiver
: Addsend_quiet
anddrop_quiet
options foron_error
setting of operators (#32145)otlpjsonfilereceiver
: Add a replay_file config option to support replaying static telemetry (#31533)pkg/ottl
: AddIsList
OTTL Function (#27870)rabbitmqexporter
: Implements the RabbitMQ exporter (#28891)filelogreceiver
: Addexclude_older_than
configuration setting (#31053)pkg/stanza/operator/transformer/recombine
: add a new "max_unmatched_batch_size" config parameter to configure the maximum number of consecutive entries that will be combined into a single entry before the match occurs (#31653)awsxrayreceiver
: Add support for local namespace in subsegment (#31514)🧰 Bug fixes 🧰
awscloudwatchreceiver
: The receiver now supports extracting data from named loggroups without requiring filters for log streams. This was already advertised as feature, but ignored during initialization. (#32345)awskinesisexporter
: Wraps theAssumeRoleProvider
in aCachedCredentials
provider, in the case the AWS role is specified. This prevents a role assumption from happening every API call. (#32415)receiver/hostmetricsreceiver
: do not extract the cpu count if the metric is not enabled; this will prevent unnecessary overhead, especially on windows (#32133)azuremonitorexporter
: Fix: Use correct parentId for span events. (#27233)failoverconnector
: This change adds a fix for an identified bug regarding extra failover switches (#32094)failoverconnector
: Fix flaky test in pipeline selector component (#32396)pkg/stanza
: Fix race condition which preventedjsonArrayParserFeatureGate
from working correctly. (#32313)cmd/opampsupervisor
: Fix collector subprocess not being stopped if bootstrapping fails (#31943)vcenterreceiver
: Remove thevcenter.cluster.name
resource attribute from Host resources if the Host is standalone (no cluster) (#32548)azureeventhubreceiver
: Fix memory leak on shutdown (#32401)fluentforwardreceiver
: Fix memory leak (#32363)processor/resourcedetection, exporter/datadog
: Fix memory leak on AKS (#32574)mongodbatlasreceiver
: Fix memory leak by closing idle connections on shutdown (#32206)haproxyreceiver
: Fix show stat command on unix socket (#32291)opampsupervisor
: Fix restart delay when agent process exits unexpectedly. (#27891)spanmetrics
: Discard counter span metric exemplars after each flush interval to avoid unbounded memory growth (#31683)This aligns exemplar discarding for counter span metrics with the existing logic for histogram span metrics
stanza
: Unmarshaling now preserves the initial configuration. (#32169)resourcedetectionprocessor
: Update to ec2 scraper so that core attributes are not dropped if describeTags returns an error (likely due to permissions) (#30672)open-telemetry/opentelemetry-operator (github.com/open-telemetry/opentelemetry-operator)
v0.99.0
Compare Source
0.99.0
🛑 Breaking changes 🛑
operator
: change java instrumentation feature gateoperator.autoinstrumentation.java
into command line flag--enable-java-instrumentation
(#2673, #2582)operator
: remove featuregateoperator.autoinstrumentation.nodejs
. Use command line flag--enable-nodejs-instrumentation
instead (#2674)operator
: remove featuregateoperator.autoinstrumentation.go
. Use command line flag--enable-go-instrumentation
instead (#2675)target allocator
: Removeoperator.collector.rewritetargetallocator
feature flag (#2796)target allocator
: Drop compatibility with older target allocator versions (#1907)We've made a breaking change to the target allocator configuration in 0.93.0. This change removes operator
compatibility with target allocator versions older than that. Users running more recent target allocator versions
are unaffected.
🚀 New components 🚀
collector
: Enable reconciliation of Collector v1beta1 CRD. See CRD changelog for detailed information. (#2620, #1907)Users are expected to migrate to
otelcol.v1beta1.opentelemetry.io
.The support for
otelcol.v1alpha1.opentelemetry.io
will be removed in the future.Follow migration guide for upgrading already created collector instances.
After all
otelcol.v1alpha1.opentelemetry.io
are stored asv1beta1
update the collector CRD to store onlyv1beta1
kubectl patch customresourcedefinitions opentelemetrycollectors.opentelemetry.io --subresource='status' --type='merge' -p '{"status":{"storedVersions":["v1beta1"]}}'
.Only
AllNamespaces
install mode is now supported due to the conversion webhook fromv1beta1
tov1alpha1
.See OLM docs and
OLM operator groups docs.
💡 Enhancements 💡
collector
: Changes metric port logic to use intermediary struct. (#2603)collector
: Remove collector v1alpha1 defaulting and validating webhooks. (#2736)The functionality was moved to the collector v1beta1 webhooks.
🧰 Bug fixes 🧰
auto-instrumentation
: Add attributeservice.instance.id
while pod is mutated. (#2679)service.instance.id
is expected to be<namespace>.<podName>.<containerName>
But while pod is created it may not have the
podName
yet at the podMutator webhooks.This changed to use the env var
OTEL_RESOURCE_ATTRIBUTES_POD_NAME
which will be present at runtime.<namespace>.$(OTEL_RESOURCE_ATTRIBUTES_POD_NAME).<containerName>
Making a valid and complete value for
service.instance.id
to be added.collector
: Fixes a bug that would cause errant rollouts on a non-config related change. (#2899)collector
: resolves a bug that would create a junk selector for the service by merging rather than overriding. (#2873)target allocator
: Fix a metric relabel config unescaping bug (#2867)If only metric relabel configs were present, without target relabel configs, unescaping wouldn't be applied, leading
to invalid Target Allocator configuration.
Components
v0.98.0
Compare Source
0.98.0
💡 Enhancements 💡
operator
: Add support for adding/extending otc-collector container ports. (#2763)auto-instrumentation
: Support Java auto-instrumentation extensions. (#1785)🧰 Bug fixes 🧰
target allocator
: Fix for keepequal/dropequal action (#2793)collector
: Create automatically the RBAC permissions to manage replicasets when using the k8sattributesprocessor (#2823)documentation
: The description for some fields was truncated in the documentation. (#2563)Components
prometheus/client_golang (github.com/prometheus/client_golang)
v1.19.1
Compare Source
What's Changed
golang.org/x/sys
andgoogle.golang.org/protobuf
New Contributors
Full Changelog: prometheus/client_golang@v1.19.0...v1.19.1
siliconbrain/go-seqs (github.com/siliconbrain/go-seqs)
v0.12.0
Compare Source
v0.11.0
Compare Source
github/codeql-action (github/codeql-action)
v3.25.4
Compare Source
v3.25.3
Compare Source
v3.25.2
Compare Source
v3.25.1
Compare Source
v3.25.0
Compare Source
golang/go (go)
v1.22.3
v1.22.2
open-telemetry/opentelemetry-collector (go.opentelemetry.io/collector/config/configauth)
v0.100.0
Compare Source
🛑 Breaking changes 🛑
service
: Thevalidate
sub-command no longer validates that each pipeline's type is the same as its component types (#10031)💡 Enhancements 💡
semconv
: Add support for v1.25.0 semantic convention (#10072)builder
: remove the need to go get a module to address ambiguous import paths (#10015)pmetric
: Support parsing metric.metadata from OTLP JSON. (#10026)🧰 Bug fixes 🧰
exporterhelper
: Fix enabled config option for batch sender (#10076)v0.99.0
Compare Source
🛑 Breaking changes 🛑
builder
: Add strict version checking when using the builder. Add the temporary flag--skip-strict-versioning
for skipping this check. (#9896)Strict version checking will error on major and minor version mismatches
between the
otelcol_version
configured and the builder version or versionsin the go.mod. This check can be temporarily disabled by using the
--skip-strict-versioning
flag. This flag will be removed in a future minor version.
telemetry
: Distributed internal metrics across different levels. (#7890)The internal metrics levels are updated along with reported metrics:
basic
tonormal
, which can be overridden withservice::telmetry::metrics::level
configuration.normal
level:processor_batch_batch_send_size
processor_batch_metadata_cardinality
processor_batch_timeout_trigger_send
processor_batch_size_trigger_send
detailed
level:💡 Enhancements 💡
confighttp
: Disable concurrency in zstd compression (#8216)cmd/builder
: Allow configuring `confmap.ProviConfiguration
📅 Schedule: Branch creation - "before 4am" (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.
This PR has been generated by Mend Renovate. View repository job log here.