Skip to content

fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.150.0#152

Open
renovate-sh-app[bot] wants to merge 1 commit intomainfrom
renovate/go.opentelemetry.io-collector-config-confighttp-0.x
Open

fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.150.0#152
renovate-sh-app[bot] wants to merge 1 commit intomainfrom
renovate/go.opentelemetry.io-collector-config-confighttp-0.x

Conversation

@renovate-sh-app
Copy link
Copy Markdown

@renovate-sh-app renovate-sh-app bot commented Jan 7, 2026

This PR contains the following updates:

Package Change Age Confidence
go.opentelemetry.io/collector/config/confighttp v0.141.0v0.150.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/config/confighttp)

v0.150.0

Compare Source

v0.149.0

Compare Source

🛑 Breaking changes 🛑
  • pkg/service: Remove service_name, service_instance_id, and service_version as constant labels on every internal metric datapoint. These attributes are already present in target_info and were being duplicated on each series for OpenCensus backwards compatibility. (#​14811)
    Previously, the collector stamped every internal metric series (e.g. otelcol_process_runtime_heap_alloc_bytes)
    with service_name, service_instance_id, and service_version labels to match the old OpenCensus behavior.
    These attributes are now only present in the target_info metric, which is the correct Prometheus/OTel convention.
    Users who filter or group by these labels on individual metrics will need to update their queries to use
    target_info joins instead.
💡 Enhancements 💡
  • all: Move aix/ppc64 to tier 3 support (#​13380)

  • all: Upgrade the profiles stability status to alpha (#​14817)
    The following components have their profiles status upgraded from development to alpha:

    • pdata/pprofile
    • connector/forward
    • exporter/debug
    • receiver/nop
    • exporter/nop
    • exporter/otlp_grpc
    • exporter/otlp_http
  • cmd/mdatagen: Add semconv reference for attributes (#​13297)

🧰 Bug fixes 🧰
  • cmd/mdatagen: Fix entity code generation so extra_attributes are emitted as resource attributes instead of entity descriptive attributes. (#​14778)

v0.148.0

Compare Source

❗ 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.

v0.147.0

Compare Source

💡 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)

v0.146.1

Compare Source

v0.146.0

Compare Source

🛑 Breaking changes 🛑
  • all: Increase minimum Go version to 1.25 (#​14567)
🚩 Deprecations 🚩
  • pdata/pprofile: Declare removed aggregation elements as deprecated. (#​14528)
💡 Enhancements 💡
  • all: Add detailed failure attributes to exporter send_failed metrics at detailed telemetry level. (#​13956)
    The otelcol_exporter_send_failed_{spans,metric_points,log_records} metrics now include
    failure attributes when telemetry level is Detailed: error.type (OpenTelemetry semantic convention
    describing the error class) and error.permanent (indicates if error is permanent/non-retryable).
    The error.type attribute captures gRPC status codes (e.g., "Unavailable", "ResourceExhausted"),
    standard Go context errors (e.g., "canceled", "deadline_exceeded"),
    and collector-specific errors (e.g., "shutdown").
    This enables better alerting and debugging by providing standardized error classification.

  • cmd/builder: Introduce new experimental init subcommand (#​14530)
    The new init subcommand initializes a new custom collector

  • cmd/builder: Add "telemetry" field to allow configuring telemetry providers (#​14575)
    Most users should not need to use this, this field should only be set if you
    intend to provide your own OpenTelemetry SDK.

  • cmd/mdatagen: Introduce additional metadata (the version since the deprecation started, and the deprecation reason) for deprecated metrics. (#​14113)

  • cmd/mdatagen: Add optional relationships field to entity schema in metadata.yaml (#​14284)

  • exporter/debug: Add output_paths configuration option to control output destination when use_internal_logger is false. (#​10472)
    When use_internal_logger is set to false, the debug exporter now supports configuring the output destination via the output_paths option.
    This allows users to send debug exporter output to stdout, stderr, or a file path.
    The default value is ["stdout"] to maintain backward compatibility.

  • pkg/confmap: Add experimental ToStringMapRaw function to decode confmap.Conf into a string map without losing internal types (#​14480)
    This method exposes the internal structure of a confmap.Conf which may change at any time without prior notice

🧰 Bug fixes 🧰
  • cmd/mdatagen: Reset aggDataPoints during metric init to avoid index out of range panic across emit cycles when reaggregation is enabled. (#​14569)
  • cmd/mdatagen: Fix panic when mdatagen is run without arguments. (#​14506)
  • pdata/pprofile: Fix off-by-one issue in dictionary lookups. (#​14534)
  • pkg/config/confighttp: Fix high cardinality span name from request method from confighttp server internal telemetry (#​14516)
    Follow spec to bound request method cardinality.
  • pkg/otelcol: Ignore component aliases in the otelcol components command (#​14492)
  • pkg/otelcol: Order providers and converters in alphabetical order in the components subcommand. (#​14476)

v0.145.0

Compare Source

💡 Enhancements 💡
  • pkg/scraperhelper: ScraperID has been added to the logs for metrics, logs, and profiles (#​14461)
🧰 Bug fixes 🧰
  • exporter/otlp_grpc: Fix the OTLP exporter balancer to use round_robin by default, as intended. (#​14090)

  • pkg/config/configoptional: Fix Unmarshal methods not being called when config is wrapped inside Optional (#​14500)
    This bug notably manifested in the fact that the sending_queue::batch::sizer config for exporters
    stopped defaulting to sending_queue::sizer, which sometimes caused the wrong units to be used
    when configuring sending_queue::batch::min_size and max_size.

    As part of the fix, xconfmap exposes a new xconfmap.WithForceUnmarshaler option, to be used in the Unmarshal methods
    of wrapper types like configoptional.Optional to make sure the Unmarshal method of the inner type is called.

    The default behavior remains that calling conf.Unmarshal on the confmap.Conf passed as argument to an Unmarshal
    method will skip any top-level Unmarshal methods to avoid infinite recursion in standard use cases.

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

  • pkg/service: Don't error on startup when process metrics are enabled on unsupported OSes (e.g. AIX) (#​14307)

v0.144.0

Compare Source

🛑 Breaking changes 🛑
  • pkg/exporterhelper: Change verbosity level for otelcol_exporter_queue_batch_send_size metric to detailed. (#​14278)
  • pkg/service: Remove deprecated telemetry.disableHighCardinalityMetrics feature gate. (#​14373)
  • pkg/service: Remove deprecated service.noopTracerProvider feature gate. (#​14374)
🚩 Deprecations 🚩
  • exporter/otlp_grpc: Rename otlp exporter to otlp_grpc exporter and add deprecated alias otlp. (#​14403)
  • exporter/otlp_http: Rename otlphttp exporter to otlp_http exporter and add deprecated alias otlphttp. (#​14396)
💡 Enhancements 💡
  • cmd/builder: Avoid duplicate CLI error logging in generated collector binaries by relying on cobra's error handling. (#​14317)

  • cmd/mdatagen: Add the ability to disable attributes at the metric level and re-aggregate data points based off of these new dimensions (#​10726)

  • cmd/mdatagen: Add optional display_name and description fields to metadata.yaml for human-readable component names (#​14114)
    The display_name field allows components to specify a human-readable name in metadata.yaml.
    When provided, this name is used as the title in generated README files.
    The description field allows components to include a brief description in generated README files.

  • cmd/mdatagen: Validate stability level for entities (#​14425)

  • pkg/xexporterhelper: Reenable batching for profiles (#​14313)

  • receiver/nop: add profiles signal support (#​14253)

🧰 Bug fixes 🧰
  • pkg/exporterhelper: Fix reference count bug in partition batcher (#​14444)

v0.143.0

Compare Source

💡 Enhancements 💡
  • all: Update semconv import to 1.38.0 (#​14305)
  • exporter/nop: Add profiles support to nop exporter (#​14331)
  • pkg/pdata: Optimize the size and pointer bytes for pdata structs (#​14339)
  • pkg/pdata: Avoid using interfaces/oneof like style for optional fields (#​14333)

v0.142.0

Compare Source

💡 Enhancements 💡
  • exporter/debug: Add logging of dropped attributes, events, and links counts in detailed verbosity (#​14202)

  • extension/memory_limiter: The memorylimiter extension can be used as an HTTP/GRPC middleware. (#​14081)

  • pkg/config/configgrpc: Statically validate gRPC endpoint (#​10451)
    This validation was already done in the OTLP exporter. It will now be applied to any gRPC client.

  • pkg/service: Add support to disabling adding resource attributes as zap fields in internal logging (#​13869)
    Note that this does not affect logs exported through OTLP.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

Need help?

You can ask for more help in the following Slack channel: #proj-renovate-self-hosted. In that channel you can also find ADR and FAQ docs in the Resources section.

@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go.opentelemetry.io-collector-config-confighttp-0.x branch from 2db3dc4 to 5fe1bd7 Compare January 8, 2026 20:25
@renovate-sh-app renovate-sh-app bot changed the title fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.142.0 fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.143.0 Jan 8, 2026
@renovate-sh-app
Copy link
Copy Markdown
Author

renovate-sh-app bot commented Jan 8, 2026

ℹ️ 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):

  • 44 additional dependencies were updated

Details:

Package Change
go.opentelemetry.io/collector/component v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/component/componenttest v0.141.0 -> v0.150.0
go.opentelemetry.io/collector/config/configopaque v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/config/configtls v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/pdata v1.47.0 -> v1.56.0
go.opentelemetry.io/otel/metric v1.38.0 -> v1.43.0
go.opentelemetry.io/otel/trace v1.38.0 -> v1.43.0
github.com/foxboron/go-tpm-keyfiles v0.0.0-20250903184740-5d135037bd4d -> v0.0.0-20251226215517-609e4778396f
github.com/go-viper/mapstructure/v2 v2.4.0 -> v2.5.0
github.com/google/go-tpm v0.9.7 -> v0.9.8
github.com/hashicorp/go-version v1.8.0 -> v1.9.0
github.com/klauspost/compress v1.18.2 -> v1.18.5
github.com/knadh/koanf/v2 v2.3.0 -> v2.3.4
github.com/pierrec/lz4/v4 v4.1.22 -> v4.1.26
go.opentelemetry.io/collector/client v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/config/configauth v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/config/configcompression v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/config/configmiddleware v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/config/confignet v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/config/configoptional v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/confmap v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/confmap/xconfmap v0.141.0 -> v0.150.0
go.opentelemetry.io/collector/consumer v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/extension v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/extension/extensionauth v1.47.0 -> v1.56.0
go.opentelemetry.io/collector/extension/extensionmiddleware v0.141.0 -> v0.150.0
go.opentelemetry.io/collector/featuregate v1.47.0 -> v1.56.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 -> v0.68.0
go.opentelemetry.io/otel v1.38.0 -> v1.43.0
go.opentelemetry.io/otel/sdk v1.38.0 -> v1.43.0
go.opentelemetry.io/otel/sdk/metric v1.38.0 -> v1.43.0
golang.org/x/crypto v0.45.0 -> v0.49.0
golang.org/x/mod v0.29.0 -> v0.33.0
golang.org/x/net v0.47.0 -> v0.52.0
golang.org/x/sync v0.18.0 -> v0.20.0
golang.org/x/sys v0.38.0 -> v0.42.0
golang.org/x/telemetry v0.0.0-20251008203120-078029d740a8 -> v0.0.0-20260209163413-e7419c687ee4
golang.org/x/term v0.37.0 -> v0.41.0
golang.org/x/text v0.31.0 -> v0.35.0
golang.org/x/tools v0.38.0 -> v0.42.0
google.golang.org/genproto/googleapis/api v0.0.0-20251124214823-79d6a2a48846 -> v0.0.0-20260120221211-b8f7ae30c516
google.golang.org/genproto/googleapis/rpc v0.0.0-20251124214823-79d6a2a48846 -> v0.0.0-20260120221211-b8f7ae30c516
google.golang.org/grpc v1.77.0 -> v1.80.0
google.golang.org/protobuf v1.36.10 -> v1.36.11

@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go.opentelemetry.io-collector-config-confighttp-0.x branch from 5fe1bd7 to df1d8a7 Compare January 23, 2026 11:13
@renovate-sh-app renovate-sh-app bot changed the title fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.143.0 fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.144.0 Jan 23, 2026
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go.opentelemetry.io-collector-config-confighttp-0.x branch from df1d8a7 to 8536892 Compare February 5, 2026 18:05
@renovate-sh-app renovate-sh-app bot changed the title fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.144.0 fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.145.0 Feb 5, 2026
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go.opentelemetry.io-collector-config-confighttp-0.x branch from 8536892 to 383fe9a Compare February 20, 2026 21:06
@renovate-sh-app renovate-sh-app bot changed the title fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.145.0 fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.146.0 Feb 20, 2026
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go.opentelemetry.io-collector-config-confighttp-0.x branch from 383fe9a to ef7b044 Compare February 21, 2026 12:07
@renovate-sh-app renovate-sh-app bot changed the title fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.146.0 fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.146.1 Feb 21, 2026
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go.opentelemetry.io-collector-config-confighttp-0.x branch from ef7b044 to 6cfb2c9 Compare March 5, 2026 15:04
@renovate-sh-app renovate-sh-app bot changed the title fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.146.1 fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.147.0 Mar 5, 2026
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go.opentelemetry.io-collector-config-confighttp-0.x branch from 6cfb2c9 to e9c21d5 Compare March 20, 2026 15:03
@renovate-sh-app renovate-sh-app bot changed the title fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.147.0 fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.148.0 Mar 20, 2026
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go.opentelemetry.io-collector-config-confighttp-0.x branch from e9c21d5 to 91054fc Compare April 3, 2026 03:04
@renovate-sh-app renovate-sh-app bot changed the title fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.148.0 fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.149.0 Apr 3, 2026
…ttp to v0.150.0

| datasource | package                                         | from     | to       |
| ---------- | ----------------------------------------------- | -------- | -------- |
| go         | go.opentelemetry.io/collector/config/confighttp | v0.141.0 | v0.150.0 |


Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
@renovate-sh-app renovate-sh-app bot force-pushed the renovate/go.opentelemetry.io-collector-config-confighttp-0.x branch from 91054fc to fc56863 Compare April 16, 2026 12:03
@renovate-sh-app renovate-sh-app bot changed the title fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.149.0 fix(deps): update module go.opentelemetry.io/collector/config/confighttp to v0.150.0 Apr 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants