Skip to content

Commit eca53b2

Browse files
authored
CI fix: pin url for msrv build (#2272)
1 parent 6a079eb commit eca53b2

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ tokio-stream = "0.1"
4747
tracing = { version = "0.1", default-features = false }
4848
tracing-core = { version = "0.1", default-features = false }
4949
tracing-subscriber = { version = "0.3", default-features = false }
50-
url = { version = "2.5", default-features = false }
50+
url = { version = "2.5.2", default-features = false } #https://github.com/servo/rust-url/issues/992

opentelemetry-sdk/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@
3030
- Removed `MeterProvider::versioned_meter`
3131
- Replaced these methods with `LoggerProvider::logger_with_scope`, `TracerProvider::logger_with_scope`, `MeterProvider::meter_with_scope`
3232

33+
- [#2272](https://github.com/open-telemetry/opentelemetry-rust/pull/2272)
34+
- Pin url version to `2.5.2`. The higher version breaks the build refer: [servo/rust-url#992.](https://github.com/servo/rust-url/issues/992)
35+
The `url` crate is used when `jaeger_remote_sampler` feature is enabled.
36+
3337
## v0.26.0
3438
Released 2024-Sep-30
3539

scripts/patch_dependencies.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ function patch_version() {
66
cargo update -p $1:$latest_version --precise $2
77
}
88

9-
9+
patch_version url 2.5.2 #https://github.com/servo/rust-url/issues/992

0 commit comments

Comments
 (0)