fix(deps): update opentelemetry-rust monorepo to 0.27.0#2443
Closed
renovate[bot] wants to merge 1 commit intomainfrom
Closed
fix(deps): update opentelemetry-rust monorepo to 0.27.0#2443renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
efc06ec to
add0309
Compare
031199a to
193d095
Compare
12ab894 to
de1eefe
Compare
|
Action required: PR inactive for 5 days. |
de1eefe to
18d3b35
Compare
18d3b35 to
33f792e
Compare
33f792e to
c453cb6
Compare
|
Action required: PR inactive for 5 days. |
|
PR closed after 10 days of inactivity. |
auto-merge was automatically disabled
January 10, 2025 11:03
Pull request was closed
Contributor
Author
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update ( If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.23.0->0.27.00.4.0->0.27.00.12.0->0.27.00.16.0->0.27.00.16.0->0.27.00.15.0->0.27.00.4.0->0.27.00.23.0->0.27.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
open-telemetry/opentelemetry-rust (opentelemetry)
v0.27.1: patch releaseCompare Source
Refer to opentelemetry-sdk CHANGELOG for the changes.
v0.27.0: 0.27.0 ReleaseCompare 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
v0.26.0: 0.26.0 ReleaseCompare Source
See changelog for individual crates to know the exact set of changes. As informed during previous release, all crates from this repo follows same version (0.26.0 for this release).
This release also upgrades Metric API (part of
opentelemetrycrate) from alpha to beta.v0.25.0: OpenTelemetry 0.25.0 ReleaseCompare Source
See changelog for individual crates to know the exact set of changes. This release onwards, all crates from this repo follows same version (0.25.0 for today's release).
v0.24.0Compare Source
See individual crate changelogs for details.
open-telemetry/opentelemetry-rust (opentelemetry-appender-tracing)
v0.27.0Compare Source
Released 2024-Nov-11
Update
opentelemetrydependency version to 0.27Bump MSRV to 1.70 #2179
Breaking 2291 Rename
logs_level_enabled flagtospec_unstable_logs_enabled. Please enable this updated flag if the feature is needed. This flag will be removed once the feature is stabilized in the specifications.v0.26.0Compare Source
Released 2024-Sep-30
opentelemetrydependency version to 0.26logevents emitted via thetracingpipeline using thelog-tracingcrate no longer include the target metadata as attributes. Exporters or backends that rely on this attribute should now access the target directly from theLogRecord::targetfield.v0.25.0Compare Source
opentelemetrydependency version to 0.25opentelemetrycrateon major,minor versions.
&'static strforSeverityText.v0.5.0Compare Source
1869 Utilize the
LogRecord::set_target()method to pass the tracing target to the SDK.Exporters might use the target to override the instrumentation scope, which previously contained "opentelemetry-appender-tracing".
Breaking 1928 Insert tracing event name into LogRecord::event_name instead of attributes.
Update
opentelemetrydependency version to 0.24open-telemetry/opentelemetry-rust (opentelemetry-otlp)
v0.27.0Compare Source
Released 2024-Nov-11
Update
opentelemetrydependency version to 0.27Update
opentelemetry_sdkdependency version to 0.27Update
opentelemetry-httpdependency version to 0.27Update
opentelemetry-protodependency version to 0.27BREAKING:
(#2217) Replaced: The
MetricsExporterBuilderinterface is modified fromwith_temporality_selectortowith_temporalityexample can be seen below:Previous Signature:
Updated Signature:
(#2221) Replaced:
opentelemetry_otlp::new_pipeline().{trace,logging,metrics}()interface is now replaced with{TracerProvider,SdkMeterProvider,LoggerProvider}::builder().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:
Updated Signature:
Renamed
MetricsExporter->MetricExporterMetricsExporterBuilder->MetricExporterBuilder#2263
Support
hyperclient for opentelemetry-otlp. This can be enabled using flaghyper-client.Refer example: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-otlp/examples/basic-otlp-http
v0.26.0Compare Source
Released 2024-Sep-30
opentelemetrydependency version to 0.26opentelemetry_sdkdependency version to 0.26opentelemetry-httpdependency version to 0.26opentelemetry-protodependency version to 0.26v0.25.0Compare Source
opentelemetrydependency version to 0.25opentelemetry_sdkdependency version to 0.25opentelemetry-httpdependency version to 0.25opentelemetry-protodependency version to 0.25opentelemetrycrateon major,minor versions.
The logrecord event-name is added as an attribute only if the feature flag
populate-logs-event-nameis enabled. The name of the attribute is changed from"name" to "event.name".
1994,
2050
v0.17.0Compare Source
"trace", "metrics" and "logs".
OtlpMetricPipeline.build()no longer invoke theglobal::set_meter_provider. User who setup the pipeline must do itthemselves using
global::set_meter_provider(meter_provider.clone());.with_resourceonOtlpLogPipeline, replacing thewith_configmethod.Instead of using
.with_config(Config::default().with_resource(RESOURCE::default()))users mustnow use
.with_resource(RESOURCE::default())to configure Resource when usingOtlpLogPipeline.OtlpTracePipeline::install_simple()andOtlpTracePipeline::install_batch()would now returnTracerProviderinstead ofTracer.These methods would also no longer set the global tracer provider. It would now be the responsibility of users to set it by calling
global::set_tracer_provider(tracer_provider.clone());. Refer to the basic-otlp and basic-otlp-http examples on how to initialize OTLP Trace Exporter.previous release.
targetfromLogRecord, if target is populated.LogRecordandSpanby their resource and instrumentation scope before exporting, for better efficiency #1873.httpv1 andtonicv0.12 #1674opentelemetrydependency version to 0.24opentelemetry_sdkdependency version to 0.24opentelemetry-httpdependency version to 0.13opentelemetry-protodependency version to 0.7open-telemetry/opentelemetry-rust (opentelemetry-semantic-conventions)
v0.27.0Compare Source
Released 2024-Nov-11
v0.26.0Compare Source
Released 2024-Sep-30
Changed
the semantic conventions.
semconv_experimentalto enable experimental semantic conventions.This feature is disabled by default.
v0.25.0Compare Source
Changed
opentelemetrycrateon major,minor versions.
#2000
v0.16.0Compare Source
Changed
opentelemetry_semantic_conventions::traceandopentelemetry_semantic_conventions::resourceintoopentelemetry_semantic_conventions::attribute(which now contains all semantic attributes).traceandresourcenow only contain references to attributes which fall under their respective category.Added
opentelemetry_semantic_conventions::metricto store metric semantic conventions.open-telemetry/opentelemetry-rust (opentelemetry-stdout)
v0.27.0Compare Source
Released 2024-Nov-11
Update
opentelemetrydependency version to 0.27Update
opentelemetry_sdkdependency version to 0.27Bump MSRV to 1.70 #2179
BREAKING
MetricsExporterBuilderinterface is modified fromwith_temporality_selectortowith_temporalityexample can be seen below:Previous Signature:
MetricsExporter->MetricExporterMetricsExporterBuilder->MetricExporterBuilderv0.26.0Compare Source
Released 2024-Sep-30
opentelemetrydependency version to 0.26opentelemetry_sdkdependency version to 0.26v0.25.0Compare Source
opentelemetrydependency version to 0.25opentelemetry_sdkdependency version to 0.25opentelemetrycrateon major,minor versions.
key
nameonly if the feature flagpopulate-logs-event-nameis enabled.v0.5.0Compare Source
opentelemetrydependency version to 0.24opentelemetry_sdkdependency version to 0.24Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.