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

fix(deps): update opentelemetry #77

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 12, 2024

This PR contains the following updates:

Package Type Update Change
opentelemetry dependencies minor 0.26 -> 0.27
opentelemetry-http dependencies minor 0.26 -> 0.27
opentelemetry-otlp (source) dependencies minor 0.26 -> 0.27
opentelemetry-semantic-conventions (source) dependencies minor 0.26 -> 0.27
opentelemetry-zipkin (source) dependencies minor 0.26 -> 0.27
opentelemetry_sdk dependencies minor 0.26 -> 0.27
tracing-opentelemetry dependencies minor 0.27 -> 0.28
tracing-opentelemetry-instrumentation-sdk (source) dependencies minor 0.23 -> 0.24

Release Notes

open-telemetry/opentelemetry-rust (opentelemetry)

v0.27.0: 0.27.0 Release

Compare Source

See changelog for individual crates to know the exact set of changes. All crates in this repo follows same version (0.27.0 for this release).

This release also upgrades

  • Logs API to RC
  • Metrics API to RC
  • Metrics SDK to Beta
  • Metrics OTLP Exporter to Beta.
open-telemetry/opentelemetry-rust (opentelemetry-otlp)

v0.27.0

Compare Source

Released 2024-Nov-11

  • Update opentelemetry dependency version to 0.27

  • Update opentelemetry_sdk dependency version to 0.27

  • Update opentelemetry-http dependency version to 0.27

  • Update opentelemetry-proto dependency version to 0.27

  • BREAKING:

    • (#​2217) Replaced: The MetricsExporterBuilder interface is modified from with_temporality_selector to with_temporality example can be seen below:
      Previous Signature:

      MetricsExporterBuilder::default().with_temporality_selector(DeltaTemporalitySelector::new())

      Updated Signature:

      MetricsExporterBuilder::default().with_temporality(opentelemetry_sdk::metrics::Temporality::Delta)
    • (#​2221) Replaced:

      • The opentelemetry_otlp::new_pipeline().{trace,logging,metrics}() interface is now replaced with {TracerProvider,SdkMeterProvider,LoggerProvider}::builder().
      • The opentelemetry_otlp::new_exporter() interface is now replaced with {SpanExporter,MetricsExporter,LogExporter}::builder().

      Pull request #​2221 has a detailed migration guide in the description. See example below,
      and basic-otlp for more details:

      Previous Signature:

      let logger_provider: LoggerProvider = opentelemetry_otlp::new_pipeline()
        .logging()
        .with_resource(RESOURCE.clone())
        .with_exporter(
            opentelemetry_otlp::new_exporter()
                .tonic()
                .with_endpoint("http://localhost:4317")
        )
        .install_batch(runtime::Tokio)?;

      Updated Signature:

      let exporter = LogExporter::builder()
          .with_tonic()
          .with_endpoint("http://localhost:4317")
          .build()?;
      
      Ok(LoggerProvider::builder()
          .with_resource(RESOURCE.clone())
          .with_batch_exporter(exporter, runtime::Tokio)
          .build())
    • Renamed

      • (#​2255): de-pluralize Metric types.
        • MetricsExporter -> MetricExporter
        • MetricsExporterBuilder -> MetricExporterBuilder
    • #​2263
      Support hyper client for opentelemetry-otlp. This can be enabled using flag hyper-client.
      Refer example: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-otlp/examples/basic-otlp-http

open-telemetry/opentelemetry-rust (opentelemetry-semantic-conventions)

v0.27.0

Compare Source

Released 2024-Nov-11

  • Bump MSRV to 1.70 #​2179
  • Update to v1.28.0 of the semantic conventions.
open-telemetry/opentelemetry-rust (opentelemetry-zipkin)

v0.27.0

Compare Source

Released 2024-Nov-11

  • Update opentelemetry dependency version to 0.27

  • Update opentelemetry_sdk dependency version to 0.27

  • Update opentelemetry-http dependency version to 0.27

  • Update opentelemetry-semantic-conventions dependency version to 0.27

  • Bump MSRV to 1.70 #​2179

tokio-rs/tracing-opentelemetry (tracing-opentelemetry)

v0.28.0: 0.28.0

Compare Source

What's Changed
davidB/tracing-opentelemetry-instrumentation-sdk (tracing-opentelemetry-instrumentation-sdk)

v0.24.0

Compare Source

Fixed
  • 🐛 workaround for a delay, batch,... behavior in otlp exporter and test with fake-opentelemetry-collector (closed too early)
  • 🐛 fix build of contributions (upgrade of opentelemetry, fake collector for logs,...)
  • 🐛 Re-export tracing_level_info feature from axum to sdk (#​147)
Changed
  • 💄 update deprecated syntax "default_features" in Cargo.toml
  • ⬆️ upgrade to rstest 0.22

Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/opentelemetry branch from 8fb4700 to d4bc974 Compare November 13, 2024 22:54
@renovate renovate bot changed the title fix(deps): update opentelemetry to 0.27 fix(deps): update opentelemetry Nov 13, 2024
@renovate renovate bot force-pushed the renovate/opentelemetry branch from d4bc974 to 8d8aea4 Compare November 17, 2024 13:06
@renovate renovate bot force-pushed the renovate/opentelemetry branch from 8d8aea4 to 0e0fe41 Compare November 18, 2024 10:38
Copy link
Contributor Author

renovate bot commented Nov 18, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant