Closed hash-worker[bot] closed 3 days ago
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below:
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package opentelemetry@0.26.0 --precise 0.27.0
Updating crates.io index
error: failed to select a version for the requirement `opentelemetry = "^0.26.0"`
candidate versions found which didn't match: 0.27.0
location searched: crates.io index
required by package `tarpc v0.35.0`
... which satisfies dependency `tarpc = "=0.35.0"` (locked to 0.35.0) of package `hash-graph v0.0.0 (/tmp/renovate/repos/github/hashintel/hash/apps/hash-graph)`
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.
This PR contains the following updates:
=0.26.0
->=0.27.0
=0.26.0
->=0.27.0
=0.26.0
->=0.27.0
=0.27.0
->=0.28.0
Release Notes
open-telemetry/opentelemetry-rust (opentelemetry)
### [`v0.27.0`](https://redirect.github.com/open-telemetry/opentelemetry-rust/releases/tag/opentelemetry-0.27.0): 0.27.0 Release [Compare Source](https://redirect.github.com/open-telemetry/opentelemetry-rust/compare/opentelemetry-0.26.0...opentelemetry-0.27.0) 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`](https://redirect.github.com/open-telemetry/opentelemetry-rust/blob/HEAD/opentelemetry-otlp/CHANGELOG.md#0270) [Compare Source](https://redirect.github.com/open-telemetry/opentelemetry-rust/compare/opentelemetry-otlp-0.26.0...opentelemetry-otlp-0.27.0) 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](https://redirect.github.com/open-telemetry/opentelemetry-rust/pull/2217)) **Replaced**: The `MetricsExporterBuilder` interface is modified from `with_temporality_selector` to `with_temporality` example can be seen below: Previous Signature: ```rust MetricsExporterBuilder::default().with_temporality_selector(DeltaTemporalitySelector::new()) ``` Updated Signature: ```rust MetricsExporterBuilder::default().with_temporality(opentelemetry_sdk::metrics::Temporality::Delta) ``` - ([#2221](https://redirect.github.com/open-telemetry/opentelemetry-rust/pull/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](https://redirect.github.com/open-telemetry/opentelemetry-rust/pull/2221) has a detailed migration guide in the description. See example below, and [basic-otlp](https://redirect.github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-otlp/examples/basic-otlp/src/main.rs) for more details: Previous Signature: ```rust 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: ```rust 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](https://redirect.github.com/open-telemetry/opentelemetry-rust/pull/2255)): de-pluralize Metric types. - `MetricsExporter` -> `MetricExporter` - `MetricsExporterBuilder` -> `MetricExporterBuilder` - [#2263](https://redirect.github.com/open-telemetry/opentelemetry-rust/pull/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-httptokio-rs/tracing-opentelemetry (tracing-opentelemetry)
### [`v0.28.0`](https://redirect.github.com/tokio-rs/tracing-opentelemetry/releases/tag/v0.28.0): 0.28.0 [Compare Source](https://redirect.github.com/tokio-rs/tracing-opentelemetry/compare/v0.27.0...v0.28.0) #### What's Changed - Reduce locking in the implementation of `Layer::on_close` by [@mzabaluev](https://redirect.github.com/mzabaluev) in [https://github.com/tokio-rs/tracing-opentelemetry/pull/173](https://redirect.github.com/tokio-rs/tracing-opentelemetry/pull/173) - adding support for setting the status of the span through SpanExt by [@webfinesse](https://redirect.github.com/webfinesse) in [https://github.com/tokio-rs/tracing-opentelemetry/pull/176](https://redirect.github.com/tokio-rs/tracing-opentelemetry/pull/176) - Add level metadata to spans by [@mTsBucy1](https://redirect.github.com/mTsBucy1) in [https://github.com/tokio-rs/tracing-opentelemetry/pull/182](https://redirect.github.com/tokio-rs/tracing-opentelemetry/pull/182) - chore: update opentelemetry dependencies to 0.27.0 by [@MathiasPius](https://redirect.github.com/MathiasPius) in [https://github.com/tokio-rs/tracing-opentelemetry/pull/184](https://redirect.github.com/tokio-rs/tracing-opentelemetry/pull/184)Configuration
📅 Schedule: Branch creation - "before 4am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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.
This PR has been generated by Renovate Bot.