Changelog
*Sourced from [psutil's changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst).*
> 5.5.0
> =====
>
> 2019-0-23
>
> **Enhancements**
>
> - 1350_: [FreeBSD] added support for sensors_temperatures(). (patch by Alex
> Manuskin)
> - 1352_: [FreeBSD] added support for CPU frequency. (patch by Alex Manuskin)
>
> **Bug fixes**
>
> - 1111_: Process.oneshot() is now thread safe.
> - 1354_: [Linux] disk_io_counters() fails on Linux kernel 4.18+.
> - 1357_: [Linux] Process' memory_maps() and io_counters() method are no longer
> exposed if not supported by the kernel.
> - 1368_: [Windows] fix psutil.Process().ionice(...) mismatch. (patch by
> EccoTheFlintstone)
> - 1370_: [Windows] improper usage of CloseHandle() may lead to override the
> original error code when raising an exception.
> - 1373_: incorrect handling of cache in Process.oneshot() context causes
> Process instances to return incorrect results.
> - 1376_: [Windows] OpenProcess() now uses PROCESS_QUERY_LIMITED_INFORMATION
> access rights wherever possible, resulting in less AccessDenied exceptions
> being thrown for system processes.
> - 1376_: [Windows] check if variable is NULL before free()ing it. (patch by
> EccoTheFlintstone)
>
> 5.4.8
> =====
>
> 2018-10-30
>
> **Enhancements**
>
> - 1197_: [Linux] cpu_freq() is now implemented by parsing /proc/cpuinfo in case
> /sys/devices/system/cpu/* filesystem is not available.
> - 1310_: [Linux] psutil.sensors_temperatures() now parses /sys/class/thermal
> in case /sys/class/hwmon fs is not available (e.g. Raspberry Pi). (patch
> by Alex Manuskin)
> - 1320_: [Posix] better compilation support when using g++ instead of gcc.
> (patch by Jaime Fullaondo)
>
> **Bug fixes**
>
> - 715_: do not print exception on import time in case cpu_times() fails.
> - 1004_: [Linux] Process.io_counters() may raise ValueError.
> - 1277_: [OSX] available and used memory (psutil.virtual_memory()) metrics are
> not accurate.
> ... (truncated)
Commits
- [`c6b3e92`](https://github.com/giampaolo/psutil/commit/c6b3e929deb182d4db6007548571ad8ddb32bd87) pre-release
- [`1b2148b`](https://github.com/giampaolo/psutil/commit/1b2148b7cbc0f7961a2f1f871371c754348f34db) fix win num_handles() test
- [`4ae4f94`](https://github.com/giampaolo/psutil/commit/4ae4f944c1311f471d8506a92eab8ac52401d623) update readme
- [`b3b5d42`](https://github.com/giampaolo/psutil/commit/b3b5d4293c60bc4390a5a5a39491e985626c9139) fix [#1111](https://github-redirect.dependabot.com/giampaolo/psutil/issues/1111): use a lock to make Process.oneshot() thread safe
- [`495bb45`](https://github.com/giampaolo/psutil/commit/495bb454d12f72f00ea86a5cad196425e3ae2a78) pdate HISTORY
- [`2cdf81d`](https://github.com/giampaolo/psutil/commit/2cdf81db322822ba8fb23ed67523aacb6539da95) [#1373](https://github-redirect.dependabot.com/giampaolo/psutil/issues/1373): different approach to oneshot() cache (pass Process instances around -...
- [`8351fa4`](https://github.com/giampaolo/psutil/commit/8351fa4ff642d997cd478a7d216b661e62a5f696) use PROCESS_QUERY_LIMITED_INFORMATION also for username()
- [`d364283`](https://github.com/giampaolo/psutil/commit/d364283df3b7c42808704f3c7ef99536b1df784b) Linux: refactor _parse_stat_file() and return a dict instead of a list (+ mai...
- [`314ab75`](https://github.com/giampaolo/psutil/commit/314ab75295cbcdc6d8a12f89a08d702795593eca) fix [#1357](https://github-redirect.dependabot.com/giampaolo/psutil/issues/1357): do not expose Process' memory_maps() and io_counters() methods if ...
- [`790292d`](https://github.com/giampaolo/psutil/commit/790292d3902a51800117e9343be918ec1ddecbde) [#1376](https://github-redirect.dependabot.com/giampaolo/psutil/issues/1376) Windows: check if variable is NULL before free()ing it
- Additional commits viewable in [compare view](https://github.com/giampaolo/psutil/compare/release-5.2.2...release-5.5.0)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Bumps psutil from 5.2.2 to 5.5.0.
Changelog
*Sourced from [psutil's changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst).* > 5.5.0 > ===== > > 2019-0-23 > > **Enhancements** > > - 1350_: [FreeBSD] added support for sensors_temperatures(). (patch by Alex > Manuskin) > - 1352_: [FreeBSD] added support for CPU frequency. (patch by Alex Manuskin) > > **Bug fixes** > > - 1111_: Process.oneshot() is now thread safe. > - 1354_: [Linux] disk_io_counters() fails on Linux kernel 4.18+. > - 1357_: [Linux] Process' memory_maps() and io_counters() method are no longer > exposed if not supported by the kernel. > - 1368_: [Windows] fix psutil.Process().ionice(...) mismatch. (patch by > EccoTheFlintstone) > - 1370_: [Windows] improper usage of CloseHandle() may lead to override the > original error code when raising an exception. > - 1373_: incorrect handling of cache in Process.oneshot() context causes > Process instances to return incorrect results. > - 1376_: [Windows] OpenProcess() now uses PROCESS_QUERY_LIMITED_INFORMATION > access rights wherever possible, resulting in less AccessDenied exceptions > being thrown for system processes. > - 1376_: [Windows] check if variable is NULL before free()ing it. (patch by > EccoTheFlintstone) > > 5.4.8 > ===== > > 2018-10-30 > > **Enhancements** > > - 1197_: [Linux] cpu_freq() is now implemented by parsing /proc/cpuinfo in case > /sys/devices/system/cpu/* filesystem is not available. > - 1310_: [Linux] psutil.sensors_temperatures() now parses /sys/class/thermal > in case /sys/class/hwmon fs is not available (e.g. Raspberry Pi). (patch > by Alex Manuskin) > - 1320_: [Posix] better compilation support when using g++ instead of gcc. > (patch by Jaime Fullaondo) > > **Bug fixes** > > - 715_: do not print exception on import time in case cpu_times() fails. > - 1004_: [Linux] Process.io_counters() may raise ValueError. > - 1277_: [OSX] available and used memory (psutil.virtual_memory()) metrics are > not accurate. > ... (truncated)Commits
- [`c6b3e92`](https://github.com/giampaolo/psutil/commit/c6b3e929deb182d4db6007548571ad8ddb32bd87) pre-release - [`1b2148b`](https://github.com/giampaolo/psutil/commit/1b2148b7cbc0f7961a2f1f871371c754348f34db) fix win num_handles() test - [`4ae4f94`](https://github.com/giampaolo/psutil/commit/4ae4f944c1311f471d8506a92eab8ac52401d623) update readme - [`b3b5d42`](https://github.com/giampaolo/psutil/commit/b3b5d4293c60bc4390a5a5a39491e985626c9139) fix [#1111](https://github-redirect.dependabot.com/giampaolo/psutil/issues/1111): use a lock to make Process.oneshot() thread safe - [`495bb45`](https://github.com/giampaolo/psutil/commit/495bb454d12f72f00ea86a5cad196425e3ae2a78) pdate HISTORY - [`2cdf81d`](https://github.com/giampaolo/psutil/commit/2cdf81db322822ba8fb23ed67523aacb6539da95) [#1373](https://github-redirect.dependabot.com/giampaolo/psutil/issues/1373): different approach to oneshot() cache (pass Process instances around -... - [`8351fa4`](https://github.com/giampaolo/psutil/commit/8351fa4ff642d997cd478a7d216b661e62a5f696) use PROCESS_QUERY_LIMITED_INFORMATION also for username() - [`d364283`](https://github.com/giampaolo/psutil/commit/d364283df3b7c42808704f3c7ef99536b1df784b) Linux: refactor _parse_stat_file() and return a dict instead of a list (+ mai... - [`314ab75`](https://github.com/giampaolo/psutil/commit/314ab75295cbcdc6d8a12f89a08d702795593eca) fix [#1357](https://github-redirect.dependabot.com/giampaolo/psutil/issues/1357): do not expose Process' memory_maps() and io_counters() methods if ... - [`790292d`](https://github.com/giampaolo/psutil/commit/790292d3902a51800117e9343be918ec1ddecbde) [#1376](https://github-redirect.dependabot.com/giampaolo/psutil/issues/1376) Windows: check if variable is NULL before free()ing it - Additional commits viewable in [compare view](https://github.com/giampaolo/psutil/compare/release-5.2.2...release-5.5.0)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.