From edef0e08960efd5ef192b5d6190f3ec8ab6dda48 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 09:50:00 +1300 Subject: [PATCH] Update sysinfo requirement from 0.31.2 to 0.32.0 (#288) * Update sysinfo requirement from 0.31.2 to 0.32.0 Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/compare/v0.31.2...v0.32.0) --- updated-dependencies: - dependency-name: sysinfo dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Update changelog Signed-off-by: dependabot[bot] * Fix build Signed-off-by: Thomas Farr --------- Signed-off-by: dependabot[bot] Signed-off-by: Thomas Farr Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] Co-authored-by: Thomas Farr --- CHANGELOG.md | 3 ++- opensearch/Cargo.toml | 2 +- yaml_test_runner/Cargo.toml | 2 +- yaml_test_runner/tests/common/client.rs | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f290bc16..0191757e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Added middleware types to allow intercepting construction and handling of the underlying `reqwest` client & requests ([#232](https://github.com/opensearch-project/opensearch-rs/pull/232)) ### Dependencies +- Bumps `sysinfo` from 0.31.2 to 0.32.0 ### Changed @@ -89,4 +90,4 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) [Unreleased]: https://github.com/opensearch-project/opensearch-rs/compare/v2.3.0...HEAD [2.3.0]: https://github.com/opensearch-project/opensearch-rs/compare/v2.2.0...v2.3.0 [2.2.0]: https://github.com/opensearch-project/opensearch-rs/compare/v2.1.0...v2.2.0 -[2.1.0]: https://github.com/opensearch-project/opensearch-rs/compare/v2.0.0...v2.1.0 +[2.1.0]: https://github.com/opensearch-project/opensearch-rs/compare/v2.0.0...v2.1.0 \ No newline at end of file diff --git a/opensearch/Cargo.toml b/opensearch/Cargo.toml index 636d0c23..a73a6047 100644 --- a/opensearch/Cargo.toml +++ b/opensearch/Cargo.toml @@ -57,7 +57,7 @@ futures = "0.3.1" http-body-util = "0.1.0" hyper = { version = "1", features = ["full"] } hyper-util = { version = "0.1", features = ["full"] } -sysinfo = "0.31.2" +sysinfo = "0.32.0" test-case = "3" textwrap = "0.16" tokio = { version = "1", features = ["full"] } diff --git a/yaml_test_runner/Cargo.toml b/yaml_test_runner/Cargo.toml index 2f0406d6..d215cee1 100644 --- a/yaml_test_runner/Cargo.toml +++ b/yaml_test_runner/Cargo.toml @@ -31,7 +31,7 @@ serde_yaml = "0.9" serde_json = { version = "1", features = ["arbitrary_precision"] } simple_logger = "5.0.0" syn = { version = "2.0", features = ["full"] } -sysinfo = "0.31" +sysinfo = "0.32" url = "2.1.1" tar = "0.4" flate2 = "1" diff --git a/yaml_test_runner/tests/common/client.rs b/yaml_test_runner/tests/common/client.rs index 96412c72..aa3682c5 100644 --- a/yaml_test_runner/tests/common/client.rs +++ b/yaml_test_runner/tests/common/client.rs @@ -61,7 +61,7 @@ fn cluster_addr() -> String { /// Determines if Fiddler.exe proxy process is running fn running_proxy() -> bool { let mut system = sysinfo::System::new(); - system.refresh_processes(sysinfo::ProcessesToUpdate::All); + system.refresh_processes(sysinfo::ProcessesToUpdate::All, true); let running = system .processes_by_name(OsStr::new("Fiddler")) .next()