Skip to content

Commit 3c6d251

Browse files
committed
fix: Bump MSRV to 1.85 due to dependency conflict at 1.80/1.81
1 parent 36a8911 commit 3c6d251

14 files changed

Lines changed: 20 additions & 14 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010
resolver = "2"
1111

1212
[workspace.package]
13-
rust-version = "1.80.0"
13+
rust-version = "1.85.0"
1414
# Avoid applying patch to force use of workspace members for this
1515
# not actively maintained crate
1616
exclude = ["opentelemetry-prometheus"]

deny.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ allow = [
77
"Apache-2.0",
88
"ISC",
99
"BSD-3-Clause",
10+
"Zlib",
1011
]
1112

1213
exceptions = [
1314
{ allow = ["CDLA-Permissive-2.0"], crate = "webpki-roots" }, # This crate is a dependency of `reqwest`.
15+
{ allow = ["CDLA-Permissive-2.0"], crate = "webpki-root-certs" }, # This crate is a dependency of `reqwest`.
16+
{ allow = ["OpenSSL"], crate = "aws-lc-sys" }, # This crate is a dependency of `reqwest`.
1417
{ allow = ["Unicode-3.0"], crate = "icu_collections" }, # This crate gets used transitively by `reqwest`.
1518
{ allow = ["Unicode-3.0"], crate = "icu_locid" }, # This crate gets used transitively by `reqwest`.
1619
{ allow = ["Unicode-3.0"], crate = "icu_locid_transform" }, # This crate gets used transitively by `reqwest`.

opentelemetry-appender-log/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## vNext
44

5-
- Bump MSRV to 1.80.0
5+
- Bump MSRV to 1.85.0
66
- "spec_unstable_logs_enabled" feature flag is removed. The capability (and the
77
backing specification) is now stable and is enabled by default.
88
[3278](https://github.com/open-telemetry/opentelemetry-rust/pull/3278)

opentelemetry-appender-tracing/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## vNext
44

5-
- Bump MSRV to 1.80.0
5+
- Bump MSRV to 1.85.0
66
- New *experimental* feature to enrich log records with attributes from active
77
tracing spans (`experimental_span_attributes`). Use
88
`OpenTelemetryTracingBridge::builder()` with `with_span_attribute_allowlist`

opentelemetry-http/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## vNext
44

5-
- Bump MSRV to 1.80.0
5+
- Bump MSRV to 1.85.0
66
- `reqwest`'s crypto backend has changed from `ring` to `aws-lc-sys`.
77

88
## 0.31.0

opentelemetry-jaeger-propagator/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## vNext
44

5-
- Bump MSRV to 1.80.0
5+
- Bump MSRV to 1.85.0
66

77
## 0.31.0
88

opentelemetry-otlp/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## vNext
44

55
- Add `tls-provider-agnostic` feature flag for environments that require a custom crypto backend (e.g., OpenSSL for FIPS compliance). Enables TLS code paths without bundling `ring` or `aws-lc-rs`.
6-
- Bump MSRV to 1.80.0
6+
- Bump MSRV to 1.85.0
77
- Add `build()` directly on `SpanExporterBuilder`, `MetricExporterBuilder`, and `LogExporterBuilder`
88
(before selecting a transport), which auto-selects the transport based on the
99
`OTEL_EXPORTER_OTLP_PROTOCOL` environment variable or enabled features.

opentelemetry-prometheus/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## vNext
44

5+
- Bump MSRV to 1.85.0
6+
57
## v0.31.1
68

79
- Remove `protobuf` dependency from `prometheus`

opentelemetry-prometheus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = [
1313
keywords = ["opentelemetry", "prometheus", "metrics", "async"]
1414
license = "Apache-2.0"
1515
edition = "2021"
16-
rust-version = "1.80.0"
16+
rust-version = "1.85.0"
1717

1818
[package.metadata.docs.rs]
1919
all-features = true

opentelemetry-proto/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## vNext
44

5-
- Bump MSRV to 1.80.0
5+
- Bump MSRV to 1.85.0
66
- Updated `schemars` dependency to version 1.0.0.
77

88
## 0.31.0

0 commit comments

Comments
 (0)