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 go.opentelemetry.io/collector/pdata from 1.16.0 to 1.17.0 in /sdk #1164

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 6, 2024

Bumps go.opentelemetry.io/collector/pdata from 1.16.0 to 1.17.0.

Release notes

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

v1.17.0/v0.111.0

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

End User Changelog

This release removes the logging exporter. See #11337 to migrate to the debug exporter.

🛑 Breaking changes 🛑

  • service/telemetry: Change default metrics address to "localhost:8888" instead of ":8888" (#11251) This behavior can be disabled by disabling the feature gate telemetry.UseLocalHostAsDefaultMetricsAddress.
  • loggingexporter: Removed the deprecated logging exporter. Use the debug exporter instead. (#11037). You can read issue #11337 for migration instructions.

🚩 Deprecations 🚩

  • service/telemetry: Deprecate service::telemetry::metrics::address in favor of service::telemetry::metrics::readers. (#11205)
  • processorhelper: Deprecate BuildProcessorMetricName as it's no longer needed since introduction of mdatagen (#11302)

💡 Enhancements 💡

  • ocb: create docker images for OCB, per open-telemetry/opentelemetry-collector-releases#671 (#5712) Adds standard Docker images for OCB to Dockerhub and GitHub, see hub.docker.com/r/otel/opentelemetry-collector-builder
  • confighttp: Snappy compression to lazy read for memory efficiency (#11177)
  • httpsprovider: Mark the httpsprovider as stable. (#11191)
  • httpprovider: Mark the httpprovider as stable. (#11191)
  • yamlprovider: Mark the yamlprovider as stable. (#11192)
  • confmap: Allow using any YAML structure as a string when loading configuration including time.Time formats (#10659) Previously, fields with time.Time formats could not be used as strings in configurations

🧰 Bug fixes 🧰

  • processorhelper: Fix data race condition, concurrent writes to the err variable, causes UB (Undefined Behavior) (#11350)
  • cmd/builder: re-adds function to properly set and view version number of OpenTelemetry Collector Builder (ocb) binaries (#11208)
  • pdata: Unmarshal Span and SpanLink flags from JSON (#11267)

API Changes

🛑 Breaking changes 🛑

  • service/telemetry: Change default metrics address to "localhost:8888" instead of ":8888" (#11251) This behavior can be disabled by disabling the feature gate 'telemetry.UseLocalHostAsDefaultMetricsAddress'.
  • componentprofiles: Removed deprecated DataTypeProfiles. Use SignalProfiles instead. (#11312)
  • configgrpc: Replace ToClientConn and ToServer with ToClientConnWithOptions and ToServerWithOptions. (#11271, #9480) ClientConfig.ToClientConn and ServerConfig.ToServer were deprecated in v0.110.0 in favor of ClientConfig.ToClientConnWithOptions and ServerConfig.ToServerWithOptions which use a more flexible option type. The original functions are now removed, and the new ones are renamed to the old names. The WithOptions names are kept as deprecated aliases for now.

... (truncated)

Changelog

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

v1.17.0/v0.111.0

🛑 Breaking changes 🛑

  • service/telemetry: Change default metrics address to "localhost:8888" instead of ":8888" (#11251) This behavior can be disabled by disabling the feature gate 'telemetry.UseLocalHostAsDefaultMetricsAddress'.

  • componentprofiles: Removed deprecated DataTypeProfiles. Use SignalProfiles instead. (#11312)

  • configgrpc: Replace ToClientConn and ToServer with ToClientConnWithOptions and ToServerWithOptions. (#11271, #9480) ClientConfig.ToClientConn and ServerConfig.ToServer were deprecated in v0.110.0 in favor of ClientConfig.ToClientConnWithOptions and ServerConfig.ToServerWithOptions which use a more flexible option type. The original functions are now removed, and the new ones are renamed to the old names. The WithOptions names are kept as deprecated aliases for now.

  • exporterhelper: Removed deprecated QueueTimeout/TimeoutSettings aliases in favor of QueueConfig/TimeoutConfig. (#11264, #6767) NewDefaultQueueSettings and NewDefaultTimeoutSettings have been similarly renamed.

  • exporterqueue: Remove deprecated Settings.DataType. Use Settings.Signal instead. (#11305)

  • exportertest: Remove deprecated CheckConsumeContractParams.DataType. Use CheckConsumeContractParams.Signal instead. (#11305)

  • component: Removed deprecated ErrDataTypeIsNotSupported, DataType, DataTypeTraces, DataTypeMetrics, and DataTypeLogs. Use pipeline.ErrSignalNotSupported, pipeline.Signal, pipeline.SignalTraces, pipeline.SignalMetrics, and pipeline.SignalLogs instead. (#11253)

  • pdata/pprofile: Replace slices of values to slices of pointers for the Mapping, Location, Line, Function, AttributeUnit, Link, Value, Sample and Labels attributes. (#11339)

  • receivertest: Remove deprecated CheckConsumeContractParams.DataType. Use CheckConsumeContractParams.Signal instead. (#11304)

  • scraperhelper: Remove deprecated function NewScraperWithComponentType. (#11294)

  • processorhelper: Remove deprecated funcs form processorhelper.ObsReport (#11289) The "otelcol_processor_dropped_log_records", "otelcol_processor_dropped_log_records" | and "otelcol_processor_dropped_spans" metrics are complete removed, before they were always record with 0 values.

🚩 Deprecations 🚩

  • componentstatus: Deprecated NewInstanceIDWithPipelineIDs, AllPipelineIDsWithPipelineIDs, and WithPipelineIDs. Use NewInstanceID, AllPipelineIDs, and WithPipelines instead. (#11313)

  • processorhelper: Deprecate unused and empty struct processorhelper.ObsReport (#11293)

  • processor: Deprecate funcs that repeat "processor" in name (#11310) Factory.Create[Traces|Metrics|Logs|Profiles]Processor -> Factory.Create[Traces|Metrics|Logs|Profiles] Factory.[Traces|Metrics|Logs|Profiles]ProcessorStability -> Factory.[Traces|Metrics|Logs|Profiles]Stability

  • receiver: Deprecate funcs that repeat "receiver" in name (#11287) Factory.Create[Traces|Metrics|Logs|Profiles]Receiver -> Factory.Create[Traces|Metrics|Logs|Profiles] Factory.[Traces|Metrics|Logs|Profiles]ReceiverStability -> Factory.[Traces|Metrics|Logs|Profiles]Stability

  • receivertest: Deprecated NewNopFactoryForTypeWithSignal. Use NewNopFactoryForType instead. (#11304)

  • service: Deprecates Config.PipelinesWithPipelineID, pipelines.ConfigWithPipelineID and GetExportersWithSignal interface implementation. Use Config.Pipelines, pipelines.Config, and GetExporters interface implementation instead. (#11303)

Commits
  • 080b765 [chore] Prepare release v1.17.0/v0.111.0 (#11353)
  • d6cd593 Fix data race condition, concurrent writes to the err variable, causes Undefi...
  • 2d25853 Use slices of pointers in pprofile (#11339)
  • f9d44de [exporter/logging] Remove logging exporter (#11037)
  • 4ace638 [chore][graph] Decompose buildConnector (#11330)
  • 69ff46b [exporter/otlphttpexporter] Remove unnecessary nil assignment in default clie...
  • a24f914 Fix false fuzzer crash (#11326)
  • af27e16 [chore][graph] Split test file (#11329)
  • dfa6b6e [component] Remove deprecated DataType (#11253)
  • d8106f5 [chore]: deprecate and remove BuildProcessorMetricName (#11328)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested a review from a team as a code owner October 6, 2024 11:42
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code Skip Changelog labels Oct 6, 2024
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 2c230fa to 2dc6f93 Compare October 7, 2024 05:32
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 2dc6f93 to 576b481 Compare October 7, 2024 05:59
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 576b481 to 13f3d54 Compare October 7, 2024 08:22
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 13f3d54 to d90d7d5 Compare October 7, 2024 08:33
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from d90d7d5 to 5508f1e Compare October 7, 2024 08:41
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 5508f1e to a68667a Compare October 7, 2024 08:49
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from a68667a to 04dfa90 Compare October 7, 2024 08:58
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 04dfa90 to f76c336 Compare October 7, 2024 09:08
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from f76c336 to 5de9329 Compare October 7, 2024 09:19
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 5de9329 to e978501 Compare October 7, 2024 09:28
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from e978501 to baa913b Compare October 7, 2024 09:49
@MrAlias
Copy link
Contributor

MrAlias commented Oct 7, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from baa913b to d5472fb Compare October 7, 2024 10:08
@MrAlias
Copy link
Contributor

MrAlias commented Oct 8, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from d5472fb to 26eeebf Compare October 8, 2024 07:26
@MrAlias
Copy link
Contributor

MrAlias commented Oct 8, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 26eeebf to 5a8f16e Compare October 8, 2024 07:31
@MrAlias
Copy link
Contributor

MrAlias commented Oct 8, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 5a8f16e to 2fbb668 Compare October 8, 2024 07:57
@MrAlias
Copy link
Contributor

MrAlias commented Oct 8, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 2fbb668 to 8f45a01 Compare October 8, 2024 08:08
@MrAlias
Copy link
Contributor

MrAlias commented Oct 8, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 8f45a01 to bfc52b9 Compare October 8, 2024 08:25
@MrAlias
Copy link
Contributor

MrAlias commented Oct 8, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from bfc52b9 to e0bcc2d Compare October 8, 2024 08:33
@MrAlias
Copy link
Contributor

MrAlias commented Oct 8, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from e0bcc2d to bf3d43f Compare October 8, 2024 08:41
@MrAlias
Copy link
Contributor

MrAlias commented Oct 8, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from bf3d43f to d667006 Compare October 8, 2024 08:51
@MrAlias
Copy link
Contributor

MrAlias commented Oct 8, 2024

@dependabot update

@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from d667006 to 1804880 Compare October 8, 2024 09:03
@MrAlias
Copy link
Contributor

MrAlias commented Oct 8, 2024

@dependabot rebase

Bumps [go.opentelemetry.io/collector/pdata](https://github.com/open-telemetry/opentelemetry-collector) from 1.16.0 to 1.17.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.16.0...pdata/v1.17.0)

---
updated-dependencies:
- dependency-name: go.opentelemetry.io/collector/pdata
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch from 1804880 to 4c692e0 Compare October 8, 2024 09:13
@MrAlias MrAlias merged commit a1b6453 into main Oct 8, 2024
26 checks passed
@MrAlias MrAlias deleted the dependabot/go_modules/sdk/go.opentelemetry.io/collector/pdata-1.17.0 branch October 8, 2024 09:20
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 Skip Changelog
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant