Skip to content

build(deps): bump the otel group across 1 directory with 4 updates#611

Merged
marclop merged 1 commit into
mainfrom
dependabot/go_modules/otel-feec35a678
May 27, 2026
Merged

build(deps): bump the otel group across 1 directory with 4 updates#611
marclop merged 1 commit into
mainfrom
dependabot/go_modules/otel-feec35a678

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 26, 2026

Bumps the otel group with 2 updates in the / directory: github.com/jaegertracing/jaeger-idl and github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger.

Updates github.com/jaegertracing/jaeger-idl from 0.7.0 to 0.9.0

Release notes

Sourced from github.com/jaegertracing/jaeger-idl's releases.

v0.9.0

What's Changed

Full Changelog: jaegertracing/jaeger-idl@v0.8.0...v0.9.0

v0.8.0

What's Changed

Release v0.7.1

What's Changed

Commits
  • 0daa719 feat(api_v3): Mark trace_id and ServiceSummary.name as REQUIRED (#204)
  • 2543795 fix(api/v3): Use JSON naming in OpenAPI spec, fix Operation.spanKind (#202)
  • 8c84d89 feat(api_v3,storage/v2): Add FindTraceSummaries RPC for lightweight search re...
  • c8e34fd docs(api_v2): fix comment to use search_depth instead of num_traces (#201)
  • c4f36ba fix(storage/v2): Give FindTraceIDs its own request type (#200)
  • 0c1306a Relax source compatibility level to Go 1.25 (#199)
  • See full diff in compare view

Updates github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger from 0.152.0 to 0.153.0

Release notes

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger's releases.

v0.153.0

The OpenTelemetry Collector Contrib contains everything in the opentelemetry-collector release, be sure to check the release notes there as well.

End User Changelog

🛑 Breaking changes 🛑

  • exporter/clickhouse: Remove deprecated clickhouse.json feature gate. Users should set json: true in the exporter config directly. (#47888)

  • extension/aws_logs_encoding: Remove deprecated format values and the vpc_flow_log config field. (#42901) The deprecated format values vpc_flow_log, elb_access_log, s3_access_log, cloudtrail_log, waf_log, and cloudwatch_logs_subscription_filter are no longer supported. Use vpcflow, elbaccess, s3access, cloudtrail, waf, and cloudwatch respectively. The deprecated vpc_flow_log config field has been removed; use vpcflow instead.

  • pkg/ottl: Return errors when OTTL datapoint context setters are used on an incompatible data point type (#48384) For example, set(explicit_bounds, [1.0]) against a NumberDataPoint now returns an error rather than silently no-opping. Statements that were previously failing silently due to data point type mismatches will now surface as errors.

    Affected paths and the data point types they support:

    • value_double, value_int: NumberDataPoint
    • explicit_bounds, bucket_counts: HistogramDataPoint
    • scale, zero_count, positive, positive.offset, positive.bucket_counts, negative, negative.offset, negative.bucket_counts: ExponentialHistogramDataPoint
    • quantile_values: SummaryDataPoint
    • exemplars: NumberDataPoint, HistogramDataPoint, ExponentialHistogramDataPoint
    • count, sum: HistogramDataPoint, ExponentialHistogramDataPoint, SummaryDataPoint
  • processor/filter: Promote processor.filter.defaultErrorModeIgnore feature gate to beta. (#47232) The default error_mode of the filter processor is now ignore instead of propagate. To restore the previous behavior, disable the feature gate with --feature-gates=-processor.filter.defaultErrorModeIgnore.

  • processor/transform: Move the processor.transform.defaultErrorModeIgnore feature gate to beta. The default top-level error_mode is now ignore instead of propagate. (#48415) To revert to the previous default, disable the gate with --feature-gates=-processor.transform.defaultErrorModeIgnore.

  • receiver/http_check: Fix timing metrics (httpcheck.dns.lookup.duration, httpcheck.client.connection.duration, httpcheck.tls.handshake.duration, httpcheck.client.request.duration, httpcheck.response.duration) always reporting 0 on fast networks where phase durations are sub-millisecond. Metrics now report values in nanoseconds instead of milliseconds. (#47257) Integer division truncated sub-millisecond durations to 0. Metrics now use nanoseconds as the unit, so a 500µs duration is reported as 500,000 rather than 0.

  • receiver/jaeger: Remove stable gate receiver.jaeger.DisableRemoteSampling (#48616)

  • receiver/pprof: Restructure config under remote, file, self, and server sections, and add HTTP push ingestion at POST /v1/pprof. (#48276) The top-level fields endpoint, include, collection_interval, initial_delay, block_profile_fraction, and mutex_profile_fraction are now nested under the corresponding remote, file, or self subsection. Multiple modes can be enabled on a single receiver instance, each with its own collection interval. A new server section enables push-mode ingestion of pprof data over HTTP.

🚩 Deprecations 🚩

  • connector/metrics_as_logs: Rename component type from metricsaslogs to metrics_as_logs to follow snake_case naming convention. The old name is kept as a deprecated alias. (#48016)
  • exporter/load_balancing: Rename the loadbalancing exporter to load_balancing. The old loadbalancing type remains available as a deprecated alias. (#45339)
  • pkg/kafka/configkafka: Deprecate Kafka client config fields that became no-ops after the migration to franz-go. (#48260)
    • resolve_canonical_bootstrap_servers_only: franz-go has no direct equivalent to the associated Sarama config.

... (truncated)

Changelog

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger's changelog.

v0.153.0

💡 Enhancements 💡

  • extension/file_storage: Implement storage.Walker interface to allow iterating over all stored keys with deferred operations (#47755)

  • internal/kafka: Remove the dependency on github.com/IBM/sarama from all Kafka components. (#48260) The Kafka exporter, receiver, metrics receiver, and topics observer have all been migrated to github.com/twmb/franz-go. The remaining sarama-based helpers in internal/kafka are removed, and protocol_version validation in pkg/kafka/configkafka now uses franz-go's kversion package.

  • pkg/pdatatest: Add /exists operator support to pmetricassert (#48079)

  • pkg/pdatatest: Introduce pmetricassert package for MTS-focused YAML metric assertions (#48079)

  • receiver/file_log: Improves file-reading efficiency by evicting previously read data from the OS page cache. (#48273) Clears the cache on Linux; acts as a no-op on unsupported platforms.

  • receiver/http_check: Enables dynamic metric reaggregation in the HTTP Check receiver. This does not break existing configuration files. (#46358)

Commits
  • 42f9491 Fix 153 release steps (#48639)
  • 61b5214 [chore] Manually run update-otel to v0.153.0 (#48631)
  • 0014596 extension/sumologicextension: make metadata update async to avoid blocking st...
  • 58b9c58 [chore]: support scoped unit tests in build-and-test.yaml (#48611)
  • 1c54603 [receiver/jaeger] remove stable gate receiver.jaeger.DisableRemoteSampling (#...
  • c218a07 [receiver/iis] Do not fail receiver start if disabled metrics are not install...
  • eb1de34 Oracle blocking session (#48028)
  • f9166b5 [processor/genainormalizer] Add OpenLLMetry source (#48385)
  • fb46b08 [chore]: support scoped linting in build-and-test (#48608)
  • 274266e [receiver/yang_grpc] fix setting metric attributes from context bag (#48568)
  • Additional commits viewable in compare view

Updates go.opentelemetry.io/collector/consumer from 1.58.0 to 1.59.0

Release notes

Sourced from go.opentelemetry.io/collector/consumer's releases.

v1.59.0/v0.153.0

Images and binaries here: https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.153.0

End User Changelog

🛑 Breaking changes 🛑

  • pkg/configoptional: Stabilize feature gate configoptional.AddEnabledField (#15333)
  • pkg/confmap: Stabilize confmap.newExpandedValueSanitizer feature gate (#15339)
  • pkg/exporterhelper: mark exporter.PersistRequestContext as stable (#15330)
  • pkg/otelcol: Stabilize otelcol.printInitialConfig gate (#15340)
  • pkg/pdata: Remove pdata.useCustomProtoEncoding feature gate (#15332)
  • pkg/service: Stabilize telemetry.UseLocalHostAsDefaultMetricsAddress gate (#15342)
  • pkg/xpdata: Stabilize pdata.enableRefCounting feature gate (#15331)

🧰 Bug fixes 🧰

  • pkg/config/configgrpc: Fix memory corruption and fatal error in Snappy (#15237, #15320)

API Changelog

🛑 Breaking changes 🛑

  • cmd/mdatagen: Enable reaggregation config generation by default; set reaggregation_enabled: false to keep generating metric config with only the enabled field. (#14689)

💡 Enhancements 💡

  • cmd/mdatagen: Enforce stricter feature_gates validation in metadata.yaml by default. (#15310) Strict validation can be skipped on a per-gate basis by setting skip_strict_validation: true on the gate entry.

  • cmd/mdatagen: Support generating config schema and Go config types for package metadata that defines reusable configs under $defs. (#15235)

  • cmd/mdatagen: Generate config documentation table and inject it into README.md between sentinel comments (#14564) When a component defines a config: section in its metadata.yaml, mdatagen now generates a Markdown configuration table and injects it into README.md between:

    The table lists every YAML-visible property (including fields from embedded structs), with type, default value, required status, and description. Nested objects generate sub-tables linked from the parent row. Components whose README lacks the sentinel markers are unaffected.

  • pkg/configoptional: Add methods allowing scalar unmarshaling (#15175)

  • pkg/scraperhelper: Switch scraperhelper.ControllerConfig to schema-based generated configuration and publish its reusable controller_config schema. (#15258)

  • pkg/xconfmap: Add ScalarMarshaler and ScalarUnmarshaler interfaces to allow custom marshaling and unmarshaling of wrapped scalar values. (#15175)

  • pkg/xextension/storage: Add Walker interface, WalkFunc type, and SkipAll error value to support iterating over storage key/value entries. (#15190, #15191)

... (truncated)

Changelog

Sourced from go.opentelemetry.io/collector/consumer's changelog.

v1.59.0/v0.153.0

🛑 Breaking changes 🛑

  • cmd/mdatagen: Enable reaggregation config generation by default; set reaggregation_enabled: false to keep generating metric config with only the enabled field. (#14689)

💡 Enhancements 💡

  • cmd/mdatagen: Enforce stricter feature_gates validation in metadata.yaml by default. (#15310) Strict validation can be skipped on a per-gate basis by setting skip_strict_validation: true on the gate entry.

  • cmd/mdatagen: Support generating config schema and Go config types for package metadata that defines reusable configs under $defs. (#15235)

  • cmd/mdatagen: Generate config documentation table and inject it into README.md between sentinel comments (#14564) When a component defines a config: section in its metadata.yaml, mdatagen now generates a Markdown configuration table and injects it into README.md between:

    The table lists every YAML-visible property (including fields from embedded structs), with type, default value, required status, and description. Nested objects generate sub-tables linked from the parent row. Components whose README lacks the sentinel markers are unaffected.

  • pkg/configoptional: Add methods allowing scalar unmarshaling (#15175)

  • pkg/scraperhelper: Switch scraperhelper.ControllerConfig to schema-based generated configuration and publish its reusable controller_config schema. (#15258)

  • pkg/xconfmap: Add ScalarMarshaler and ScalarUnmarshaler interfaces to allow custom marshaling and unmarshaling of wrapped scalar values. (#15175)

  • pkg/xextension/storage: Add Walker interface, WalkFunc type, and SkipAll error value to support iterating over storage key/value entries. (#15190, #15191) A storage Client may optionally implement the Walker interface to allow consumers to range through all stored entries. This enables use cases such as storage migrations and TTL-based garbage collection.

Commits
  • 452cae1 [chore] Prepare release v1.59.0/v0.153.0 (#15352)
  • 3771765 [chore] Add schema combiner logic (#15293)
  • b6ab46d [pkg/confmap] stabilize confmap.newExpandedValueSanitizer gate (#15339)
  • e591a4f [chore][govuln] bump golang.org/x/net to v0.55.0 (#15350)
  • 991b139 [chore][govuln] bump golang.org/x/crypto to v0.52.0 (#15348)
  • 3708bc7 Remove usage of the PdataEnableRefCountingFeatureGate, since is stable cannot...
  • 3073e35 Enable mdatagen reaggregation by default (#15305)
  • 5abdf01 [chore]: again fix external use of extension/xextension on the tip of main (#...
  • 8e7125d [chore] remove stabilized gate usage (#15337)
  • aec8499 [chore]: fix external use of extension/xextension on the tip of main (#15344)
  • Additional commits viewable in compare view

Updates go.opentelemetry.io/collector/pdata from 1.58.0 to 1.59.0

Release notes

Sourced from go.opentelemetry.io/collector/pdata's releases.

v1.59.0/v0.153.0

Images and binaries here: https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.153.0

End User Changelog

🛑 Breaking changes 🛑

  • pkg/configoptional: Stabilize feature gate configoptional.AddEnabledField (#15333)
  • pkg/confmap: Stabilize confmap.newExpandedValueSanitizer feature gate (#15339)
  • pkg/exporterhelper: mark exporter.PersistRequestContext as stable (#15330)
  • pkg/otelcol: Stabilize otelcol.printInitialConfig gate (#15340)
  • pkg/pdata: Remove pdata.useCustomProtoEncoding feature gate (#15332)
  • pkg/service: Stabilize telemetry.UseLocalHostAsDefaultMetricsAddress gate (#15342)
  • pkg/xpdata: Stabilize pdata.enableRefCounting feature gate (#15331)

🧰 Bug fixes 🧰

  • pkg/config/configgrpc: Fix memory corruption and fatal error in Snappy (#15237, #15320)

API Changelog

🛑 Breaking changes 🛑

  • cmd/mdatagen: Enable reaggregation config generation by default; set reaggregation_enabled: false to keep generating metric config with only the enabled field. (#14689)

💡 Enhancements 💡

  • cmd/mdatagen: Enforce stricter feature_gates validation in metadata.yaml by default. (#15310) Strict validation can be skipped on a per-gate basis by setting skip_strict_validation: true on the gate entry.

  • cmd/mdatagen: Support generating config schema and Go config types for package metadata that defines reusable configs under $defs. (#15235)

  • cmd/mdatagen: Generate config documentation table and inject it into README.md between sentinel comments (#14564) When a component defines a config: section in its metadata.yaml, mdatagen now generates a Markdown configuration table and injects it into README.md between:

    The table lists every YAML-visible property (including fields from embedded structs), with type, default value, required status, and description. Nested objects generate sub-tables linked from the parent row. Components whose README lacks the sentinel markers are unaffected.

  • pkg/configoptional: Add methods allowing scalar unmarshaling (#15175)

  • pkg/scraperhelper: Switch scraperhelper.ControllerConfig to schema-based generated configuration and publish its reusable controller_config schema. (#15258)

  • pkg/xconfmap: Add ScalarMarshaler and ScalarUnmarshaler interfaces to allow custom marshaling and unmarshaling of wrapped scalar values. (#15175)

  • pkg/xextension/storage: Add Walker interface, WalkFunc type, and SkipAll error value to support iterating over storage key/value entries. (#15190, #15191)

... (truncated)

Changelog

Sourced from go.opentelemetry.io/collector/pdata's changelog.

v1.59.0/v0.153.0

🛑 Breaking changes 🛑

  • cmd/mdatagen: Enable reaggregation config generation by default; set reaggregation_enabled: false to keep generating metric config with only the enabled field. (#14689)

💡 Enhancements 💡

  • cmd/mdatagen: Enforce stricter feature_gates validation in metadata.yaml by default. (#15310) Strict validation can be skipped on a per-gate basis by setting skip_strict_validation: true on the gate entry.

  • cmd/mdatagen: Support generating config schema and Go config types for package metadata that defines reusable configs under $defs. (#15235)

  • cmd/mdatagen: Generate config documentation table and inject it into README.md between sentinel comments (#14564) When a component defines a config: section in its metadata.yaml, mdatagen now generates a Markdown configuration table and injects it into README.md between:

    The table lists every YAML-visible property (including fields from embedded structs), with type, default value, required status, and description. Nested objects generate sub-tables linked from the parent row. Components whose README lacks the sentinel markers are unaffected.

  • pkg/configoptional: Add methods allowing scalar unmarshaling (#15175)

  • pkg/scraperhelper: Switch scraperhelper.ControllerConfig to schema-based generated configuration and publish its reusable controller_config schema. (#15258)

  • pkg/xconfmap: Add ScalarMarshaler and ScalarUnmarshaler interfaces to allow custom marshaling and unmarshaling of wrapped scalar values. (#15175)

  • pkg/xextension/storage: Add Walker interface, WalkFunc type, and SkipAll error value to support iterating over storage key/value entries. (#15190, #15191) A storage Client may optionally implement the Walker interface to allow consumers to range through all stored entries. This enables use cases such as storage migrations and TTL-based garbage collection.

Commits
  • 452cae1 [chore] Prepare release v1.59.0/v0.153.0 (#15352)
  • 3771765 [chore] Add schema combiner logic (#15293)
  • b6ab46d [pkg/confmap] stabilize confmap.newExpandedValueSanitizer gate (#15339)
  • e591a4f [chore][govuln] bump golang.org/x/net to v0.55.0 (#15350)
  • 991b139 [chore][govuln] bump golang.org/x/crypto to v0.52.0 (#15348)
  • 3708bc7 Remove usage of the PdataEnableRefCountingFeatureGate, since is stable cannot...
  • 3073e35 Enable mdatagen reaggregation by default (#15305)
  • 5abdf01 [chore]: again fix external use of extension/xextension on the tip of main (#...
  • 8e7125d [chore] remove stabilized gate usage (#15337)
  • aec8499 [chore]: fix external use of extension/xextension on the tip of main (#15344)
  • Additional commits viewable 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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

Bumps the otel group with 2 updates in the / directory: [github.com/jaegertracing/jaeger-idl](https://github.com/jaegertracing/jaeger-idl) and [github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger](https://github.com/open-telemetry/opentelemetry-collector-contrib).


Updates `github.com/jaegertracing/jaeger-idl` from 0.7.0 to 0.9.0
- [Release notes](https://github.com/jaegertracing/jaeger-idl/releases)
- [Commits](jaegertracing/jaeger-idl@v0.7.0...v0.9.0)

Updates `github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger` from 0.152.0 to 0.153.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/CHANGELOG-API.md)
- [Commits](open-telemetry/opentelemetry-collector-contrib@v0.152.0...v0.153.0)

Updates `go.opentelemetry.io/collector/consumer` from 1.58.0 to 1.59.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-collector/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-collector/blob/main/CHANGELOG-API.md)
- [Commits](open-telemetry/opentelemetry-collector@pdata/v1.58.0...pdata/v1.59.0)

Updates `go.opentelemetry.io/collector/pdata` from 1.58.0 to 1.59.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-collector/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-collector/blob/main/CHANGELOG-API.md)
- [Commits](open-telemetry/opentelemetry-collector@pdata/v1.58.0...pdata/v1.59.0)

---
updated-dependencies:
- dependency-name: github.com/jaegertracing/jaeger-idl
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger
  dependency-version: 0.153.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel
- dependency-name: go.opentelemetry.io/collector/consumer
  dependency-version: 1.59.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel
- dependency-name: go.opentelemetry.io/collector/pdata
  dependency-version: 1.59.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels May 26, 2026
@dependabot dependabot Bot requested a review from a team as a code owner May 26, 2026 23:40
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels May 26, 2026
@marclop marclop merged commit 1b4fc64 into main May 27, 2026
10 checks passed
@marclop marclop deleted the dependabot/go_modules/otel-feec35a678 branch May 27, 2026 06:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant