Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the otel-dependencies group with 46 updates #4567

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 11, 2024

Bumps the otel-dependencies group with 46 updates:

Package From To
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter 0.96.0 0.98.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor 0.96.0 0.98.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor 0.96.0 0.98.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/transformprocessor 0.96.0 0.98.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver 0.96.0 0.98.0
go.opentelemetry.io/collector/component 0.96.0 0.98.0
go.opentelemetry.io/collector/confmap 0.96.0 0.98.0
go.opentelemetry.io/collector/confmap/converter/expandconverter 0.96.0 0.98.0
go.opentelemetry.io/collector/confmap/provider/envprovider 0.96.0 0.98.0
go.opentelemetry.io/collector/confmap/provider/fileprovider 0.96.0 0.98.0
go.opentelemetry.io/collector/confmap/provider/httpprovider 0.96.0 0.98.0
go.opentelemetry.io/collector/confmap/provider/httpsprovider 0.96.0 0.98.0
go.opentelemetry.io/collector/confmap/provider/yamlprovider 0.96.0 0.98.0
go.opentelemetry.io/collector/exporter 0.96.0 0.98.0
go.opentelemetry.io/collector/exporter/debugexporter 0.96.0 0.98.0
go.opentelemetry.io/collector/exporter/otlpexporter 0.96.0 0.98.0
go.opentelemetry.io/collector/featuregate 1.3.0 1.5.0
go.opentelemetry.io/collector/otelcol 0.96.0 0.98.0
go.opentelemetry.io/collector/processor 0.96.0 0.98.0
go.opentelemetry.io/collector/processor/batchprocessor 0.96.0 0.98.0
go.opentelemetry.io/collector/processor/memorylimiterprocessor 0.96.0 0.98.0
go.opentelemetry.io/collector/receiver 0.96.0 0.98.0
go.opentelemetry.io/collector/receiver/otlpreceiver 0.96.0 0.98.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal 0.96.0 0.98.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter 0.96.0 0.98.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent 0.96.0 0.98.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl 0.96.0 0.98.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil 0.96.0 0.98.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza 0.96.0 0.98.0
go.opentelemetry.io/collector/config/configauth 0.96.0 0.98.0
go.opentelemetry.io/collector/config/configcompression 0.96.0 1.5.0
go.opentelemetry.io/collector/config/configgrpc 0.96.0 0.98.0
go.opentelemetry.io/collector/config/confighttp 0.96.0 0.98.0
go.opentelemetry.io/collector/config/confignet 0.96.0 0.98.0
go.opentelemetry.io/collector/config/configopaque 1.3.0 1.5.0
go.opentelemetry.io/collector/config/configretry 0.96.0 0.98.0
go.opentelemetry.io/collector/config/configtelemetry 0.96.0 0.98.0
go.opentelemetry.io/collector/config/configtls 0.96.0 0.98.0
go.opentelemetry.io/collector/config/internal 0.96.0 0.98.0
go.opentelemetry.io/collector/connector 0.96.0 0.98.0
go.opentelemetry.io/collector/consumer 0.96.0 0.98.0
go.opentelemetry.io/collector/extension 0.96.0 0.98.0
go.opentelemetry.io/collector/extension/auth 0.96.0 0.98.0
go.opentelemetry.io/collector/pdata 1.3.0 1.5.0
go.opentelemetry.io/collector/semconv 0.96.0 0.98.0
go.opentelemetry.io/collector/service 0.96.0 0.98.0

Updates github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter from 0.96.0 to 0.98.0

Release notes

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter's releases.

v0.98.0

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

End User Changes

🛑 Breaking changes 🛑

  • podmanreceiver: Adds metrics and resources metadata and sets seconds precision for cpu metrics (#28640)

  • clickhouseexporter: Add ServiceName as column into Clickhouse metrics tables (#31670) It's a breaking change. users who upgrade to the latest version need to alter the Clickhouse table:

    ALTER TABLE otel_metrics_exponential_histogram ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_gauge ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_histogram ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_sum ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_summary ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
  • elasticsearchexporter: Initial pass in implementing the ecs mapping mode (#31553) Breaking change if mapping mode is set to ecs, use none to maintain existing format

  • pkg/stanza: Revert recombine operator's 'overwrite_with' default value. (#30783) Restores the previous the default value of oldest, meaning that the recombine operator will emit the first entry from each batch (with the recombined field). This fixes the bug introduced by 30783 and restores the default setting so as to effectively cancel out the bug for users who were not using this setting. For users who were explicitly setting overwrite_with, this corrects the intended behavior.

  • processor/attributes, processor/resource: Remove stable coreinternal.attraction.hash.sha256 feature gate. (#31997)

  • receiver/dockerstats: Remove stable receiver.dockerstats.useScraperV2 feature gate. (#31999)

  • awsxrayexporter: change x-ray exporter's translator to make "." split annotation pass as-is (#31732) In the past, X-Ray doesn’t support “.”. So we have a translator in x-ray export to translates it to “_” before sending traces to X-Ray Service. | To match otel naming style, x-ray service team decide to change their service to support both "." type and "" type of naming. In this case the translator that translate "." to "" is no-longer needed. This PR change the way this translator work | X-Ray PMs agree on rolling out this change by using feature-gate

🚩 Deprecations 🚩

  • postgresqlreceiver: Minimal supported PostgreSQL version will be updated from 9.6 to 12.0 in a future release. (#30923) Aligning on the supported versions as can be seen in the PostgreSQL releases section

🚀 New components 🚀

  • avrologencodingextension: Add new encoding extension to support mapping of AVRO messages to logs. (#21067)

💡 Enhancements 💡

  • ottl: Add new Unix function to convert from epoch timestamp to time.Time (#27868)
  • filelogreceiver: When reading a file on filelogreceiver not on windows, if include_file_owner_name is true, it will add the file owner name as the attribute log.file.owner.name and if include_file_owner_group_name is true, it will add the file owner group name as the attribute log.file.owner.group.name. (#30775)
  • awsproxyextension: Make awsproxy extension more resilient by initiating the AWS client during Start. (#27849)
  • deltatocumulativeprocessor: self-instrumentation to observe key metrics of the stream accumulation (#30705)
  • datadog/connector: Enable connector to use any attribute from the resource as Container Tag (#32224) This change allows the connector to use any attribute from the resource as a container tag. This is useful when you want to use a custom attribute from the resource as a container tag. For example, you can use the namespace attribute from the resource as a container tag.

... (truncated)

Changelog

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter's changelog.

v0.98.0

💡 Enhancements 💡

  • pkg/sampling: Usability improvements in the sampling API. (#31918)

v0.97.0

🛑 Breaking changes 🛑

  • datadogexporter: Remove config structs LimitedClientConfig and LimitedTLSClientSettings (#31733) This should have no impact to end users as long as they do not import Datadog exporter config structs in their source code.
  • cmd/mdatagen: Delete deprecated cmd/mdatagen from this project. Use go.opentelemetry.io/collector/cmd/mdatagen instead. (#30497)
  • azuremonitorreceiver: Reduce the public API for this receiver. (#24850) This unexports the following types ArmClient, MetricsDefinitionsClientInterface, MetricsValuesClient.
  • general: Update any component using scraperhelper.ScraperControllerSettings to use scraperhelper.ControllerConfig (#31816) This changes the config field name from ScraperControllerSettings to ControllerConfig
  • prometheusreceiver: Remove enable_protobuf_negotiation option on the prometheus receiver. Use config.global.scrape_protocols = [ PrometheusProto, OpenMetricsText1.0.0, OpenMetricsText0.0.1, PrometheusText0.0.4 ] instead. (#30883) See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#configuration-file for details on setting scrape_protocols.

🚩 Deprecations 🚩

  • pkg/stanza: Deprecate fileconsumer.BuildWithSplitFunc in favor of Build with options pattern (#31596)

💡 Enhancements 💡

  • clickhouseexporter: Allow configuring ON CLUSTER and ENGINE when creating database and tables (#24649) Increases table creation flexibility with the ability to add replication for fault tolerance
  • all: Remove explicit checks in all receivers to check if the next consumer is nil (#31793) The nil check is now done by the pipeline builder.
Commits
  • da05052 [chore] Prepare release 0.98.0 (#32310)
  • 1662dc7 [chore] Update core dependency (#32301)
  • a86e505 [pkg/stanza] Fix tests on Windows (#32305)
  • 2b0d1be [chore][cmd/telemetrygen] Fix deprecated method usage (#32300)
  • 1ad0b31 [chore] Remove usage of go.opentelemetry.io/otel/attribute.Sortable (#32303)
  • 8fb6db0 [chore][CI/CD] Upgrade golang 1.22 version for unittest-matrix (#32288)
  • 0bd0379 [exporter/elasticsearch] handle ecs mode mapping (#31553)
  • 655bfa7 [processor/deltatocumulative]: observe accumulation metrics (#31363)
  • 13b2b03 [extension/awsproxy] add support for shutdown test (#31756)
  • 77cf7f3 Change the way that X-Ray exporter annotation converter work (#31732)
  • Additional commits viewable in compare view

Updates github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor from 0.96.0 to 0.98.0

Release notes

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor's releases.

v0.98.0

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

End User Changes

🛑 Breaking changes 🛑

  • podmanreceiver: Adds metrics and resources metadata and sets seconds precision for cpu metrics (#28640)

  • clickhouseexporter: Add ServiceName as column into Clickhouse metrics tables (#31670) It's a breaking change. users who upgrade to the latest version need to alter the Clickhouse table:

    ALTER TABLE otel_metrics_exponential_histogram ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_gauge ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_histogram ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_sum ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_summary ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
  • elasticsearchexporter: Initial pass in implementing the ecs mapping mode (#31553) Breaking change if mapping mode is set to ecs, use none to maintain existing format

  • pkg/stanza: Revert recombine operator's 'overwrite_with' default value. (#30783) Restores the previous the default value of oldest, meaning that the recombine operator will emit the first entry from each batch (with the recombined field). This fixes the bug introduced by 30783 and restores the default setting so as to effectively cancel out the bug for users who were not using this setting. For users who were explicitly setting overwrite_with, this corrects the intended behavior.

  • processor/attributes, processor/resource: Remove stable coreinternal.attraction.hash.sha256 feature gate. (#31997)

  • receiver/dockerstats: Remove stable receiver.dockerstats.useScraperV2 feature gate. (#31999)

  • awsxrayexporter: change x-ray exporter's translator to make "." split annotation pass as-is (#31732) In the past, X-Ray doesn’t support “.”. So we have a translator in x-ray export to translates it to “_” before sending traces to X-Ray Service. | To match otel naming style, x-ray service team decide to change their service to support both "." type and "" type of naming. In this case the translator that translate "." to "" is no-longer needed. This PR change the way this translator work | X-Ray PMs agree on rolling out this change by using feature-gate

🚩 Deprecations 🚩

  • postgresqlreceiver: Minimal supported PostgreSQL version will be updated from 9.6 to 12.0 in a future release. (#30923) Aligning on the supported versions as can be seen in the PostgreSQL releases section

🚀 New components 🚀

  • avrologencodingextension: Add new encoding extension to support mapping of AVRO messages to logs. (#21067)

💡 Enhancements 💡

  • ottl: Add new Unix function to convert from epoch timestamp to time.Time (#27868)
  • filelogreceiver: When reading a file on filelogreceiver not on windows, if include_file_owner_name is true, it will add the file owner name as the attribute log.file.owner.name and if include_file_owner_group_name is true, it will add the file owner group name as the attribute log.file.owner.group.name. (#30775)
  • awsproxyextension: Make awsproxy extension more resilient by initiating the AWS client during Start. (#27849)
  • deltatocumulativeprocessor: self-instrumentation to observe key metrics of the stream accumulation (#30705)
  • datadog/connector: Enable connector to use any attribute from the resource as Container Tag (#32224) This change allows the connector to use any attribute from the resource as a container tag. This is useful when you want to use a custom attribute from the resource as a container tag. For example, you can use the namespace attribute from the resource as a container tag.

... (truncated)

Changelog

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor's changelog.

v0.98.0

💡 Enhancements 💡

  • pkg/sampling: Usability improvements in the sampling API. (#31918)

v0.97.0

🛑 Breaking changes 🛑

  • datadogexporter: Remove config structs LimitedClientConfig and LimitedTLSClientSettings (#31733) This should have no impact to end users as long as they do not import Datadog exporter config structs in their source code.
  • cmd/mdatagen: Delete deprecated cmd/mdatagen from this project. Use go.opentelemetry.io/collector/cmd/mdatagen instead. (#30497)
  • azuremonitorreceiver: Reduce the public API for this receiver. (#24850) This unexports the following types ArmClient, MetricsDefinitionsClientInterface, MetricsValuesClient.
  • general: Update any component using scraperhelper.ScraperControllerSettings to use scraperhelper.ControllerConfig (#31816) This changes the config field name from ScraperControllerSettings to ControllerConfig
  • prometheusreceiver: Remove enable_protobuf_negotiation option on the prometheus receiver. Use config.global.scrape_protocols = [ PrometheusProto, OpenMetricsText1.0.0, OpenMetricsText0.0.1, PrometheusText0.0.4 ] instead. (#30883) See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#configuration-file for details on setting scrape_protocols.

🚩 Deprecations 🚩

  • pkg/stanza: Deprecate fileconsumer.BuildWithSplitFunc in favor of Build with options pattern (#31596)

💡 Enhancements 💡

  • clickhouseexporter: Allow configuring ON CLUSTER and ENGINE when creating database and tables (#24649) Increases table creation flexibility with the ability to add replication for fault tolerance
  • all: Remove explicit checks in all receivers to check if the next consumer is nil (#31793) The nil check is now done by the pipeline builder.
Commits
  • da05052 [chore] Prepare release 0.98.0 (#32310)
  • 1662dc7 [chore] Update core dependency (#32301)
  • a86e505 [pkg/stanza] Fix tests on Windows (#32305)
  • 2b0d1be [chore][cmd/telemetrygen] Fix deprecated method usage (#32300)
  • 1ad0b31 [chore] Remove usage of go.opentelemetry.io/otel/attribute.Sortable (#32303)
  • 8fb6db0 [chore][CI/CD] Upgrade golang 1.22 version for unittest-matrix (#32288)
  • 0bd0379 [exporter/elasticsearch] handle ecs mode mapping (#31553)
  • 655bfa7 [processor/deltatocumulative]: observe accumulation metrics (#31363)
  • 13b2b03 [extension/awsproxy] add support for shutdown test (#31756)
  • 77cf7f3 Change the way that X-Ray exporter annotation converter work (#31732)
  • Additional commits viewable in compare view

Updates github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor from 0.96.0 to 0.98.0

Release notes

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor's releases.

v0.98.0

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

End User Changes

🛑 Breaking changes 🛑

  • podmanreceiver: Adds metrics and resources metadata and sets seconds precision for cpu metrics (#28640)

  • clickhouseexporter: Add ServiceName as column into Clickhouse metrics tables (#31670) It's a breaking change. users who upgrade to the latest version need to alter the Clickhouse table:

    ALTER TABLE otel_metrics_exponential_histogram ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_gauge ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_histogram ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_sum ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_summary ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
  • elasticsearchexporter: Initial pass in implementing the ecs mapping mode (#31553) Breaking change if mapping mode is set to ecs, use none to maintain existing format

  • pkg/stanza: Revert recombine operator's 'overwrite_with' default value. (#30783) Restores the previous the default value of oldest, meaning that the recombine operator will emit the first entry from each batch (with the recombined field). This fixes the bug introduced by 30783 and restores the default setting so as to effectively cancel out the bug for users who were not using this setting. For users who were explicitly setting overwrite_with, this corrects the intended behavior.

  • processor/attributes, processor/resource: Remove stable coreinternal.attraction.hash.sha256 feature gate. (#31997)

  • receiver/dockerstats: Remove stable receiver.dockerstats.useScraperV2 feature gate. (#31999)

  • awsxrayexporter: change x-ray exporter's translator to make "." split annotation pass as-is (#31732) In the past, X-Ray doesn’t support “.”. So we have a translator in x-ray export to translates it to “_” before sending traces to X-Ray Service. | To match otel naming style, x-ray service team decide to change their service to support both "." type and "" type of naming. In this case the translator that translate "." to "" is no-longer needed. This PR change the way this translator work | X-Ray PMs agree on rolling out this change by using feature-gate

🚩 Deprecations 🚩

  • postgresqlreceiver: Minimal supported PostgreSQL version will be updated from 9.6 to 12.0 in a future release. (#30923) Aligning on the supported versions as can be seen in the PostgreSQL releases section

🚀 New components 🚀

  • avrologencodingextension: Add new encoding extension to support mapping of AVRO messages to logs. (#21067)

💡 Enhancements 💡

  • ottl: Add new Unix function to convert from epoch timestamp to time.Time (#27868)
  • filelogreceiver: When reading a file on filelogreceiver not on windows, if include_file_owner_name is true, it will add the file owner name as the attribute log.file.owner.name and if include_file_owner_group_name is true, it will add the file owner group name as the attribute log.file.owner.group.name. (#30775)
  • awsproxyextension: Make awsproxy extension more resilient by initiating the AWS client during Start. (#27849)
  • deltatocumulativeprocessor: self-instrumentation to observe key metrics of the stream accumulation (#30705)
  • datadog/connector: Enable connector to use any attribute from the resource as Container Tag (#32224) This change allows the connector to use any attribute from the resource as a container tag. This is useful when you want to use a custom attribute from the resource as a container tag. For example, you can use the namespace attribute from the resource as a container tag.

... (truncated)

Changelog

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor's changelog.

v0.98.0

💡 Enhancements 💡

  • pkg/sampling: Usability improvements in the sampling API. (#31918)

v0.97.0

🛑 Breaking changes 🛑

  • datadogexporter: Remove config structs LimitedClientConfig and LimitedTLSClientSettings (#31733) This should have no impact to end users as long as they do not import Datadog exporter config structs in their source code.
  • cmd/mdatagen: Delete deprecated cmd/mdatagen from this project. Use go.opentelemetry.io/collector/cmd/mdatagen instead. (#30497)
  • azuremonitorreceiver: Reduce the public API for this receiver. (#24850) This unexports the following types ArmClient, MetricsDefinitionsClientInterface, MetricsValuesClient.
  • general: Update any component using scraperhelper.ScraperControllerSettings to use scraperhelper.ControllerConfig (#31816) This changes the config field name from ScraperControllerSettings to ControllerConfig
  • prometheusreceiver: Remove enable_protobuf_negotiation option on the prometheus receiver. Use config.global.scrape_protocols = [ PrometheusProto, OpenMetricsText1.0.0, OpenMetricsText0.0.1, PrometheusText0.0.4 ] instead. (#30883) See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#configuration-file for details on setting scrape_protocols.

🚩 Deprecations 🚩

  • pkg/stanza: Deprecate fileconsumer.BuildWithSplitFunc in favor of Build with options pattern (#31596)

💡 Enhancements 💡

  • clickhouseexporter: Allow configuring ON CLUSTER and ENGINE when creating database and tables (#24649) Increases table creation flexibility with the ability to add replication for fault tolerance
  • all: Remove explicit checks in all receivers to check if the next consumer is nil (#31793) The nil check is now done by the pipeline builder.
Commits
  • da05052 [chore] Prepare release 0.98.0 (#32310)
  • 1662dc7 [chore] Update core dependency (#32301)
  • a86e505 [pkg/stanza] Fix tests on Windows (#32305)
  • 2b0d1be [chore][cmd/telemetrygen] Fix deprecated method usage (#32300)
  • 1ad0b31 [chore] Remove usage of go.opentelemetry.io/otel/attribute.Sortable (#32303)
  • 8fb6db0 [chore][CI/CD] Upgrade golang 1.22 version for unittest-matrix (#32288)
  • 0bd0379 [exporter/elasticsearch] handle ecs mode mapping (#31553)
  • 655bfa7 [processor/deltatocumulative]: observe accumulation metrics (#31363)
  • 13b2b03 [extension/awsproxy] add support for shutdown test (#31756)
  • 77cf7f3 Change the way that X-Ray exporter annotation converter work (#31732)
  • Additional commits viewable in compare view

Updates github.com/open-telemetry/opentelemetry-collector-contrib/processor/transformprocessor from 0.96.0 to 0.98.0

Release notes

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/processor/transformprocessor's releases.

v0.98.0

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

End User Changes

🛑 Breaking changes 🛑

  • podmanreceiver: Adds metrics and resources metadata and sets seconds precision for cpu metrics (#28640)

  • clickhouseexporter: Add ServiceName as column into Clickhouse metrics tables (#31670) It's a breaking change. users who upgrade to the latest version need to alter the Clickhouse table:

    ALTER TABLE otel_metrics_exponential_histogram ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_gauge ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_histogram ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_sum ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_summary ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
  • elasticsearchexporter: Initial pass in implementing the ecs mapping mode (#31553) Breaking change if mapping mode is set to ecs, use none to maintain existing format

  • pkg/stanza: Revert recombine operator's 'overwrite_with' default value. (#30783) Restores the previous the default value of oldest, meaning that the recombine operator will emit the first entry from each batch (with the recombined field). This fixes the bug introduced by 30783 and restores the default setting so as to effectively cancel out the bug for users who were not using this setting. For users who were explicitly setting overwrite_with, this corrects the intended behavior.

  • processor/attributes, processor/resource: Remove stable coreinternal.attraction.hash.sha256 feature gate. (#31997)

  • receiver/dockerstats: Remove stable receiver.dockerstats.useScraperV2 feature gate. (#31999)

  • awsxrayexporter: change x-ray exporter's translator to make "." split annotation pass as-is (#31732) In the past, X-Ray doesn’t support “.”. So we have a translator in x-ray export to translates it to “_” before sending traces to X-Ray Service. | To match otel naming style, x-ray service team decide to change their service to support both "." type and "" type of naming. In this case the translator that translate "." to "" is no-longer needed. This PR change the way this translator work | X-Ray PMs agree on rolling out this change by using feature-gate

🚩 Deprecations 🚩

  • postgresqlreceiver: Minimal supported PostgreSQL version will be updated from 9.6 to 12.0 in a future release. (#30923) Aligning on the supported versions as can be seen in the PostgreSQL releases section

🚀 New components 🚀

  • avrologencodingextension: Add new encoding extension to support mapping of AVRO messages to logs. (#21067)

💡 Enhancements 💡

  • ottl: Add new Unix function to convert from epoch timestamp to time.Time (#27868)
  • filelogreceiver: When reading a file on filelogreceiver not on windows, if include_file_owner_name is true, it will add the file owner name as the attribute log.file.owner.name and if include_file_owner_group_name is true, it will add the file owner group name as the attribute log.file.owner.group.name. (#30775)
  • awsproxyextension: Make awsproxy extension more resilient by initiating the AWS client during Start. (#27849)
  • deltatocumulativeprocessor: self-instrumentation to observe key metrics of the stream accumulation (#30705)
  • datadog/connector: Enable connector to use any attribute from the resource as Container Tag (#32224) This change allows the connector to use any attribute from the resource as a container tag. This is useful when you want to use a custom attribute from the resource as a container tag. For example, you can use the namespace attribute from the resource as a container tag.

... (truncated)

Changelog

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/processor/transformprocessor's changelog.

v0.98.0

💡 Enhancements 💡

  • pkg/sampling: Usability improvements in the sampling API. (#31918)

v0.97.0

🛑 Breaking changes 🛑

  • datadogexporter: Remove config structs LimitedClientConfig and LimitedTLSClientSettings (#31733) This should have no impact to end users as long as they do not import Datadog exporter config structs in their source code.
  • cmd/mdatagen: Delete deprecated cmd/mdatagen from this project. Use go.opentelemetry.io/collector/cmd/mdatagen instead. (#30497)
  • azuremonitorreceiver: Reduce the public API for this receiver. (#24850) This unexports the following types ArmClient, MetricsDefinitionsClientInterface, MetricsValuesClient.
  • general: Update any component using scraperhelper.ScraperControllerSettings to use scraperhelper.ControllerConfig (#31816) This changes the config field name from ScraperControllerSettings to ControllerConfig
  • prometheusreceiver: Remove enable_protobuf_negotiation option on the prometheus receiver. Use config.global.scrape_protocols = [ PrometheusProto, OpenMetricsText1.0.0, OpenMetricsText0.0.1, PrometheusText0.0.4 ] instead. (#30883) See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#configuration-file for details on setting scrape_protocols.

🚩 Deprecations 🚩

  • pkg/stanza: Deprecate fileconsumer.BuildWithSplitFunc in favor of Build with options pattern (#31596)

💡 Enhancements 💡

  • clickhouseexporter: Allow configuring ON CLUSTER and ENGINE when creating database and tables (#24649) Increases table creation flexibility with the ability to add replication for fault tolerance
  • all: Remove explicit checks in all receivers to check if the next consumer is nil (#31793) The nil check is now done by the pipeline builder.
Commits
  • da05052 [chore] Prepare release 0.98.0 (#32310)
  • 1662dc7 [chore] Update core dependency (#32301)
  • a86e505 [pkg/stanza] Fix tests on Windows (#32305)
  • 2b0d1be [chore][cmd/telemetrygen] Fix deprecated method usage (#32300)
  • 1ad0b31 [chore] Remove usage of go.opentelemetry.io/otel/attribute.Sortable (#32303)
  • 8fb6db0 [chore][CI/CD] Upgrade golang 1.22 version for unittest-matrix (#32288)
  • 0bd0379 [exporter/elasticsearch] handle ecs mode mapping (#31553)
  • 655bfa7 [processor/deltatocumulative]: observe accumulation metrics (#31363)
  • 13b2b03 [extension/awsproxy] add support for shutdown test (#31756)
  • 77cf7f3 Change the way that X-Ray exporter annotation converter work (#31732)
  • Additional commits viewable in compare view

Updates github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver from 0.96.0 to 0.98.0

Release notes

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver's releases.

v0.98.0

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

End User Changes

🛑 Breaking changes 🛑

  • podmanreceiver: Adds metrics and resources metadata and sets seconds precision for cpu metrics (#28640)

  • clickhouseexporter: Add ServiceName as column into Clickhouse metrics tables (#31670) It's a breaking change. users who upgrade to the latest version need to alter the Clickhouse table:

    ALTER TABLE otel_metrics_exponential_histogram ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_gauge ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_histogram ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_sum ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
    ALTER TABLE otel_metrics_summary ADD COLUMN ServiceName LowCardinality(String) CODEC(ZSTD(1));
  • elasticsearchexporter: Initial pass in implementing the ecs mapping mode (#31553) Breaking change if mapping mode is set to ecs, use none to maintain existing format

  • pkg/stanza: Revert recombine operator's 'overwrite_with' default value. (#30783) Restores the previous the default value of oldest, meaning that the recombine operator will emit the first entry from each batch (with the recombined field). This fixes the bug introduced by 30783 and restores the default setting so as to effectively cancel out the bug for users who were not using this setting. For users who were explicitly setting overwrite_with, this corrects the intended behavior.

  • processor/attributes, processor/resource: Remove stable coreinternal.attraction.hash.sha256 feature gate. (#31997)

  • receiver/dockerstats: Remove stable receiver.dockerstats.useScraperV2 feature gate. (#31999)

  • awsxrayexporter: change x-ray exporter's translator to make "." split annotation pass as-is (#31732) In the past, X-Ray doesn’t support “.”. So we have a translator in x-ray export to translates it to “_” before sending traces to X-Ray Service. | To match otel naming style, x-ray service team decide to change their service to support both "." type and "" type of naming. In this case the translator that translate "." to "" is no-longer needed. This PR change the way this translator work | X-Ray PMs agree on rolling out this change by using feature-gate

🚩 Deprecations 🚩

  • postgresqlreceiver: Minimal supported PostgreSQL version will be updated from 9.6 to 12.0 in a future release. (#30923) Aligning on the supported versions as can be seen in the PostgreSQL releases section

🚀 New components 🚀

  • avrologencodingextension: Add new encoding extension to support mapping of AVRO messages to logs. (#21067)

💡 Enhancements 💡

  • ottl: Add new Unix function to convert from epoch timestamp to time.Time (#27868)
  • filelogreceiver: When reading a file on filelogreceiver not on windows, if include_file_owner_name is true, it will add the file owner name as the attribute log.file.owner.name and if include_file_owner_group_name is true, it will add the file owner group name as the attribute log.file.owner.group.name. (#30775)
  • awsproxyextension: Make awsproxy extension more resi...

    Description has been truncated

@dependabot dependabot bot requested a review from a team as a code owner April 11, 2024 22:01
@elasticmachine
Copy link
Contributor

Pinging @elastic/elastic-agent (Team:Elastic-Agent)

Copy link
Contributor

mergify bot commented Apr 11, 2024

This pull request does not have a backport label. Could you fix it @dependabot[bot]? 🙏
To fixup this pull request, you need to add the backport labels for the needed
branches, such as:

  • backport-v./d./d./d is the label to automatically backport to the 8./d branch. /d is the digit

NOTE: backport-skip has been added to this pull request.

@cmacknz cmacknz requested a review from ycombinator April 12, 2024 15:28
Bumps the otel-dependencies group with 46 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter](https://github.com/open-telemetry/opentelemetry-collector-contrib) | `0.96.0` | `0.98.0` |
| [github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor](https://github.com/open-telemetry/opentelemetry-collector-contrib) | `0.96.0` | `0.98.0` |
| [github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor](https://github.com/open-telemetry/opentelemetry-collector-contrib) | `0.96.0` | `0.98.0` |
| [github.com/open-telemetry/opentelemetry-collector-contrib/processor/transformprocessor](https://github.com/open-telemetry/opentelemetry-collector-contrib) | `0.96.0` | `0.98.0` |
| [github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver](https://github.com/open-telemetry/opentelemetry-collector-contrib) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/component](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/confmap](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/confmap/converter/expandconverter](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/confmap/provider/envprovider](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/confmap/provider/fileprovider](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/confmap/provider/httpprovider](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/confmap/provider/httpsprovider](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/confmap/provider/yamlprovider](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/exporter](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/exporter/debugexporter](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/exporter/otlpexporter](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/featuregate](https://github.com/open-telemetry/opentelemetry-collector) | `1.3.0` | `1.5.0` |
| [go.opentelemetry.io/collector/otelcol](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/processor](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/processor/batchprocessor](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/processor/memorylimiterprocessor](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/receiver](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/receiver/otlpreceiver](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal](https://github.com/open-telemetry/opentelemetry-collector-contrib) | `0.96.0` | `0.98.0` |
| [github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter](https://github.com/open-telemetry/opentelemetry-collector-contrib) | `0.96.0` | `0.98.0` |
| [github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent](https://github.com/open-telemetry/opentelemetry-collector-contrib) | `0.96.0` | `0.98.0` |
| [github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl](https://github.com/open-telemetry/opentelemetry-collector-contrib) | `0.96.0` | `0.98.0` |
| [github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil](https://github.com/open-telemetry/opentelemetry-collector-contrib) | `0.96.0` | `0.98.0` |
| [github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza](https://github.com/open-telemetry/opentelemetry-collector-contrib) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/config/configauth](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/config/configcompression](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `1.5.0` |
| [go.opentelemetry.io/collector/config/configgrpc](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/config/confighttp](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/config/confignet](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/config/configopaque](https://github.com/open-telemetry/opentelemetry-collector) | `1.3.0` | `1.5.0` |
| [go.opentelemetry.io/collector/config/configretry](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/config/configtelemetry](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/config/configtls](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/config/internal](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/connector](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/consumer](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/extension](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/extension/auth](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/pdata](https://github.com/open-telemetry/opentelemetry-collector) | `1.3.0` | `1.5.0` |
| [go.opentelemetry.io/collector/semconv](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |
| [go.opentelemetry.io/collector/service](https://github.com/open-telemetry/opentelemetry-collector) | `0.96.0` | `0.98.0` |


Updates `github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter` from 0.96.0 to 0.98.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.96.0...v0.98.0)

Updates `github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor` from 0.96.0 to 0.98.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.96.0...v0.98.0)

Updates `github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor` from 0.96.0 to 0.98.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.96.0...v0.98.0)

Updates `github.com/open-telemetry/opentelemetry-collector-contrib/processor/transformprocessor` from 0.96.0 to 0.98.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.96.0...v0.98.0)

Updates `github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver` from 0.96.0 to 0.98.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.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/component` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/confmap` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/confmap/converter/expandconverter` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/confmap/provider/envprovider` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/confmap/provider/fileprovider` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/confmap/provider/httpprovider` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/confmap/provider/httpsprovider` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/confmap/provider/yamlprovider` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/exporter` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/exporter/debugexporter` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/exporter/otlpexporter` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/featuregate` from 1.3.0 to 1.5.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.3.0...pdata/v1.5.0)

Updates `go.opentelemetry.io/collector/otelcol` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/processor` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/processor/batchprocessor` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/processor/memorylimiterprocessor` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/receiver` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/receiver/otlpreceiver` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal` from 0.96.0 to 0.98.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.96.0...v0.98.0)

Updates `github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter` from 0.96.0 to 0.98.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.96.0...v0.98.0)

Updates `github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent` from 0.96.0 to 0.98.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.96.0...v0.98.0)

Updates `github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl` from 0.96.0 to 0.98.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.96.0...v0.98.0)

Updates `github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil` from 0.96.0 to 0.98.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.96.0...v0.98.0)

Updates `github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza` from 0.96.0 to 0.98.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.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/config/configauth` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/config/configcompression` from 0.96.0 to 1.5.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@v0.96.0...pdata/v1.5.0)

Updates `go.opentelemetry.io/collector/config/configgrpc` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/config/confighttp` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/config/confignet` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/config/configopaque` from 1.3.0 to 1.5.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.3.0...pdata/v1.5.0)

Updates `go.opentelemetry.io/collector/config/configretry` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/config/configtelemetry` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/config/configtls` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/config/internal` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/connector` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/consumer` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/extension` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/extension/auth` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/pdata` from 1.3.0 to 1.5.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.3.0...pdata/v1.5.0)

Updates `go.opentelemetry.io/collector/semconv` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

Updates `go.opentelemetry.io/collector/service` from 0.96.0 to 0.98.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@v0.96.0...v0.98.0)

---
updated-dependencies:
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/transformprocessor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/component
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/confmap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/confmap/converter/expandconverter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/confmap/provider/envprovider
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/confmap/provider/fileprovider
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/confmap/provider/httpprovider
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/confmap/provider/httpsprovider
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/confmap/provider/yamlprovider
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/exporter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/exporter/debugexporter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/exporter/otlpexporter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/featuregate
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/otelcol
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/processor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/processor/batchprocessor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/processor/memorylimiterprocessor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/receiver
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/receiver/otlpreceiver
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/config/configauth
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/config/configcompression
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/config/configgrpc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/config/confighttp
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/config/confignet
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/config/configopaque
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/config/configretry
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/config/configtelemetry
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/config/configtls
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/config/internal
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/connector
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/consumer
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/extension
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/extension/auth
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/pdata
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/semconv
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
- dependency-name: go.opentelemetry.io/collector/service
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: otel-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/otel-dependencies-081351acc5 branch from 95e1275 to ff45f5c Compare April 12, 2024 21:43
Copy link
Contributor

mergify bot commented Apr 15, 2024

This pull request is now in conflicts. Could you fix it? 🙏
To fixup this pull request, you can check out it locally. See documentation: https://help.github.com/articles/checking-out-pull-requests-locally/

git fetch upstream
git checkout -b dependabot/go_modules/otel-dependencies-081351acc5 upstream/dependabot/go_modules/otel-dependencies-081351acc5
git merge upstream/main
git push upstream dependabot/go_modules/otel-dependencies-081351acc5

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 15, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 15, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/otel-dependencies-081351acc5 branch April 15, 2024 14:59
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.

1 participant