diff options
Diffstat (limited to 'HISTORY.rst')
-rw-r--r-- | HISTORY.rst | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/HISTORY.rst b/HISTORY.rst index f8098ea8..a8e8772a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,30 @@ Bug tracker at https://github.com/giampaolo/psutil/issues -3.0.0 - XXXX-XX-XX +3.0.2 - XXXX-XX-XX +================== + +**Bug fixes** + +- #636: [Windows] Process.memory_info() raise AccessDenied. +- #637: [UNIX] raise exception if trying to send signal to Process PID 0 as it + will affect os.getpid()'s process group instead of PID 0. +- #639: [Linux] Process.cmdline() can be truncated. +- #640: [Linux] *connections functions may swallow errors and return an + incomplete list of connnections. + + +3.0.1 - 2015-06-18 +================== + +**Bug fixes** + +- #632: [Linux] better error message if cannot parse process UNIX connections. +- #634: [Linux] Proces.cmdline() does not include empty string arguments. +- #635: [UNIX] crash on module import if 'enum' package is installed on python + < 3.4. + + +3.0.0 - 2015-06-13 ================== **Enhancements** @@ -21,6 +45,8 @@ Bug tracker at https://github.com/giampaolo/psutil/issues - #599: [Windows] process name() can now be determined for all processes even when running as a limited user. - #602: pre-commit GIT hook. +- #629: enhanced support for py.test and nose test discovery and tests run. +- #616: [Windows] Add inet_ntop function for Windows XP. **Bug fixes** @@ -36,6 +62,12 @@ Bug tracker at https://github.com/giampaolo/psutil/issues number is provided. - #593: [FreeBSD] Process().memory_maps() segfaults. - #606: Process.parent() may swallow NoSuchProcess exceptions. +- #611: [SunOS] net_io_counters has send and received swapped +- #614: [Linux]: cpu_count(logical=False) return the number of physical CPUs + instead of physical cores. +- #618: [SunOS] swap tests fail on Solaris when run as normal user +- #628: [Linux] Process.name() truncates process name in case it contains + spaces or parentheses. 2.2.1 - 2015-02-02 |