From d2c50530e91fa7882457bd15163d257d8cf137c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Aug 2022 07:02:21 +0200 Subject: [PATCH] build(deps): Update prometheus-client requirement from 0.17.0 to 0.18.0 (#2822) * build(deps): Update prometheus-client requirement from 0.17.0 to 0.18.0 Updates the requirements on [prometheus-client](https://github.com/prometheus/client_rust) to permit the latest version. - [Release notes](https://github.com/prometheus/client_rust/releases) - [Changelog](https://github.com/prometheus/client_rust/blob/master/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_rust/compare/v0.17.0...v0.18.0) --- updated-dependencies: - dependency-name: prometheus-client dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- misc/metrics/CHANGELOG.md | 4 ++-- misc/metrics/Cargo.toml | 2 +- protocols/gossipsub/CHANGELOG.md | 4 ++-- protocols/gossipsub/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/misc/metrics/CHANGELOG.md b/misc/metrics/CHANGELOG.md index 06e2163597e..014a4a84ffe 100644 --- a/misc/metrics/CHANGELOG.md +++ b/misc/metrics/CHANGELOG.md @@ -16,9 +16,9 @@ - Update to `libp2p-core` `v0.35.0`. -- Update to `prometheus-client` `v0.17.0`. See [PR 2761]. +- Update to `prometheus-client` `v0.18.0`. See [PR 2822]. -[PR 2761]: https://github.com/libp2p/rust-libp2p/pull/2761/ +[PR 2822]: https://github.com/libp2p/rust-libp2p/pull/2761/ [PR 2734]: https://github.com/libp2p/rust-libp2p/pull/2734/ diff --git a/misc/metrics/Cargo.toml b/misc/metrics/Cargo.toml index 7ccd259e535..4bfeb7aa481 100644 --- a/misc/metrics/Cargo.toml +++ b/misc/metrics/Cargo.toml @@ -26,7 +26,7 @@ libp2p-kad = { version = "0.39.0", path = "../../protocols/kad", optional = true libp2p-ping = { version = "0.38.0", path = "../../protocols/ping", optional = true } libp2p-relay = { version = "0.11.0", path = "../../protocols/relay", optional = true } libp2p-swarm = { version = "0.38.0", path = "../../swarm" } -prometheus-client = "0.17.0" +prometheus-client = "0.18.0" [target.'cfg(not(target_os = "unknown"))'.dependencies] libp2p-gossipsub = { version = "0.40.0", path = "../../protocols/gossipsub", optional = true } diff --git a/protocols/gossipsub/CHANGELOG.md b/protocols/gossipsub/CHANGELOG.md index 233d3873e98..c7bb155b3c9 100644 --- a/protocols/gossipsub/CHANGELOG.md +++ b/protocols/gossipsub/CHANGELOG.md @@ -4,9 +4,9 @@ - Update to `libp2p-core` `v0.35.0`. -- Update to `prometheus-client` `v0.17.0`. See [PR 2761]. +- Update to `prometheus-client` `v0.18.0`. See [PR 2822]. -[PR 2761]: https://github.com/libp2p/rust-libp2p/pull/2761/ +[PR 2822]: https://github.com/libp2p/rust-libp2p/pull/2761/ # 0.39.0 diff --git a/protocols/gossipsub/Cargo.toml b/protocols/gossipsub/Cargo.toml index 5c7f2a16e8f..42b21e41a97 100644 --- a/protocols/gossipsub/Cargo.toml +++ b/protocols/gossipsub/Cargo.toml @@ -31,7 +31,7 @@ serde = { version = "1", optional = true, features = ["derive"] } wasm-timer = "0.2.5" instant = "0.1.11" # Metrics dependencies -prometheus-client = "0.17.0" +prometheus-client = "0.18.0" [dev-dependencies] async-std = "1.6.3"