Skip to content

fix(deps): Update opentelemetry-collector monorepo#22425

Merged
kodiakhq[bot] merged 2 commits into
mainfrom
renovate/opentelemetry-collector-monorepo
Apr 1, 2026
Merged

fix(deps): Update opentelemetry-collector monorepo#22425
kodiakhq[bot] merged 2 commits into
mainfrom
renovate/opentelemetry-collector-monorepo

Conversation

@cloudquery-ci
Copy link
Copy Markdown
Contributor

@cloudquery-ci cloudquery-ci Bot commented Apr 1, 2026

This PR contains the following updates:

Package Change Age Confidence
go.opentelemetry.io/collector/component v1.52.0v1.54.0 age confidence
go.opentelemetry.io/collector/config/configgrpc v0.146.1v0.148.0 age confidence
go.opentelemetry.io/collector/config/confighttp v0.146.1v0.148.0 age confidence
go.opentelemetry.io/collector/config/configoptional v1.52.0v1.54.0 age confidence
go.opentelemetry.io/collector/config/configtls v1.52.0v1.54.0 age confidence
go.opentelemetry.io/collector/consumer v1.52.0v1.54.0 age confidence
go.opentelemetry.io/collector/pdata v1.52.0v1.54.0 age confidence
go.opentelemetry.io/collector/receiver v1.52.0v1.54.0 age confidence
go.opentelemetry.io/collector/receiver/otlpreceiver v0.146.1v0.148.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

open-telemetry/opentelemetry-collector (go.opentelemetry.io/collector/component)

v1.54.0

❗ Known Issues ❗
  • service: The collector's internal Prometheus metrics endpoint (:8888) now emits OTel service labels with underscore
    names (service_name, service_instance_id, service_version) instead of dot-notation names (service.name,
    service.instance.id, service.version). Users scraping this endpoint with the Prometheus receiver will see these renamed
    labels in resource and datapoint attributes. As a workaround, add the following metric_relabel_configs to your scrape
    config in prometheus receiver:
    metric_relabel_configs:
      - source_labels: [service_name]
        target_label: service.name
      - source_labels: [service_instance_id]
        target_label: service.instance.id
      - source_labels: [service_version]
        target_label: service.version
      - regex: service_name|service_instance_id|service_version
        action: labeldrop
    See #​14814 for details and updates.
🛑 Breaking changes 🛑
  • all: Change metric units to be singular to match OTel specification, e.g. {requests} -> {request} (#​14753)
💡 Enhancements 💡
  • cmd/mdatagen: Add deprecated_type field to allow specifying an alias for component types. (#​14718)
  • cmd/mdatagen: Generate entity-scoped MetricsBuilder API that enforces entity-metric associations at compile time (#​14659)
  • cmd/mdatagen: Skip generating reaggregation config options for metrics that have no aggregatable attributes. (#​14689)
  • pkg/service: The internal status reporter no longer drops repeated Ok and RecoverableError statuses (#​14282)
    Status events can now carry metadata and there's value in allowing them to be emitted despite the status value itself
    not changing.
🧰 Bug fixes 🧰
  • cmd/builder: Add .exe to output binary names when building for Windows targets. (#​12591)

  • exporter/debug: Add printing of metric metadata in detailed verbosity. (#​14667)

  • exporter/otlp_grpc: Prevent nil pointer panic when push methods are called before the OTLP exporter initializes its gRPC clients. (#​14663)
    When the sending queue and retry are disabled, calling ConsumeTraces,
    ConsumeMetrics, ConsumeLogs, or ConsumeProfiles before the OTLP exporter
    initializes its gRPC clients could cause a nil pointer dereference panic.
    The push methods now return an error instead of panicking.

  • exporter/otlp_http: Show the actual destination URL in error messages when request URL is modified by middleware. (#​14673)
    Unwraps the *url.Error returned by http.Client.Do() to prevent misleading error logs when a middleware extension dynamically updates the endpoint.

  • pdata/pprofile: Switch the dictionary of dictionary tables entries only once when merging profiles (#​14709)
    For dictionary table data, we used to switch their dictionaries when doing
    the switch for the data that uses them.
    However, when an entry is associated with multiple other data (several
    samples can use the same stack), we would have been switching the
    dictionaries of the entry multiple times.

    We now switch dictionaries for dictionary table data only once, before
    switching the resource profiles.

v1.53.0

💡 Enhancements 💡
  • exporter/debug: Output bucket counts for exponential histogram data points in normal verbosity. (#​10463)
  • pkg/exporterhelper: Add metadata_keys configuration to sending_queue.batch.partition to partition batches by client metadata (#​14139)
    The metadata_keys configuration option is now available in the sending_queue.batch.partition section for all exporters.
    When specified, batches are partitioned based on the values of the listed metadata keys, allowing separate batching per metadata partition. This feature
    is automatically configured when using exporterhelper.WithQueue().
🧰 Bug fixes 🧰
  • cmd/builder: Fix duplicate error output when CLI command execution fails in the builder tool. (#​14436)

  • cmd/mdatagen: Fix duplicate error output when CLI command execution fails in the mdatagen tool. (#​14436)

  • cmd/mdatagen: Fix semconv URL validation for metrics with underscores in their names (#​14583)
    Metrics like system.disk.io_time now correctly validate against semantic convention URLs containing underscores in the anchor tag.

  • extension/memory_limiter: Use ChainUnaryInterceptor instead of UnaryInterceptor to allow multiple interceptors. (#​14634)
    If multiple extensions that use the UnaryInterceptor are set the binary panics at start time.

  • extension/memory_limiter: Add support for streaming services. (#​14634)

  • pkg/config/configmiddleware: Add context.Context to HTTP middleware interface constructors. (#​14523)
    This is a breaking API change for components that implement or use extensionmiddleware.

  • pkg/confmap: Fix another issue where configs could fail to decode when using interpolated values in string fields. (#​14034)
    For example, a resource attribute can be set via an environment variable to a string that is parseable as a number, e.g. 1234.

    (A similar bug was fixed in a previous release: that one was triggered when the field was nested in a struct,
    whereas this one is triggered when the field internally has type "pointer to string" rather than "string".)

  • pkg/otelcol: The featuregate subcommand now rejects extra positional arguments instead of silently ignoring them. (#​14554)

  • pkg/queuebatch: Fix data race in partition_batcher where resetTimer() was called outside mutex, causing concurrent timer.Reset() calls and unpredictable batch flush timing under load. (#​14491)

  • pkg/scraperhelper: Log scrapers now emit log-appropriate receiver telemetry (#​14654)
    Log scrapers previously emitted the same receiver telemetry as metric scrapers,
    such as the otelcol_receiver_accepted_metric_points metric (instead of otelcol_receiver_accepted_log_records),
    or spans named receiver/myreceiver/MetricsReceived (instead of receiver/myreceiver/LogsReceived).

    This did not affect scraper-specific spans and metrics.

  • processor/batch: Fixes a bug where the batch processor would not copy SchemaUrl metadata from resource and scope containers during partial batch splits. (#​12279, #​14620)


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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 Renovate Bot.

@cloudquery-ci cloudquery-ci Bot added the automerge Automatically merge once required checks pass label Apr 1, 2026
@cloudquery-ci
Copy link
Copy Markdown
Contributor Author

cloudquery-ci Bot commented Apr 1, 2026

ℹ️ Artifact update notice

File name: cli/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):

  • 30 additional dependencies were updated

Details:

Package Change
go.opentelemetry.io/otel v1.40.0 -> v1.42.0
go.opentelemetry.io/otel/metric v1.40.0 -> v1.42.0
go.opentelemetry.io/otel/sdk v1.40.0 -> v1.42.0
go.opentelemetry.io/otel/trace v1.40.0 -> v1.42.0
github.com/knadh/koanf/v2 v2.3.2 -> v2.3.3
go.opentelemetry.io/collector v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/client v1.52.0 -> v1.54.0
go.opentelemetry.io/collector/component/componentstatus v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/config/configauth v1.52.0 -> v1.54.0
go.opentelemetry.io/collector/config/configcompression v1.52.0 -> v1.54.0
go.opentelemetry.io/collector/config/configmiddleware v1.52.0 -> v1.54.0
go.opentelemetry.io/collector/config/confignet v1.52.0 -> v1.54.0
go.opentelemetry.io/collector/config/configopaque v1.52.0 -> v1.54.0
go.opentelemetry.io/collector/confmap v1.52.0 -> v1.54.0
go.opentelemetry.io/collector/confmap/xconfmap v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/consumer/consumererror v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/consumer/xconsumer v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/extension/extensionauth v1.52.0 -> v1.54.0
go.opentelemetry.io/collector/extension/extensionmiddleware v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/featuregate v1.52.0 -> v1.54.0
go.opentelemetry.io/collector/internal/componentalias v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/internal/sharedcomponent v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/internal/telemetry v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/pdata/pprofile v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/pipeline v1.52.0 -> v1.54.0
go.opentelemetry.io/collector/pipeline/xpipeline v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/receiver/receiverhelper v0.146.1 -> v0.148.0
go.opentelemetry.io/collector/receiver/xreceiver v0.146.1 -> v0.148.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.64.0 -> v0.67.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.64.0 -> v0.67.0

@cloudquery-ci
Copy link
Copy Markdown
Contributor Author

cloudquery-ci Bot commented Apr 1, 2026

/gen sha=11f5b0d5d162924583f90832c6e6fb04782e5dec dir=cli

@kodiakhq kodiakhq Bot merged commit 66ee4b8 into main Apr 1, 2026
11 checks passed
@kodiakhq kodiakhq Bot deleted the renovate/opentelemetry-collector-monorepo branch April 1, 2026 01:11
kodiakhq Bot pushed a commit that referenced this pull request Apr 3, 2026
🤖 I have created a release *beep* *boop*
---


## [6.35.5](cli-v6.35.4...cli-v6.35.5) (2026-04-03)


### Bug Fixes

* block positions ([aca5cd8](aca5cd8))
* **deps:** Update github.com/cloudquery/godebouncer digest to 46b2aff ([#22367](#22367)) ([dc6ce1f](dc6ce1f))
* **deps:** Update github.com/cloudquery/jsonschema digest to 8dfb902 ([#22368](#22368)) ([10faff2](10faff2))
* **deps:** Update module github.com/cenkalti/backoff/v4 to v5 ([#22448](#22448)) ([f753c1f](f753c1f))
* **deps:** Update module github.com/cloudquery/codegen to v0.4.1 ([#22402](#22402)) ([c2c84bf](c2c84bf))
* **deps:** Update module github.com/cloudquery/plugin-pb-go to v1.27.14 ([#22460](#22460)) ([b91e5f1](b91e5f1))
* **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.95.1 ([#22461](#22461)) ([86d7bb6](86d7bb6))
* **deps:** Update module github.com/fatih/color to v1.19.0 ([#22420](#22420)) ([463c72b](463c72b))
* **deps:** Update module github.com/getsentry/sentry-go to v0.44.1 ([#22421](#22421)) ([07f96df](07f96df))
* **deps:** Update module github.com/yuin/goldmark to v1.8.1 ([#22424](#22424)) ([aca5cd8](aca5cd8))
* **deps:** Update opentelemetry-collector monorepo ([#22425](#22425)) ([66ee4b8](66ee4b8))
* **deps:** Update opentelemetry-go monorepo to v0.18.0 ([#22426](#22426)) ([7e29047](7e29047))
* **deps:** Update ubuntu Docker tag to v24 ([#22441](#22441)) ([846c48c](846c48c))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/cli automerge Automatically merge once required checks pass

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants